
/* global style start */
:root {
    /* font */
    --primary_font: 'Syne', sans-serif;
    --secondary_font: 'Sora', sans-serif;
    /* color */
    --primary_color: #0d6efd;
    --secondary_color: #121820;
    --default_color: #FFFFFF;
    --primary_text_color: #F0F0F0;
    --secondary_text_color: #121820;
    /* text shade */
    --primary_text_shade: #999999;
    --secondary_text_shade: rgba(240, 240, 240, 0.40);
    /* shade bg */
    --primary_bg: rgba(255, 109, 186, 0.04);
    /* border */
    --primary_radius: 8px;
    --secondary_radius: 4px;
}

html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
}
section {
    padding: 100px 0px;
}
/* selection */
::selection {
    color: var(--default_color);
    background: var(--primary_color);
}
/* selection */
/* typography */
h1,h2,h3,h4,h5,h6 {
    color: var(--primary_text_color);
    font-family: var(--primary_font);
    font-weight: 600;
    text-transform: capitalize;
}
h2 {
    font-size: 42px;
    margin-bottom: 54px;
}
h2 span {
    color: var(--primary_color);
}
.d2c_title::after {
    content: '';
    width: 100%;
    height: 30px;
    background: url(../images/about_line.png);
    background-repeat: no-repeat;
    position: absolute;
    top: 100px;
    left: -21px;
}
h3 {
    font-size: 22px;
    margin-bottom: 10px;
}
h3 span {
    color: var(--primary_color);
}
.d2c_sub_title::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 3px solid var(--primary_color);
    background: transparent;
    border-radius: 50px;
    position: absolute;
    top: -14px;
    left: -6px;
}
h4 {
    color: var(--primary_color);
    font-size: 18px;
    font-weight: 700;
}
p {
    color: var(--primary_text_color);
    font-family: var(--secondary_font);
    font-size: 15px;
    font-weight: 400;
}
a {
    text-decoration: none;
    color: var(--primary_color);
}

  


img {
    object-fit: cover;
}
/* button */
.btn {
    color: #FFFFFF;
    font-family: var(--secondary_font);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    background: var(--primary_color);
    border-radius: var(--primary_radius);
    border: 1px solid var(--primary_color);
    padding: 11px 35px 10px;
    transition: 0.4s all;
}
.btn:hover {
    color: #FFFFFF;
    background: var(--secondary_color);
    border: 1px solid var(--primary_color);
    transition: 0.4s all;
}
.btn.active {
    color: var(--primary_color);
    background: var(--secondary_color);
    border: 1px solid var(--primary_color);
    transition: 0.4s all;
}
/* about and feature section img style start */
.d2c_img_container .d2c_img_wrapper:first-child {
    width: 390px;
    position: absolute;
    top: -92px;
    left: 30px;
    z-index: 1;
}
.d2c_img_container .d2c_img_wrapper:first-child img {
    border: 2px solid var(--primary_color);
}
.d2c_img_container .d2c_img_wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
}
.d2c_img_container .d2c_img_wrapper:first-child::after {
    background: linear-gradient(0deg, rgba(18, 24, 32, 0.25) 0%, rgba(18, 24, 32, 0.25) 100%);
    border-radius: 8px;
}
.d2c_img_container .d2c_img_wrapper:nth-child(2) {
    width: 370px;
    position: absolute;
    bottom: 30px;
    right: 28px;
    z-index: 0;
}
.d2c_img_container .d2c_img_wrapper:nth-child(2)::after {
    border-radius: 8px;
    background: linear-gradient(0deg, rgba(18, 24, 32, 0.60) 0%, rgba(18, 24, 32, 0.60) 100%);
}
.d2c_img_container img:last-child {
    width: 100%;
}
/* about and feature section img style end */

/* global style end */

/* preloader start */
.preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary_color);
    z-index: 9999;
    transition: opacity 1s ease;
    opacity: 1;
}

.preloader.hide {
    opacity: 0;
    pointer-events: none;
}

/* centralizar conteúdo do preloader */
.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* logo do preloader */
.preloader img {
    max-width: 120px;
    max-height: 50px;
    animation: pulse 1.5s infinite;
}

