/* ===== RESET GERAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000; /* fundo preto global */
    color: #fff;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    
  }
  section {
    position: relative;
    padding: 0px 20px;
    z-index: 1;
  }

  
  /* ===== HEADER ===== */
 /* ===== MENU LATERAL (SIDEBAR) ===== */
#header {
  position: fixed;
  top: 0;
  left: -300px; /* escondido por padrão */
  bottom: 0;
  width: 260px;
  background: #0b0b0b;
  overflow-y: auto;
  transition: all 0.3s ease-in-out;
  z-index: 9999;
  padding: 30px 20px;
  box-shadow: 4px 0 10px rgba(0, 0, 0, 0.6);
}

.mobile-nav-active #header {
  left: 0;
}

/* Botão de abrir menu (sem fundo, só ícone rosa) */
.mobile-nav-toggle {
  position: fixed;
  top: 30px;
  left: 20px;
  z-index: 10000;
  background: none;
  border: none;
  color: #f72c7e;
  font-size: 32px;
  cursor: pointer;
  transition: 0.3s;
}

.mobile-nav-toggle:hover {
  transform: scale(1.1);
}

/* Topo do menu com redes + botão fechar */
.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

/* Redes sociais */
.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  font-size: 20px;
  color: #fff;
  text-decoration: none; /* remove sublinhado */
  transition: 0.3s;
}

.social-links a:hover {
  color: #f72c7e;
}

/* Botão de fechar menu */
.close-nav-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: 0.3s;
}

.close-nav-btn:hover {
  color: #f72c7e;
}

/* Navegação */
.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  margin-bottom: 20px;
}

.nav-menu a {
  display: flex;
  align-items: center;
  color: #ccc;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a i {
  font-size: 20px;
  margin-right: 12px;
  color: #f72c7e;
  transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu .active {
  color: #fff;
}

.nav-menu a:hover i,
.nav-menu .active i {
  color: #fff;
}

/* Topo do menu lateral */
.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  font-size: 20px;
  background: #212431;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.social-links a:hover {
  background: #f72c7e;
  color: #fff;
}

/* Botão de fechar o menu */
.close-nav-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: 0.3s;
}

.close-nav-btn:hover {
  color: #f72c7e;
}


  .top-header {
    background-color: #000;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
    z-index: 9;
  }
  
  .logo-header {
    height: 60px;
    z-index: 1;
  }
  
  .menu-container {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  
  .menu-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }
  
  .menu-icon span {
    width: 25px;
    height: 3px;
    background-color: #f72c7e;
    border-radius: 2px;
    transition: 0.3s;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #111;
    padding: 10px 0;
    border-radius: 0 0 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
  
  .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
  }
  
  .dropdown-menu a:hover {
    background-color: #f72c7e;
    color: #fff;
  }
  
 /* ===== HERO SECTION ===== */
 .hero-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
  position: relative;
  background:
/* radial-gradient(circle at 99% 66%, rgb(247 44 125 / 48%), transparent 19%); */
 radial-gradient(circle at 90% 0%, rgb(247 44 126 / 54%), transparent 80%);
 
  overflow: hidden;
  min-height: 100vh;
  background-size: cover; /* ou use contain se quiser que toda imagem apareça */
  background-attachment: scroll;
  background-repeat: no-repeat;
}
.pulse-btn {
  background-color: #f72c7e;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 rgba(247, 44, 125, 0.856);
  transition: transform 1.5s;
}

