/* Reset e base */

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
  background: #fff;
  color: #333;
}


header, section, footer {
  padding: 40px 20px;
  text-align: center;
}

/* Header com imagem de fundo e sobreposição escura */
header {
  position: relative;
  background: url('assets/banner_principal.jpeg') center/cover no-repeat;
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding-top: 100px;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

header h1,
header .button,
header img {
  position: relative;
  z-index: 2;
}
header h1 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin: 0; /* remove espaços entre h1 */
}

header h1:first-of-type {
  margin-bottom: 5px; /* bem suave entre as frases */
}

.button {
  margin-top: 30px; /* dá respiro entre texto e botão */
}

@media (max-width: 768px) {
  header {
    height: auto; /* deixa a altura se ajustar ao conteúdo */
    padding: 80px 20px 60px; /* topo / lados / baixo */
    background-position: center top;
  }

  header h1 {
    font-size: 24px;
    line-height: 1.4;
    padding: 0 10px;
  }

  .button {
    font-size: 20px;
    padding: 14px 24px;
    width: 90%;
    max-width: 300px;
    min-width: 0;
    white-space: normal !important; /* permite quebra */
    line-height: 1.3;
  }

  .mobile-br {
    display: inline; /* ativa a quebra manual, se usada */
  }
}

.button {
  font-family: 'Quicksand', sans-serif !important;
  font-weight: 400 !important;
  font-size: 30px;
  line-height: 1.4;
  text-align: center;
  padding: 16px 32px;
  min-width: 540px;
  border-radius: 8px;
  background: #00cc33;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-top: 30px;
  cursor: pointer;
  transition: background 0.3s;
}


.button:hover {
  background: #00b82e;
}

.mobile-br {
  display: none;
}

@media (max-width: 768px) {
  .mobile-br {
    display: inline;
  }

  .button {
    font-size: 24px; /* opcional: reduz para caber melhor */
    white-space: normal;
    line-height: 1.4;
  }
}


/* Menu com linha centralizada */
.menu {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.menu::after {
  content: "";
  display: block;
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  border-bottom: 1px solid white;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.menu ul {
  display: flex;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 20px 0 10px;
  z-index: 4;
}

.menu li a {
  color: white;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  transition: opacity 0.3s;
}

.menu li a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  header {
    padding: 80px 20px 40px;
  }

  header h1 {
    font-size: 22px;
    line-height: 1.3;
    padding: 0 10px;
  }

  .button {
    font-size: 18px;
    padding: 14px 24px;
    min-width: auto; /* remove largura fixa */
    width: 90%;       /* botão ocupa quase toda a largura */
    max-width: 320px; /* mas limita no máximo pra não exagerar */
  }
}

/* Divider com logo e linhas 
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.divider .line {
  height: 1px;
  background: #000;
  flex: 1;
  max-width: 200px;
}

.divider img {
  height: 40px;
  object-fit: contain;
}*/

/* Botão verde */
.button {
  background: #38b000;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #b55f9e;
  margin-bottom: 0px;
}

.card {
  background: #f6eafb;
  border: 1px solid #e1cdee;
  border-radius: 16px;
  box-shadow: 0 0 8px rgba(168, 132, 184, 0.3);
  padding: 24px;
  width: 100%;
  max-width: 700px;
  margin: 5px auto;
  font-family: 'Quicksand', sans-serif;
  overflow: hidden;
  box-sizing: border-box;
}
.card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin-bottom: 16px;
}

.card h3 {
  text-align: center;
  font-size: 25px;
  color: #b55f9e;
  font-weight: 700;
  margin-bottom: 12px;
}

.detalhe-servico summary {
  font-weight: 700;
  color: #b55f9e;
  cursor: pointer;
  font-size: 16px;
  padding: 12px 0;
  border-top: 1px solid #e1cdee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detalhe-servico[open] summary::after {
  content: "▲";
  font-size: 20px;
  color: #b55f9e;
}

.detalhe-servico summary::after {
  content: "▼";
  font-size: 14px;
  color: #b55f9e;
}

.lista-servico {
  list-style: disc;
  list-style-position: inside;
  padding-left: 0;
  margin-top: 12px;
  color: #b74b9a;
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
  font-weight: bold;
}

.lista-servico li {
  margin-bottom: 8px;
}