/* animação de “pulsar” */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* bolinhas animadas */
.loader-dots {
    display: flex;
    margin-top: 20px;
}

.loader-dots span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #fff;
    border-radius: 50%;
    animation: bounce 1s infinite;
}

.loader-dots span:nth-child(1) { animation-delay: 0s; }
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
}
/* preloader end */

/* Navbar Start */
.navbar-brand {
    max-width: 180px;
}
.d2c_navbar {
    padding: 22px 0px;
    background: var(--secondary_color);
}
.d2c_navbar .navbar-nav .nav-item {
    margin: 5px 12px;
    display: flex;
    align-items: center;
}
.d2c_navbar .navbar-nav .nav-item:last-child {
    margin-right: 45px;
}
.d2c_navbar .navbar-nav .nav-link {
    color: var(--primary_text_color);
    font-family: var(--secondary_font);
    font-weight: 400;
    font-size: 18px;
    text-transform: capitalize;
    padding: 0;
    transition: .4s all ease;
}
.d2c_navbar .navbar-nav .nav-link:hover {
    color: var(--primary_color);
    transition: .4s all ease;
}
.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
    color: var(--primary_color) !important;
}
.d2c_navbar .d2c_nav_btn.active{
    background: var(--secondary_color);
    color: var(--primary_color);
    border: 1px solid var(--primary_color);
    transition: 0.4s all;
}
/* Nav Item Show from Side */
body .d2c_mobile_view {
    position: fixed;
    height: 100vh;
    inset: 0;
    opacity: 1;
}
.navbar.d2c_mobile_view_body .navbar-nav {
    width: 100%;
}
.navbar.d2c_mobile_view_body .nav-item {
    margin-right: 0;
}
.d2c_mobile_view .show_width {
    max-width: 14.625rem;
    width: 100%;
    height: 100vh;
    position: absolute;
    right: -380px;
    top: 0;
    transition: 0.5s;
    padding: 20px 15px;
    background-color: var(--secondary_color);
    overflow: scroll;
    z-index: 9999;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.d2c_mobile_view.show .show_width {
    right: 0;
    transition: 0.5s;
}
.hide_width {
    max-width: 15.625rem;
    width: 100%;
    height: 100vh;
    position: absolute;
    right: -380px !important;
    top: 0;
    transition: 0.5s !important;
    padding: 20px 15px;
    background-color: var(--primary_bg);
    overflow: scroll;
    z-index: 9999;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler {
    border: 1px solid var(--primary_shade);
    color: var(--primary_text_color);
    padding: 5px 10px;
    width: 44px;
    margin-left: 10px;
    transition: .4s all ease;
}
.navbar-toggler:hover {
    background: transparent;
    transition: .4s all ease;
}
.d2c_cross_btn {
    width: auto;
    border: none;
}
@media only screen and (min-width:991px) {
    body .d2c_mobile_view {
        opacity: 0;
        transition: .5s;
    }
}
/* Navbar End */

/* hero start */
.d2c_hero_bg {
    background: linear-gradient(180deg, rgba(18, 24, 32, 0.40) 0%, rgba(18, 24, 32, 0.79) 80.96%, #121820 100%), url(../images/2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.d2c_hero_wrapper {
    height: 92vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*.d2c_vector_img_wrapper {
    background: url(../images/hero_vector_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.d2c_shade_bg {
    background: url(../images/hero_vector_bg_shade.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}*/
.d2c_shade_bg img {
    width: 552px;
    object-fit: none;
}
.d2c_hero_wrapper h1 {
    font-size: 60px;
    margin-bottom: 20px;
}
.d2c_hero_wrapper h1 span {
    font-weight: 700;
    color: var(--primary_color);
}
.d2c_hero_wrapper p {
    margin-bottom: 32px;
}


.vsl-container {
  position: relative;
  width: 100%;
  max-width: 552px; /* mesmo tamanho da imagem anterior */
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

.vsl-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  cursor: pointer;
  animation: blink 1.2s infinite;
  transition: opacity 0.3s ease;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.play-button.hidden {
  opacity: 0;
  pointer-events: none;
}



/*video*/

.vsl-container {
  position: relative;
  width: 100%;
  max-width: 552px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  background: #000;
}

.vsl-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Botão de play simples */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  animation: blink 1.2s infinite;
  transition: opacity 0.3s ease;
  z-index: 2;
  display: flex; /* <— isso garante que ele reapareça */
  align-items: center;
  justify-content: center;
}


@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.play-button.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
}




/*video fim */



/* hero end */

/* about section start */
.d2c_about_wrapper {
    padding: 190px 0px 100px;
    background: var(--secondary_color);
}
.d2c_last_paragraph {
    margin-bottom: 30px;
}
/* about section end */

/* partner section start */
.d22c_partner_wrapper {
    background: var(--secondary_color);
    padding: 100px 0px;
    overflow-x: hidden;
}
.d22c_partner_wrapper .slick-slide {
    padding: 0px 12px !important;
}
.d22c_partner_wrapper .d22c_img_wrapper {
    width: 100%;
    height: 96px;
    border-radius: 4px;
    border: 1px solid rgba(255, 109, 186, 0.10);
    background: rgba(255, 109, 186, 0.02);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s all;
}
.d22c_partner_wrapper .d22c_img_wrapper:hover {
    border: 1px solid var(--primary_color);
    background: rgba(245, 124, 0, 0.02);
    transition: 0.4s all;
}
.d22c_partner_wrapper .d22c_img_wrapper img {
    max-width: 134px;
    max-height: 96px;
    opacity: 0.3;
    transition: 0.4s all;
}
.d22c_partner_wrapper .d22c_img_wrapper:hover img {
    opacity: 1;
    transition: 0.4s all;
}
/* partner section end */

.d2c_shade_bg_wrapper {
    background: var(--primary_bg);
    background-image: url(../images/shade_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
}

/* service section start */
.d2c_service_wrapper h3 {
    color: var(--secondary_color);
}
.d2c_service_wrapper h2 {
    color: var(--secondary_color);
}
.d2c_service_wrapper p {
    color: var(--secondary_text_color);
    margin-bottom: 20px;
}
.d2c_service_wrapper li {
    color: var(--secondary_color);
    font-family: var(--primary_font);
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
}
.d2c_service_wrapper ul {
    list-style-type: square;
    padding-left: 20px;
}
.d2c_service_wrapper li::marker {
    color: var(--primary_color) !important;
    font-size: 18px;
}
.d2c_service_wrapper .d2c_card_wrapper {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.10);
    transition: 0.4s all;
}
.d2c_icon_wrapper {
    background: var(--primary_color);
    box-shadow: -7px 20px 16px 0px rgba(103, 76, 174, 0.20);
    width: 70px;
    height: 70px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: 0.4s all;
}
.d2c_icon_wrapper i {
    font-size: 32px;
    color: var(--default_color);
    transition: 0.4s all;
}
.d2c_service_wrapper .d2c_card_wrapper h3 {
    color: var(--primary_color);
    transition: 0.4s all;
}
.d2c_service_wrapper .d2c_card_wrapper p {
    color: var(--primary_text_shade);
    transition: 0.4s all;
    margin-bottom: 0;
}
.d2c_service_wrapper .d2c_card_wrapper:hover {
    background: var(--primary_color);
    transition: 0.4s all;
}
.d2c_service_wrapper .d2c_card_wrapper:hover .d2c_icon_wrapper {
    background: var(--primary_text_color);
    transition: 0.4s all;
}
.d2c_service_wrapper .d2c_card_wrapper:hover .d2c_icon_wrapper i {
    color: var(--primary_color);
    transition: 0.4s all;
}
.d2c_service_wrapper .d2c_card_wrapper:hover h3 {
    color: var(--secondary_color);
    transition: 0.4s all;
}
.d2c_service_wrapper .d2c_card_wrapper:hover p {
    color: var(--primary_text_color);
    transition: 0.4s all;
}
.d2c_service_card:after {
    content: url(../images/service_circle_azul.png);
    position: absolute;
    top: 173px;
    left: -80px;
    z-index: -1;
}
/* service section end */

/* features section start */
.d2c_feature_wrapper {
    padding: 190px 0px 100px;
}
.d2c_feature_wrapper .d2c_img_container .d2c_img_wrapper:first-child {
    width: 330px;
    top: -73px;
}
.d2c_feature_wrapper h3 {
    color: var(--secondary_color);
}
.d2c_feature_wrapper h2 {
    color: var(--secondary_color);
}
.d2c_feature_wrapper p {
    color: var(--secondary_text_color);
    margin-bottom: 20px;
}
/* features section end */

.d2c_team_bg_wrapper {
    background: var(--secondary_color);
    background-image: url(../images/shade_bg.png);
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
}

/* team section start */
.d2c_team_wrapper {
    overflow-x: hidden;
}
.d2c_team_wrapper h2 {
    margin-bottom: 0px;
}
.d2c_team_wrapper .d2c_title::after {
    top: 50px;
    left: 50%;
    transform: translateX(-75px);
}
.d2c_team_wrapper .d2c_sub_title::after {
    left: 50%;
    transform: translateX(-62px);
}
.d2c_team_card .d2c_img_wrapper {
    width: 390px;
    height: 390px;
    z-index: 1;
}
.d2c_team_card .d2c_img_wrapper::before {
    content: '';
    width: 390px;
    height: 390px;
    border: 1px solid rgba(255, 109, 186, 0.30);
    border-radius: 8px;
    position: absolute;
    top: 27px;
    left: -27px;
    z-index: -1;
    transition: 0.4s all;
}
.d2c_team_card .d2c_card_body {
    padding: 50px 0px 20px;
}
.d2c_team_wrapper .slick-slide {
    margin: 0px 37px;
}
.slick-dots li button:before {
    display: none !important;
    font-size: 10px;
    color: var(--primary_color);
    transition: 0.4s all;
}
.slick-dots li.slick-active button:before {
    display: none !important;
    color: var(--primary_color);
    transition: 0.4s all;
}
.d2c_img_wrapper {
    position: relative;
    overflow: visible;
    border-radius: 8px;
}

/* Imagem */
.d2c_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
    /*background-color: #000;  opcional: para preencher o espaço sobrando */
}




/* Overlay */
.d2c_hover_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(10px, 1vw, 15px);
    padding: clamp(20px, 3vw, 30px);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-align: center;
    border-radius: 8px;
    z-index: 3;
}

/* Hover desktop */
.d2c_img_wrapper:hover .d2c_hover_content,
.d2c_img_wrapper.active .d2c_hover_content {
    opacity: 1;
    transform: translateY(0);
}

/* Título fixo abaixo da imagem */
.static-title {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: bold;
    margin-top: 15px;
}

/* Linha dentro do overlay */
.hover-line {
    width: clamp(40px, 10%, 50px);
    border-bottom: 1px solid rgba(183, 183, 183, 0.2);
    margin-bottom: 12px;
}

/* Texto do overlay */
.d2c_hover_content p {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.5em;
    word-break: break-word;
}

/* Botão overlay */
.d2c_btn {
    margin-top: auto;
    padding: clamp(8px, 1.5vw, 10px) clamp(20px, 4vw, 25px);
    background: var(--primary_color);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.d2c_btn:hover {
    background: #fff;
    color: var(--primary_color);
}

/* Borda original ::before */
.d2c_team_card .d2c_img_wrapper::before {
    content: '';
    width: 390px;
    height: 390px;
    border: 1px solid rgba(255, 109, 186, 0.30);
    border-radius: 8px;
    position: absolute;
    top: 27px;
    left: -27px;
    z-index: 0;
    transition: 0.4s all;
}






/* -------------------- Responsivo -------------------- */
@media (max-width: 1024px) {
    .d2c_team_slider .col {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .d2c_team_slider {
        flex-direction: column;
        gap: 20px;
    }
    .d2c_team_slider .col {
        flex: 1 1 100%;
        max-width: 100%;
    }

    /* Overlay responsivo */
    .d2c_hover_content {
        padding: clamp(15px, 5vw, 20px);
        gap: clamp(8px, 2vw, 12px);
    }

    .hover-title {
        font-size: clamp(16px, 4vw, 18px);
    }

    .hover-line {
        width: clamp(30px, 15%, 40px);
        margin-bottom: 10px;
    }

    .d2c_hover_content p {
        font-size: clamp(12px, 3vw, 14px);
    }

    .d2c_btn {
        padding: clamp(6px, 3vw, 8px) clamp(15px, 5vw, 20px);
        font-size: clamp(12px, 3vw, 14px);
    }

    .static-title {
        font-size: clamp(16px, 4vw, 18px);
    }

    /* Borda responsiva */
    .d2c_team_card .d2c_img_wrapper::before {
        width: 90%;
        height: auto;
        aspect-ratio: 1/1;
        top: 5%;
        left: 5%;
    }
}

/* team section end */


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters-container {
  margin-bottom: 40px;
}

.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.portfolio .portfolio-filters li {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 4px;
  background-color:var(--default_color);
  color: var(--default-color);
  transition: all 0.3s ease-in-out;
}

/*.portfolio .portfolio-filters li:hover {
  background-color:var( --primary_color), transparent 85%;
  color: var( --primary_color);
  transform: translateY(-2px);
}*/

.portfolio .portfolio-filters li.filter-active {
  background-color: var( --primary_color);
  color: var( --default_color);
}

.portfolio .portfolio-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-card:hover .portfolio-overlay .portfolio-actions {
  transform: translateY(0);
}

.portfolio .portfolio-card .portfolio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.portfolio .portfolio-card .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
}

.portfolio .portfolio-card .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions {
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
  display: flex;
  gap: 15px;
}

/* Botões da área de ações do portfólio */
.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a {
  width: 45px;
  height: 45px;
  background-color: #FFFFFF; /* Fundo branco */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary_color); /* Ícone na cor primária */
  font-size: 20px;
  transition: all 0.3s ease;
  /*border: 2px solid var(--primary_color);  opcional: borda para destacar */
}

/* Efeito hover */
.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a:hover {
  background-color: var(--primary_color); /* Fundo na cor primária ao passar o mouse */
  color: #FFFFFF; /* Ícone branco no hover */
  transform: scale(1.1);
}

.portfolio .portfolio-card .portfolio-content {
  padding: 25px;
}

.portfolio .portfolio-card .portfolio-content .category {
  font-size: 14px;
  color: var(--primary_color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.portfolio .portfolio-card .portfolio-content h3 {
  font-size: 20px;
  margin: 0 0 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

/*.portfolio .portfolio-card .portfolio-content h3:hover {
  color: var(--accent-color);
}*/

.portfolio .portfolio-card .portfolio-content p {
  font-size: 15px;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    padding: 6px 15px;
  }

  .portfolio .portfolio-card .portfolio-content {
    padding: 20px;
  }

  .portfolio .portfolio-card .portfolio-content h3 {
    font-size: 18px;
  }

  .portfolio .portfolio-card .portfolio-content p {
    font-size: 14px;
  }
}




/* PAGINAÇÃO PORTFÓLIO */
.portfolio-pagination ul.pagination {
  margin-top: 30px;
}

.portfolio-pagination .page-item.active .page-link {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

.portfolio-pagination .page-link {
  color: #444;
  border-radius: 6px;
  margin: 0 4px;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
}

.portfolio-pagination .page-link:hover {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

/* Personaliza o botão de fechar do Glightbox */
.glightbox-clean .gclose,
.glightbox-modern .gclose {
  right: 25px;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 24px;
  transition: all 0.3s ease;
}

.glightbox-clean .gclose:hover,
.glightbox-modern .gclose:hover {
  background-color: var(--primary_color);
  color: #fff;
  transform: scale(1.1);
}




/* ======== Estilo personalizado do título do Glightbox ======== */

/* container do título/descrição */
.glightbox-clean .gdesc-inner,
.glightbox-modern .gdesc-inner {
 /* background: rgba(0, 0, 0, 0.6);*/
  backdrop-filter: blur(6px);
  padding: 18px 25px;
  border-radius: 10px;
  max-width: 90%;
  margin: 20px auto;
  text-align: center;
  animation: fadeInCaption 0.5s ease-in-out;
}

/* título */
.glightbox-clean .gdesc-inner h4,
.glightbox-modern .gdesc-inner h4 {
  color: #000000; /* usa a cor rosa do tema */
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 5px;
  text-transform: none;
}

/* descrição (caso queira adicionar data-description também) */
.glightbox-clean .gdesc-inner p,
.glightbox-modern .gdesc-inner p {
  color: #f5f5f5;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* botão X (fechar) */
.glightbox-clean .gclose,
.glightbox-modern .gclose {
  right: 25px;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 24px;
  transition: all 0.3s ease;
}
.glightbox-clean .gclose:hover,
.glightbox-modern .gclose:hover {
  background-color: var(--primary_color);
  color: #fff;
  transform: scale(1.1);
}

/* animação suave ao aparecer */
@keyframes fadeInCaption {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}



.portfolio-search input {
  border: 2px solid var(--primary_color);
  transition: all 0.3s ease;
}

.portfolio-search input:focus {
  box-shadow: 0 0 10px rgba(255, 109, 186, 0.4);
  outline: none;
}


/* ======== Área de compartilhamento ======== */
.share-wrapper {
  margin-top: 20px;
}

.share-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary_color);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Container dos botões */
.share-buttons {
  display: flex;
  gap: 14px;
}

/* Círculo com animação */
.share-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;                /* fundo branco */
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);

  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Animação no hover */
.share-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Ícones com cor original */
.share-btn.whatsapp i {
  color: #25D366;
  font-size: 22px;
}

.share-btn.facebook i {
  color: #1877F2;
  font-size: 22px;
}

.share-btn.instagram i {
  color: #E1306C;
  font-size: 22px;
}


/*Promoção*/

.promo-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: #fff;
    padding: 6px 14px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 6px;
    z-index: 20;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.3);
}



/*Portfolio*/



/* blog section start */

.d2c_blog_bg_wrapper {
    background: rgba(255, 109, 186, 0.04);
}


.d2c_blog_wrapper {
    padding: 100px 0px;
    overflow-x: hidden;
}
.d2c_blog_wrapper h3 {
    color: var(--secondary_color);
}
.d2c_blog_wrapper .d2c_sub_title::after {
    left: 50%;
    transform: translateX(-56px);
}
.d2c_blog_wrapper .d2c_title::after {
    top: 40px;
    left: 50%;
    transform: translateX(-72px);
}
.d2c_blog_wrapper h2 {
    color: var(--secondary_color);
}
.d2c_blog_wrapper p {
    color: var(--secondary_text_color);
    margin-bottom: 56px;
}
.d2c_blog_wrapper .d2c_card_body {
    background: var(--secondary_color);
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.20);
    border-radius: 5px;
    margin: 0px 30px;
    padding: 30px;
    position: relative;
    margin-top: -50px;
    
}
.d2c_blog_wrapper .d2c_card_body p {
    color: var(--secondary_text_shade);
}
.d2c_blog_wrapper .d2c_card_body a {
    color: var(--primary_text_color);
    transition: 0.4s all;
}
.d2c_blog_wrapper .d2c_card_body a:hover {
    color: var(--primary_color);
    transition: 0.4s all;
}
.d2c_blog_wrapper .d2c_card_body a i {
    padding-left: 20px;
    transition: 0.4s all;
}
.d2c_blog_wrapper .d2c_card_body a:hover i {
    padding-left: 5px;
    transition: 0.4s all;
}
.d2c_date {
    color: var(--primary_text_color);
    font-family: var(--secondary_font);
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 20px;
}
.d2c_date a {
    color: var(--primary_text_color) !important;
    float: right;
    font-size: 16px;
    transition: 0.4s all;
}
.d2c_date a:hover {
    color: var(--primary_color) !important;
    transition: 0.4s all;
}



/*modal blog*/

/* ===== Modal Customizada ===== */
.d2c_modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.4s ease;
}

.d2c_modal_content {
  background-color: var(--secondary_color);
  margin: 8% auto;
  padding: 30px;
  border-radius: 10px;
  max-width: 700px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.3);
  color: var(--primary_text_color);
  position: relative;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.d2c_modal_img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}

.d2c_modal_title {
  color: var(--primary_color);
  font-weight: 600;
  margin-top: 20px;
}

.d2c_modal_text {
  color: var(--secondary_text_shade);
  margin-top: 10px;
}

/* ===== Estilos internos da descrição da modal ===== */
.d2c_modal_text p {
  margin: 10px 0;
  line-height: 1.6;
  color: #FFFFFF;
  text-align: left;
}

.d2c_modal_text ul {
  margin: 10px 0 10px 25px;
  text-align: left;
}

.d2c_modal_text li {
  margin-bottom: 6px;
  list-style-type: disc;
  color: #FFFFFF;
}

.d2c_modal_text strong {
  color: var(--primary_color);
}

.d2c_modal_text h4,
.d2c_modal_text h5 {
  color: var(--primary_color);
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.d2c_modal_text {
  text-align: left;
  font-size: 16px;
}




.d2c_modal_close {
  color: var(--primary_color);
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.d2c_modal_close:hover {
  color: var(--primary_text_color);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}


/*modal blog end */


/* blog section end */

/* testimonial section start */
.d2c_testimonial_wrapper {
    overflow-x: hidden;
}
.d2c_testimonial_wrapper h2 {
    color: var(--secondary_color);
}
.d2c_testimonial_wrapper h3 {
    color: var(--secondary_color);
}
.d2c_testimonial_wrapper .d2c_sub_title::after {
    left: 50%;
    transform: translateX(-92px);
}
.d2c_testimonial_wrapper .d2c_title::after {
    top: 40px;
    left: 50%;
    transform: translateX(-72px);
}
.d2c_testimonial_wrapper .d2c_card_wrapper h5 {
    color: var(--secondary_color);
    font-family: var(--primary_font);
    font-size: 38px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 90px;
    position: relative;
    padding: 0px 120px;
}
.d2c_testimonial_wrapper .d2c_card_wrapper h5::before {
    content: url(../images/quotation_left.png);
    position: absolute;
    top: -60px;
    left: 0;
}
.d2c_testimonial_wrapper .d2c_card_wrapper h5::after {
    content: url(../images/quotation_right.png);
    position: absolute;
    bottom: -80px;
    right: 0;
}
.d2c_testimonial_wrapper .d2c_card_wrapper img {
    width: 88px;
    height: 88px;
    border-radius: 100%;
    margin: 0 auto;
}
.d2c_testimonial_wrapper .d2c_card_wrapper p {
    color: var(--secondary_color);
}
.d2c_testimonial_wrapper .slick-slide {
    padding-top: 70px;
}
/* testimonial section end */

/* newsletter section start */
.d2c_newsletter_wrapper .d2c_sub_title::after {
    left: 223px;
}
.d2c_newsletter_wrapper {
    background: linear-gradient(0deg, rgba(18, 24, 32, 0.90) 0%, rgba(18, 24, 32, 0.90) 100%), url(../images/newsletter_bg.png);
}
.d2c_newsletter_wrapper .d2c_card_wrapper {
    padding: 100px 0px;
    background: var(--secondary_color);
}
.d2c_newsletter_wrapper h2 {
    color: var(--primary_text_color);
    margin-bottom: 20px;
}
/* newsletter section end */

/* contact section start */
.d2c_contact_wrapper {
    background: var(--secondary_color);
}
.form-label {
    color: var(--primary_text_color);
    font-family: var(--primary_font);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.form-label span {
    color: var(--primary_color);
}
.form-control {
    background: rgba(255, 109, 186, 0.02);
    color: var(--primary_text_color) !important;
    font-family: var(--secondary_font);
    border-radius: 4px;
    border: 1px solid rgba(13, 110, 253);
    font-size: 15px;
    font-weight: 400;
    padding: 10px;
    margin-bottom: 20px;
}
.form-control:focus {
    background: rgba(255, 109, 186, 0.02);
    box-shadow: none;
    border: 1px solid rgba(13, 110, 253);
    color: var(--primary_text_color);
}
textarea {
    margin-bottom: 25px !important;
}
/* contact section end */

/* footer section start */
.d2c_footer_wrapper {
    padding: 100px 0px 30px;
    background: linear-gradient(0deg, rgba(18, 24, 32, 0.80) 0%, rgba(18, 24, 32, 0.80) 100%), url(../images/footer_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.d2c_footer_logo {
    max-width: 300px;
}
.d2c_footer_wrapper p {
    margin-bottom: 32px;
}
.d2c_footer_wrapper ul {
    list-style-type: none;
}
.d2c_footer_wrapper ul li  {
    margin-right: 20px;
}

.d2c_footer_wrapper .d2c_social_link li a {
    width: 36px;
    height: 36px;
    font-size: 16px;
    border-radius: 4px;
    color: rgba(255, 109, 186, 0.40);
    border: 1px solid rgba(255, 109, 186, 0.40);
    background: rgba(255, 109, 186, 0.02);
    display: flex;
    justify-content: center;
    align-items: center;
}
.d2c_footer_wrapper .d2c_social_link li a:hover {
    color: var(--primary_color);
    border: 1px solid var(--primary_color);
    transition: 0.4s all;
}
.d2c_footer_wrapper li a {
    color: var(--primary_text_color);
    font-family: var(--secondary_color);
    font-size: 15px;
    font-weight: 400;
    transition: 0.4s all;
}
.d2c_footer_wrapper li a:hover {
    color: var(--primary_color);
    transition: 0.4s all;
}
.d2c_company_info a i {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    color: rgba(255, 109, 186, 0.40);
    border: 1px solid rgba(255, 109, 186, 0.40);
    background: rgba(255, 109, 186, 0.02);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    transition: 0.4s all;
}
.d2c_company_info li a:hover i {
    color: var(--primary_color);
    border: 1px solid var(--primary_color);
    transition: 0.4s all;
}
.d2c_footer_wrapper h3 {
    margin-bottom: 40px;
}

/* copy */
.d2c_copy_wrapper {
    padding: 60px 0px 0px;
    position: relative;
}
.d2c_copy_wrapper h4 {
    color: var(--primary_text_color);
    font-size: 18px;
    font-weight: 500;
}
.d2c_copy_wrapper h4 a {
    font-weight: 700;
    color: var(--primary_text_color);
    transition: 0.4s all;
}
.d2c_copy_wrapper h4 a:hover {
    color: var(--primary_color);
    transition: 0.4s all;
}
.d2c_copy_wrapper::before {
    content: '';
    width: 100%;
    border-top: 1px solid rgba(240, 240, 240, 0.10);
    position: absolute;
    top: 30px;
    left: 0;
}
/* footer section end */

/* Scroll Button Start */
#scrollBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}
#scrollBtn.show {
    display: block;
}
#scrollBtn a i {
    background: var(--primary_color);
    font-size: 20px;
    color: var(--secondary_color);
    border-radius: 4px;
    width: 35px;
    height: 35px;
    position: fixed;
    z-index: 9999;
    bottom: 3%;
    right: 5%;
    transition: all ease 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary_color);
}
#scrollBtn a i:hover {
    color: var(--primary_color);
    background: var(--secondary_color);
    border: 2px solid var(--primary_color);
    transition: all ease 0.4s;
}
/* Scroll Button End */



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary_color);
}

.faq .faq-description {
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  /*color: #FF6DBA;*/
  color: var(--primary_color);
}

.faq .faq-container .faq-item {
  background-color: var(--secondary_color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--primary_color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--primary_color);
}



.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  color: #FFFFFF;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--primary_color);
}

.faq .faq-container .faq-active h3 {
  color: var(--primary_color);
}


.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--primary_color);
}


/* Conteúdo fechado */
.faq .faq-container .faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .3s ease;
}

/* Conteúdo aberto */
.faq .faq-container .faq-active .faq-content {
  max-height: 500px; /* pode ajustar se tiver conteúdo maior */
  opacity: 1;
  padding-top: 10px;
}


.grecaptcha-badge { visibility: hidden !important; }

#msg-status {
    font-size: 1rem;
    margin-top: 10px;
    transition: .3s ease-in-out;
}