.pulse-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 8px rgba(247, 44, 126, 0.3);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(247, 44, 126, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(247, 44, 126, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(247, 44, 126, 0);
  }
}
.pulse-btn-rgb {
  background: linear-gradient(270deg, #f72c7e, #9c27b0, #f72c7e);
  background-size: 600% 600%;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  animation: rgbPulse 5s ease infinite, pulseGlow 2s infinite;
  transition: transform 1.3s;
  position: relative;
  z-index: 1;
}
.pulse-btn-rgb:hover {
  transform: scale(1.05);
}

/* Animação do fundo RGB */
@keyframes rgbPulse {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Pulso de sombra suave */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(247, 44, 126, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(247, 44, 126, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(247, 44, 126, 0);
  }
}
/* Sombreamento de baixo para cima */
.hero-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 85%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 20%, rgb(0 0 0) 32%, rgb(0 0 0 / 0%) 66%, rgb(0 0 0 / 4%) 83%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-box {
    aspect-ratio: 3 / 4; /* ou 4/5, dependendo do visual desejado */
  width: 50%;
  max-width: 600px;
  height: 800px; /* voltou */
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  margin-top: -40px;
  z-index: 1;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.blur-rosa {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(247,44,126,0.4), transparent 70%);
  z-index: 0;
}
.hero-text {
  z-index: 2;
}
.hero-box {
  z-index: 1;
}
/* TEXTO */
.hero-text {
  width: 65%;
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding-right: 20px;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.pink {
  color: #f72c7e;
}

.purple {
  color: #9b4eac;
}

.btn-cta {
  background: linear-gradient(to right, #f72c7e, #9b4eac);
  color: white;
  padding: 14px 35px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2rem;
  transition: 0.3s;
}

.btn-cta:hover {
  opacity: 0.9;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .hero-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    height: 85vh;
    margin-top: -20%;
    z-index: 0;
    
  }


  /* Sombra escura em 100% */

  .hero-box {
    width: 95%;
    height: auto;
    margin-top: -30%;
  }

  .hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }


  .hero-text {
    position: absolute;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 4px 17px;
    width: 100%;
    max-width: 591px;
    margin-top: 90%;
  }

  .hero-text h1 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .hero-text p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .btn-cta {
    font-size: 18px;
    padding: 10px 24px;
    display: inline-block;
    background: linear-gradient(to right, #f72c7e, #9b4eac);
    border-radius: 30px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
  }

  .btn-cta:hover {
    opacity: 0.9;
  }
}




  /* ===== porque-brand ===== */

  .porque-brand {
    color: white;
    padding: 0px 20px;
    background:radial-gradient(circle at 99% 66%, rgb(247 44 125 / 48%), transparent 19%), radial-gradient(circle at 3% 42%, rgb(247 44 125 / 47%), transparent 23%);
  margin-top: -90px;
  }
   .porque-brand strong{
    font-size: 2rem;

   }
  .container-porque {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    
  }
  
  .img-porque {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
  }
  
  .img-porque img {
    width: 100%;
    max-width: 450px;
    height: auto;
  }
  
  /* .texto-porque {
    flex: 1 1 50%;
  } */
  
  .texto-porque h2 {
    font-size: 3.2rem; /* antes: 2rem */
    margin-bottom: 40px;
    font-weight: 200;
    line-height: 1.3;
  }
  
  .item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
  }
  .item p {
    font-size: 1.4rem; /* aumentei */
    line-height: 1.6;
  }
  .item .dot {
    width: 12px;
    height: 12px;
    background-color: #f72c7e;
    border-radius: 50%;
    margin-top: 7px;
  }
  
  .timeline {
    position: relative;
    margin-left: 20px;
    padding-left: 0px;
  }
  
  .timeline::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 6px;
    width: 3px;
    height: 100%;
    background-color: #f72c7e;
    z-index: 0;
  }
  
  .item {
    position: relative;
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    z-index: 1;
  }
  
  .item .dot {
    width: 14px;
    height: 14px;
    background-color: #f72c7e;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
    z-index: 2;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
  .porque-brand {
    background: radial-gradient(circle at 99% 66%, rgb(247 44 125 / 48%), transparent 19%), 
                radial-gradient(circle at 9% 10%, rgb(247 44 125 / 47%), transparent 11%);
  }

  .porque-brand h2,
  .porque-brand strong {
    font-size: 1.8rem;
    text-align: center;
  }

  .container-porque {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .timeline::before {
    display: none; /* remove a linha vertical rosa */
  }

  .texto-porque .item {
        background: rgb(255 255 255 / 23%);

    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .texto-porque .item .dot {
    display: none; /* remove o ponto rosa */
  }

  .texto-porque .item strong {
    font-size: 1rem;
    font-weight: 700;
    color: #f72c7e;
    margin-bottom: 10px;
    display: block;
  }

  .texto-porque .item p {
    font-size: 1rem;
    color: #eee;
    line-height: 1.5;
    text-align: center;
  }
}


  .titulo-servicos {
    text-align: center;
    margin-top: 80px; /* você pode ajustar esse valor */
    margin-bottom: 40px;
    font-size: 2.5rem;
  }

  .servicos-section {
    
    padding: 0px 2px;
    text-align: center;
    position: relative;
  }
  @media (max-width: 768px) {
    .container-porque {
      flex-direction: row;         /* mantém lado a lado */
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
  
    .img-porque {
      flex: 0 0 45%;
      justify-content: center;
      display: none;
    }
  
    .img-porque img {
      width: 125%;
      max-width: 220px; /* aumentada */
      height: auto;
      object-fit: contain;
    }

  
    .texto-porque h2 {
      font-size: 1.2rem;
      line-height: 1.4;
      margin-bottom: 20px;
    }
  
    .item {
      gap: 4px;
      margin-bottom: 20px;
  }
  
  .item .dot {
    width: 15px;
    height: 15px;
    margin-top: 4px;
}
  
    .item p {
      font-size: 0.85rem;
      line-height: 1.4;
    }
  
    .timeline::before {
      left: 5px;
    }
  }
  
/* ===== SEÇÃO DE SERVIÇOS - SLIDE DE 1 CARD POR VEZ ===== */
.servicos-section {
    background: radial-gradient(circle at right, rgb(247 44 125 / 53%), transparent 25%);
    color: white;
    padding: 145px 20px;
    text-align: center;
    position: relative;
}

.servicos-section h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
}

.bold {
    font-weight: bold;
}

.pink {
    color: #f72c7e;
}

.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 100%;
    gap: 20px;
}

.card-slide {
    width: 100%;
    max-width: 600px;
    min-height: 550px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.nossos-servicos {
    background: radial-gradient(circle at right, rgb(247 44 125 / 53%), transparent 25%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.nossos-servicos h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
}

.bold {
    font-weight: bold;
}

.pink {
    color: #f72c7e;
}

.nossos-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 100%;
    gap: 20px;
    height: 450px; /* ✅ altura definida para centralização */
}

.nossos-card-slide {
    width: 100%;
    max-width: 400px; /* ✅ reduzido o tamanho */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Estilo base dos cards */
.nossos-servico-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 400px; /* ✅ reduzido */
    min-height: 400px; /* ✅ reduzido */
    background-color: #000;
    border: 2px solid #f72c7e;
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 0 25px #f72c7e30;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* Animação slide + fade */
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 0;
}

/* Quando ativo */
.nossos-servico-card.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
}

.nossos-icon-servico {
    width: 80px; /* ✅ menor que antes */
    margin-bottom: 20px;
}

.nossos-servico-card h3 {
    font-size: 1.8rem; /* ✅ menor */
    margin-bottom: 15px;
}

.nossos-servico-card p {
    font-size: 1rem; /* ✅ menor */
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 90%;
}

.nossos-btn-servico {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #f72c7e;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.nossos-btn-servico:hover {
    background: #f72c7e;
    color: #000;
}

.nossos-nav-button {
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 3;
    padding: 10px;
    position: relative;
}
@media (max-width: 768px) {
    .nossos-slider-container {

        height: auto; /* ✅ permite crescer conforme o conteúdo */
        height: AUTO; /* Altura ajustada para mobile */
        gap: 10px; /* Menor espaçamento entre elementos */
    }

    .nossos-card-slide {
        width: 100%;
        max-width: 90%;
         min-height: 400px; /* ou maior, conforme conteúdo */
        height: auto; /* ✅ permite crescer conforme o conteúdo */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nossos-servico-card {
        max-width: 100%;
        min-height: auto;
        padding: 0px 10px; /* ✅ padding maior para respirabilidade */
        border-radius: 20px;
    }

    .nossos-icon-servico {
        width: 60px; /* Ícone um pouco menor */
        margin-bottom: 15px; /* ✅ espaço entre ícone e título */
    }

    .nossos-servico-card h3 {
        font-size: 1.5rem; /* Ajuste de tamanho do título */
        margin-bottom: 10px;
    }

    .nossos-servico-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .nossos-btn-servico {
        padding: 12px 25px; /* ✅ aumenta área de toque */
        font-size: 1rem;
        border-radius: 30px;
        margin: 2%;
    }

    .nossos-nav-button {
        padding: 15px; /* ✅ aumenta área de toque */
        font-size: 2rem;
    }

    .nossos-nav-button.left {
        left: 10px; /* ✅ opcional: se quiser afastar mais */
    }

    .nossos-nav-button.right {
        right: 10px;
    }
}


/* Estilo base dos cards */
.servico-card {
    max-width: 400px;
  min-height: 400px;
  padding: 30px 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    border: 2px solid #f72c7e;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 0 25px #f72c7e30;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* Animação slide + fade */
    opacity: 0;
    
    transition: all 0.6s ease;
    z-index: 0;
}

/* Quando ativo */
.servico-card.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
}

.icon-servico {
    width: 100px;
    margin-bottom: 25px;
}

.servico-card h3 {
    font-size:1.8rem;
    margin-bottom: 15px;
}

.servico-card p {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.5;
    max-width: 90%;
}

.btn-servico {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #f72c7e;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-servico:hover {
    background: #f72c7e;
    color: #000;
}

.nav-button {
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 3;
    padding: 10px;
    position: relative;
}



/* Responsivo */
@media (max-width: 768px) {
    .servico-card {
        max-width: 100%;
        min-height: auto;
        padding: 10px 0px;
    }

    .servico-card h3 {
        font-size: 1.5rem;
    }

    .servico-card p {
        font-size: 1rem;
    }

    .icon-servico {
        width: 80px;
    }

    .nav-button.left,
    .nav-button.right {
        font-size: 2rem;
        margin: 0;
        margin-top: -50%;
    }
}

.servico-card h3 span,
.servico-card h3 strong {
    font-size: inherit;
    font-weight: normal;
}


/* ===== FAQ MELHORADO ===== */
.faq-item {
    background: linear-gradient(to right, #f72c7e, #9b4eac);
    border-radius: 20px;
    margin: 20px auto;
    max-width: 800px;
    cursor: pointer;
    transition: 0.3s;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
  }
  
  .faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    position: relative;
  }
  
  .faq-number {
    /* background-color: white; */
    color: #ffffff;
    font-weight: bold;
    font-size: 2rem;
    border-radius: 15px;
    width: 50px;
    text-align: center;
    margin-right: 20px;
  }
  
  .faq-title {
    flex: 1;
    text-align: center;
    font-weight: bold;
    font-size: 1.4rem;
    color: white;
  }
  
  .faq-icon {
    font-size: 1.3rem;
    color: white;
    transition: transform 0.3s;
  }
  
  .faq-icon::before {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }
  
  .faq-content {
    background-color: #fff;
    color: #000;
    padding: 20px 30px;
    display: none;
    animation: fadeIn 0.3s ease-in-out;
    text-align: left;
  }
  
  .faq-item.active .faq-content {
    display: block;
  }
  
  .faq-content ul {
    padding-left: 20px;
  }
  
  .faq-content li {
    margin-bottom: 10px;
  }
  .faq-title-section {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: white;
  }
  .faq-icon i {
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-icon i {
    transform: rotate(180deg);
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .como-trabalhamos {
     background:radial-gradient(circle at 99% 66%, rgb(247 44 125 / 48%), transparent 19%), radial-gradient(circle at 3% 42%, rgb(247 44 125 / 47%), transparent 23%);

    padding: 0px 20px;
    color: white;
    position: relative;
  }
  .item p {
    font-size: 1.4rem;
    line-height: 1.7;
  }

/* ===== IMPACTO SECTION (ajustado com base na imagem enviada) ===== */
.impacto-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 20px;
  border-radius: 10px;
  position: relative; /* para o ::after funcionar */
  overflow: hidden;   /* evita que o ::after vaze */
  z-index: 1;
}

  .impacto-texto {
    flex: 1 1 50%;
    max-width: 600px;
    z-index: 2;
  }
  
  .impacto-texto h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
    text-transform: uppercase;
  }
  
  .impacto-texto p {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .impacto-texto strong {
    font-weight: 800;
    color: white;
  }
  
  .impacto-img {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1; /* necessário para o after funcionar corretamente */
    overflow: hidden;
  }
  .impacto-img img {
    width: 100%;
    max-width: 450px;
    height: auto;
    position: relative;
    z-index: 1; /* garante que a imagem fique atrás do sombreamento */
  }
.impacto-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%; /* ✅ reduzido: apenas no início inferior da imagem */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
    pointer-events: none;
}
@media (max-width: 768px) {
  .como-trabalhamos h2 {
    font-size: 1.8rem;
  }
  .como-trabalhamos{
        margin-top: -50%;

  }

  .faq-number {
    width: 10px;
    text-align: left;
  }

  .faq-title {
    text-align: left;
    font-size: 1rem;
  }

  .impacto-container {
    flex-direction: column;
    text-align: left;
    padding: 0px 20px;
  }

  .impacto-container img {
    display: none;
  }

  .impacto-texto {
    max-width: 100%;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .impacto-texto h2 {
    font-size: 1.8rem;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
  }

  .impacto-texto p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 15px;
    border-left: 3px solid #f72c7e;
    background: none;
    border-radius: 0;
    text-align: left;
    font-weight: 400;
  }

  .impacto-texto strong {
    color: #ffffff;
    font-weight: 800;
  }

  /* Remover emojis e estilos extras nos últimos parágrafos */
  .impacto-texto p:last-of-type::before,
  .impacto-texto p.impacto-bloco-destaque::before {
    content: none;
  }

  .impacto-texto p:last-of-type,
  .impacto-texto p.impacto-bloco-destaque {
    background: none;
    border-radius: 0;
    padding-left: 15px;
    border-left: 3px solid #f72c7e;
    text-align: left;
    font-weight: 400;
    margin-top: 0;
  }
}
.section-depoimentos {
  padding: 40px 20px;
  text-align: center;
  color: white;
  background-color: #000;
}

.titulo-depoimento {
  font-size: 2rem;
  margin-bottom: 30px;
}

.depoimentos-slider {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  height: 280px;
}

.depoimento-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.depoimento-item {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 0;
}

.depoimento-item.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}
.depoimento-item img {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
}
.depoimento-btn {
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 10px;
  z-index: 5;
}

.depoimento-btn.left {
  margin-right: -25px;
}

.depoimento-btn.right {
  margin-left: -25px;
}

@media (max-width: 768px) {
  .titulo-depoimento {
    font-size: 1.8rem;
  }

  .depoimento-wrapper {
    margin-top: 0;
  }

  .depoimento-item img {
    max-width: 90%;
  }

  .depoimento-btn {
    font-size: 2rem;
    margin-top: 0;
  }
}

 /* === Seção do Formulário de Contato === */
.formulario-section {
    padding: 80px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: radial-gradient(circle at bottom right, rgba(247, 44, 126, 0.4), transparent 60%); */
  }
  
  .formulario-box {
    background: linear-gradient(to right, #9b4eac, #f72c7e);
    padding: 60px 40px; /* aumentei espaço interno */
    border-radius: 0; /* tira bordas pra ocupar toda tela */
    max-width: 100%;
    width: 100%;
    color: white;
    text-align: left;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
    width: 100%;
  }


  

  .formulario-box h3 {
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 1.4rem;
  }
  
  /* Formulário em linha (label ao lado) */
  .form-linha .form-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .form-linha .form-row label {
    flex: 1;
    font-weight: bold;
    margin-right: 10px;
    min-width: 150px;
    color: white;
    font-size: 1rem;
  }
  
  .form-linha .form-row input[type="text"],
  .form-linha .form-row input[type="email"] {
    flex: 3;
    padding: 10px;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
  }
  
  /* Checkbox Group */
  .checkbox-group {
    font-size: 0.9rem;
    margin: 20px 0;
  }
  
  .checkbox-group label {
    display: block;
    margin-bottom: 10px;
    color: white;
  }
  
  .checkbox-group input[type="checkbox"] {
    margin-right: 8px;
  }
  
  /* Botão */
  .btn-formulario {
    display: block;
    margin: 0 auto;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    background: white;
    color: #000;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .btn-formulario i {
    color: #25d366;
    margin-right: 8px;
  }
  
  .btn-formulario:hover {
    background: #f1f1f1;
  }
  .contato-mapa {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
  }
  
  .contato-mapa .formulario,
  .contato-mapa .mapa {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  
  .contato-mapa .mapa iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: none;
  }
  
  /* Estilo geral do formulário */
  .formulario form {
    padding: 20px;
    background-color: #000; /* fundo igual do site */
    color: #fff;
  }
  
  .formulario input,
  .formulario button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
  }
  
  @media (max-width: 768px) {
    .formulario {
      width: 100%;
      padding: 20px;
    }
    .form-linha .form-row {
    display: block;
  }
  
    .formulario input, .formulario textarea {
      width: 100%;
      margin-bottom: 10px;
    }
  
    .formulario button {
      width: 100%;
      background-color: #f72c7e;
      color: white;
      padding: 15px;
      font-size: 1.1rem;
    }
  }
  
  footer.footer {
    background: linear-gradient(to right, #9b4eac, #f72c7e);
    color: white;
    padding: 50px 20px;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  
  .footer-logo img {
    width: 180px;
    margin-bottom: 15px;
  }
  
  .footer-logo p {
    font-size: 1rem;
    max-width: 300px;
  }
  
  .footer-contato h4,
  .footer-nav h4,
  .footer-social h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  
  .footer-contato p,
  .footer-nav ul li {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
  
  .footer-nav ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-nav ul li a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
  }
  
  .footer-nav ul li a:hover {
    color: #000;
  }
  
  .footer-social a {
    color: white;
    text-decoration: none;
  }
  
  .footer-social a:hover {
    color: #000;
  }
  
  /* RESPONSIVO */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: left;
      text-align: left;
    }
  
    .footer-logo img {
      margin: 0 auto 15px;
    }
  }
  
.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    animation: pulsew 2s infinite; /* ✅ adiciona a animação */
}

.btn-whatsapp:hover {
    transform: scale(1.1);
}

.btn-whatsapp svg {
    width: 35px;
    height: 35px;
}

/* ✅ Keyframes da animação pulse */
@keyframes pulsew {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