.lista-servico li::marker {
  color: #b55f9e; /* bolinha roxa escura */
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .card {
    padding: 20px 16px; /* mantém espaçamento interno */
    margin: 20px auto;  /* centraliza no mobile */
  }

  .card h3 {
    font-size: 18px;
  }

  .detalhe-servico summary {
    font-size: 15px;
  }

  .lista-servico {
    font-size: 15px;
  }

  .lista-servico li::before {
    font-size: 13px;
  }
}


.busca-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.busca-subtitle {
  font-size: 25px;
  font-weight: 600; /* antes era 400 */
  color: #000;
  margin: 0;
}

.busca-title {
  font-size: 32px;
  font-weight: 700;
  color: #b55f9e;
  margin: 8px 0 24px;
}
/* 
.busca-section .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 40px;
}

.busca-section .divider .line {
  height: 1px;
  background: #aaa;
  flex: 1;
  max-width: 200px;
}

.busca-section .divider img {
  height: 30px;
  object-fit: contain;
}*/

.busca-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.busca-card {
  background-size: cover;
  background-position: center;
  width: 250px;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: flex-end;
  justify-content: center; /* Alinha horizontalmente o conteúdo */
}

.busca-card .card-content {
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 55%, transparent 100%);
  padding: 60px 20px 30px;
  width: 100%;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.busca-card h4 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #000; /* ou #111 para mais contraste */
  min-height: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 8px;
}

.busca-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #222; /* mais forte que #444 */
  line-height: 1.5;
}

.busca-frase {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  color: #333;
  margin-top: 30px;
  flex-wrap: wrap; /* permite quebra de linha */
  gap: 8px; /* controla o espaço entre os elementos */
}

.frase-detalhe {
  color: #b55f9e;
}

.cta-section {
  background-color: #b55f9e;
  padding: 60px 20px;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-texto {
  text-align: left;
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.cta-texto h2 {
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.cta-botao .button {
  background-color: #00d31d;
  font-size: 24px; /* Aumentado */
  font-weight: bold;
  padding: 8px 0; /* Reduzido levemente para equilibrar o visual */
  width: 250px; /* Mantido fixo */
  border-radius: 8px;
  color: white;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
  line-height: 1.2; /* Mantém o botão proporcional mesmo com texto maior */
}

.cta-botao .button:hover {
  background-color: #00b319;
}

.desktop-only {
  display: inline;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline;
  }
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    align-items: center;     /* ⬅ centraliza horizontalmente */
    text-align: center;
    gap: 24px;
  }

  .cta-texto {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;     /* ⬅ garante que o conteúdo dentro fique centralizado */
  }

  .cta-botao {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .cta-botao .button {
    width: 320px;
    max-width: 90%;
    font-size: 20px;
    white-space: nowrap;
    margin: 0 auto;
  }
}


.indicacoes {
  background: #fff;
  padding: 60px 20px;
}

.indicacoes .section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #b55f9e;
  text-align: center;
}
.grid-indicacoes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 0;
}

@media (min-width: 577px) {
  .grid-indicacoes {
    display: grid;
    grid-template-areas:
      "img1 texto2 img3 texto4"
      "texto1 img2 texto3 img4";
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 0;
  }

  .grid-indicacoes .bloco-img:nth-of-type(1) { grid-area: img1; }
  .grid-indicacoes .bloco-texto:nth-of-type(2) { grid-area: texto1; }

  .grid-indicacoes .bloco-img:nth-of-type(3) { grid-area: img2; }
  .grid-indicacoes .bloco-texto:nth-of-type(4) { grid-area: texto2; }

  .grid-indicacoes .bloco-img:nth-of-type(5) { grid-area: img3; }
  .grid-indicacoes .bloco-texto:nth-of-type(6) { grid-area: texto3; }

  .grid-indicacoes .bloco-img:nth-of-type(7) { grid-area: img4; }
  .grid-indicacoes .bloco-texto:nth-of-type(8) { grid-area: texto4; }
}

.grid-indicacoes .bloco-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.grid-indicacoes .bloco-texto {
  padding: 30px 20px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #b55f9e;
  text-align: center;
}

.grid-indicacoes .bloco-texto.destaque h3 {
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 10px;
}

.grid-indicacoes .bloco-texto.destaque p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .grid-indicacoes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-indicacoes {
    grid-template-columns: 1fr;
    
  }
}


/* Estilo geral do carrossel */

.espaco {
  padding: 10px 20px 30px;
  text-align: center;
}
.espaco .subtitle {
  font-size: 25px;
  color: #222;
  margin-bottom: 2px; /* antes: 10px */
}

.espaco .section-title {
  font-size: 32px;
  color: #b55f9e;
  font-weight: 700;
  margin-top: 0;       /* força o título a não ter margem de cima */
  margin-bottom: 24px; /* opcional: deixa o espaçamento abaixo suave */
}

.dots-espaco {
  text-align: center;
  margin-top: 10px;
}

.dot-espaco {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.dot-espaco.active {
  background-color: #b55f9e;
}

.carousel-espaco {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.slide-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  gap: 20px;
}

.slide-item {
  flex: 0 0 calc(33.333% - 13.33px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.slide-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Dots */
.dots-espaco {
  text-align: center;
  margin-top: 15px;
}

.dot-espaco {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.dot-espaco.active {
  background-color: #b55f9e;
}


/* MOBILE - mostra 1 por vez, sem espaço */
@media (max-width: 768px) {
  .slides {
    gap: 0 !important;
  }

  .slide-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Indicadores (bolinhas) */
.carousel-indicators {
  text-align: center;
  margin-top: 15px;
}

.carousel-indicators span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-indicators span.active {
  background-color: #333;
}


@media (max-width: 768px) {
  .carousel-espaco {
    overflow-x: hidden;
  }

  .slide-track {
    gap: 0 !important;
  }

  .slide-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.espaco-lista-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.espaco-lista {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  font-size: 1.2rem;
  color: #b55f9e;
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  text-align: left;
  max-width: 600px; /* controla a largura da lista */
}

.espaco-lista li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.espaco-lista li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #b55f9e;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .espaco-lista {
    max-width: 90%;
  }
}

.depoimentos-carousel {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.depoimentos-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.depoimento {
  flex: 0 0 calc(100% / 3); /* 3 slides visíveis */
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.depoimentos-subtitle {
  font-size: 25px;
  color: #222;
  margin-bottom: 2px; /* antes: 10px */
}

.depoimentos .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #b55f9e;
  margin-top: 0;
  margin-bottom: 24px;
  text-align: center;
}
.depoimento img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.dots-depoimentos {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 8px;
}

.dot-depo {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot-depo.active {
  background-color: #b55f9e;
}



/* Mobile: 1 depoimento por vez */
@media (max-width: 768px) {
  .depoimento {
    flex: 0 0 100%;
  }

  .depoimentos-slides {
    gap: 0;
  }

  .depoimentos-slides img {
    width: 90%;
  }

  .dots-depoimentos {
    margin-top: 30px;
  }
}


/* Seção: O que você busca */
.oque-busca {
  background: url('assets/busca2.png') no-repeat center center;
  background-size: contain;
  padding: 100px 20px 100px 20px; /* voltou ao padding-top de 100px */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #39143d;
  min-height: 100vh;
  text-align: center;
  margin-top: 0px;
  padding-top: 10px;
}

.oque-busca .cabecalho {
max-width: 800px;
margin-bottom: 10px; /* antes estava 40px ou 50px */
  text-align: center;
}

.oque-busca h2.subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.oque-busca h3.section-title {
  font-size: 2.3rem;
  color: #b55f9e;
  font-weight: bold;
  margin-bottom: 8px; /* antes estava 18px ou 20px */
}

.oque-busca .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.oque-busca .container-texto {
  padding-left: 120px;
  margin-top: 100px; /* ↑ aumente conforme desejar */
  max-width: 700px;
  text-align: left;
}

.oque-busca p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Responsivo */
@media (max-width: 767px) {
  .oque-busca {
    background-image: url('assets/BANNER_MOBILE.png');
    background-size: cover;
    background-position: top center; /* Puxa a imagem para cima */
    background-repeat: no-repeat;
    padding: 0 24px 40px; /* Remove o padding-top */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .oque-busca .container-texto {
    max-width: 600px;
    padding-top: 10px; /* Apenas um pequeno respiro, se quiser */
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transform: translateY(-20px); /* Sobe todo o conteúdo */
  }

  .oque-busca h2 {
    font-size: 24px;
    font-weight: 700;
    color: #b55f9e;
    margin-bottom: 10px;
  }

  .oque-busca h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1d0c1f;
    margin-bottom: 16px;
  }

  .oque-busca p {
    font-size: 1.1rem;
    font-weight:bold;
    line-height: 1.6;
    color: #39143d;
    margin-bottom: 5px;
    text-align:left;
  }
}
/* CONTATO - sem espaçamentos extras */
.contato {
  padding: 20px 0 30px;
  background-color: #fff;
  text-align: center;
  margin: 0;
}

.contato .subtitulo {
  font-size: 25px;
  color: #222;
  margin-bottom: 2px; /* antes: 10px */
}

.contato .titulo {
  font-size: 40px;
  color: #b55f9e;
  font-weight: 700;
  margin: 0;
}
/* 
.contato .linha-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
  gap: 16px;
}

.contato .linha-logo hr {
  width: 120px;
  border: none;
  border-top: 2px solid #1d0c1f;
  margin: 0;
}

.contato .linha-logo img {
  height: 36px;
  display: block;
}
*/
.contato .descricao {
  font-size: 20px;
  color: #020202;
  margin: 16px auto 40px;
  max-width: 700px;
}

.meios-contato {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
}

.contato-box {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 60px 20px;
  color: white;
  text-align: center;
  margin: 0;
}

.contato-box.whatsapp {
  background-color: #b55f9e;
}

.contato-box.telefone {
  background-color: #e42fe4;
}

.contato-box i {
  font-size: 48px;
}

.contato-box h3 {
  font-size: 28px;
  margin: 20px 0 10px;
  font-weight: 700;
}

.contato-box p {
  font-size: 20px;
  margin: 0;
}

.botao-whats {
  display: inline-block;
  background-color: #1db853;
  color: white;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 8px;
  margin-top: 20px;
  text-decoration: none;
  font-size: 20px;
  transition: background-color 0.3s;
}

.botao-whats:hover {
  background-color: #117a46;
}

@media (max-width: 768px) {
  .contato .titulo {
    font-size: 32px;
  }

  .contato .descricao {
    font-size: 18px;
  }

  .contato-box h3 {
    font-size: 24px;
  }

  .contato-box p {
    font-size: 18px;
  }
}


.localizacao {
  text-align: center;
  padding: 60px 20px 0;
  background-color: #fff;
}

.localizacao h2 {
  font-size: 2.5rem;
  color: #b55f9e;
  font-weight: bold;
  margin-bottom: 10px;
}

.localizacao .subtitulo {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 5px;
  font-weight: bold;
}

.localizacao .endereco {
  font-size: 1.25rem;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 10px;
}

.localizacao .referencia {
  font-size: 1.1rem;
  color: #4d4d4d;
  margin-bottom: 40px;
}

.mapa-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  margin: 0;
  padding: 0;
}

.instagram {
  background-color: #fff;
  padding: 60px 20px;
}

.insta-container {
  display: flex;
  align-items: center; /* Centraliza verticalmente se necessário */
  justify-content: center; /* ✅ Centraliza horizontalmente */
  gap: 40px; /* Espaço entre texto e celular */
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.insta-texto {
  flex: 1;
  min-width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.insta-texto h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #b55f9e;
  margin-bottom: 10px; /* antes era 20px */
}

.insta-texto p {
  font-size: 1.2rem;
  color: #2b2b2b;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.icone-insta {
  font-size: 1.6rem; /* antes era 1.4rem */
  color: #2b2b2b;
}
@media (max-width: 600px) {
  .insta-texto {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .insta-texto h2 {
    margin: 0;
    font-size: 24px; /* ⬅ AUMENTADO */
    color: #b55f9e;
    font-weight: 700;
  }

  .insta-texto p {
    margin: 0;
    font-size: 1rem; /* ⬅ Pode ajustar aqui também se quiser */
    font-weight: 600;
  }
}
.rodape i {
  font-size: 2rem !important;
  color: #b55f9e;
}
.rodape i {
  font-size: 1.4rem;
  color: #b55f9e;
}

.insta-imagem {
  flex: 1;
  text-align: right;
  min-width: 300px;
}

.insta-imagem img {
  max-width: 100%;
  height: auto;
}

.insta-link {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.insta-link:hover {
  transform: scale(1.1);
  color: #b55f9e;
}

.icone-insta {
  font-size: 1.6rem;
}

.icone-insta-roxo {
  font-size: 2.5rem;
  color: #b55f9e;
  transition: transform 0.3s ease, color 0.3s ease;
}

.icone-insta-roxo:hover {
  transform: scale(1.2);
  color: #b55f9e;
}

.rodape {
  text-align: center;
  margin-top: 60px;
  font-size: 0.95rem;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.redes-sociais {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.icone-insta-roxo {
  font-size: 1.4rem;
  color: #b55f9e;
  transition: color 0.3s;
}

.icone-insta-roxo:hover {
  color: #8e3f79;
}

.linha-final-interna {
  width: 100%;
  height: 2px;
  background-color: #b55f9e;
  margin: 20px 0;
  border: none;
}
.centralizado {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Botão hamburguer - aparece só quando menu está fechado */

/* Menu fechado (não visível): posição absoluta = fica lá no topo do site */
#mobileMenu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%); /* começa fora da tela, acima */
  transition: transform 0.3s ease-in-out;
  z-index: 9999;
  background: transparent; /* importante! */
}
#mobileMenu.active {
  position: fixed;
  transform: translateX(0);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1002;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1002;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: white;
  margin: 5px 0;
  display: block;
  border-radius: 2px;
}

/* Botão fechar X - só visível quando menu estiver ativo */
.close-menu {
  display: none;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  z-index: 1002;
}

/* Mostra X quando menu ativo, esconde hamburguer */
.mobile-menu.active ~ .close-menu {
  display: block;
}
.mobile-menu.active ~ .menu-toggle {
  display: none;
}

/* Menu Mobile */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding-top: 80px;
  display: flex;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu ul {
  width: 90%;
  margin: 0;
  padding: 0;
  list-style: none;
  background: transparent; /* manter transparente */
}

.mobile-menu li {
  width: 100%;
}

.mobile-menu a {
  display: block;
  padding: 20px;
  text-align: center;
  font-size: 18px;
  color: #330033;
  font-weight: 500;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.9); /* fundo branco suave */
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* separador sutil */
  transition: background 0.3s ease, color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background-color: #330033;
  color: white;
}



/* Breakpoints */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
}

@media (min-width: 769px) {
  .menu-toggle,
  .close-menu,
  .mobile-menu {
    display: none !important;
  }
}



/* ---------------------- MENU RESPONSIVO FIXO ---------------------- */

/* Menu Desktop - visível só em telas grandes */
.menu-desktop {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
}

.menu-desktop ul {
  display: flex;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 20px 0 10px;
  z-index: 4;
}

.menu-desktop ul li a {
  color: white;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  transition: opacity 0.3s;
}

.menu-desktop ul li a:hover {
  opacity: 0.7;
}

/* Esconde o menu desktop no mobile */
@media (max-width: 768px) {
  .menu-desktop {
    display: none;
  }
}

/* Exibe o menu hamburguer só no mobile */
@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }

  .mobile-menu {
    display: none !important;
  }
}

/* BLOQUEIO DE ROLAGEM AO ABRIR MENU MOBILE */
html.no-scroll,
body.no-scroll {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.divider {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
  max-width: 800px;
}

.divider .line {
  all: unset;
  flex: 1;
  height: 1px;
  background-color: #1d0c1f;
  max-width: 100px;
}

.divider img {
  all: unset;
  height: 70px;
  display: block;
  object-fit: contain;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
}


.banner-gestar {
  position: relative;
  width: 100%;
  height: 70vh;

  /* 🔹 Fundo com gradiente + imagem */
  background: 
    linear-gradient(to right, rgba(63, 0, 69, 0.65), rgba(187, 93, 162, 0.55)),
    url('assets/gestar_DESKTOP.png') center/cover no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.banner-content {
  position: relative;
  z-index: 2;
  color: #18d1b2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 🔹 Logo */
.logo-gestar {
  width: 220px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.25));
}

/* 🔹 Título principal */
.banner-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px; /* espaço entre o título e a frase */
  text-transform: uppercase;
  color: #fff;
}

/* 🔹 Frase informativa */
.banner-frase {
  max-width: 900px;
  font-size: 2.3rem; /* texto grande e impactante */
  line-height: 1.1; /* menos espaçamento vertical */
  color: #f7dff0;
  font-weight: 400; /* mais robusto visualmente */
  margin-bottom: 30px;
  letter-spacing: 0.5px; /* leve ajuste para leitura */
}

/* 🔹 Botão */
.btn-gestar {
  background-color: #fff;
  color: #b55f9e;
  padding: 20px 60px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 22px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-gestar:hover {
  background-color: #37e9cb;
  color: #fff;
  transform: scale(1.08);
}

/* 🔹 Responsividade */
@media (max-width: 768px) {
  .banner-gestar {
    height: 60vh;
  }

  .logo-gestar {
    width: 150px;
    margin-bottom: 20px;
  }

  .banner-content h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .banner-frase {
    max-width: 90%;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 15px;
    margin-bottom: 25px;
  }

  .btn-gestar {
    font-size: 16px;
    padding: 14px 30px;
  }
}


