/*Codigo comentado para melhor entendimento dos colegas de equipe*/
/*reset de bordas e margens do site*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Marcellus+SC&family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Sans+Caption:wght@400;700&family=PT+Serif+Caption:ital@0;1&family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Quicksand:wght@300..700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: rgb(37, 211, 102);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(147, 147, 147, 0.4) 0px 4px 15px;
    z-index: 999;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    transition: transform 0.4s;
}

.whatsapp-float svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: rgba(147, 147, 147, 0.4) 0px 8px 20px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
    }   
}

/*estilização header (menu)*/
header {
  position: fixed;      
  top: 0;         
  left: 0;            
  width: 100%;         
  height: 100.0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.557);
  box-shadow: 0 4px 8px rgba(178, 178, 178, 0.2);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 1000
}

header .hidden{
  transform: translateY(-100%);
}

nav ul li a {
    position: relative;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #a64ca6; /* cor do destaque */
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Área do logo no header */
header .logo {
    height: 90px;              
    display: flex;
    align-items: center;
    padding-left: 370.0px;
}


/* Imagem do logo */
header .logo img {
    height: 100%;
    width: auto;                
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.2s;
}

/* Efeito visual ao passar o mouse */
header .logo img:hover {
    transform: scale(1.05);
}

@media (max-width: 600px) {
    header .logo {
        height: 56px; /* um pouco menor no mobile */
        padding-left: 10px;
    }
}

main {
  margin-top: 80.0px;
}

/*menu nav*/
nav ul{
    list-style: none;
    display: flex;
    margin-right: 360.0px;
}

nav ul li{
    margin-right: 28.008px;
}

nav ul li a{
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 16.0px;
    transition: color 0.3s;
}


/* ===== APRESENTAÇÃO / BENEFÍCIOS ===== */
.apresentacao {
  background: #fdf8fc;
  padding: 0px;
  margin-top: 90px;
  text-align: center;
}

.apresentacao .tag {
  display: inline-block;
  background: #ffe4f2;
  color: #d63384;
  font-weight: 600;
  padding: 6.4px 16.0px;
  border-radius: 20px;
  font-size: 14.4px;
  margin-bottom: 16.0px;
}

.apresentacao h2 {
  font-size: 28.8px;
  color: #a64ca6;
  max-width: 800px;
  margin: 0 auto 80.0px auto;
  line-height: 1.5;
}

.beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32.0px;
  max-width: 1100px;
  margin: 0 auto 48.0px auto;
}

.beneficios-card {
  background: linear-gradient(-55deg, #fdf8fc, #faf1f5);
  border-radius: 16px;
  padding: 32.0px 24.0px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-bottom: 3px solid #903b90;
}

.beneficios-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(166, 76, 166, 0.15);
}

.beneficios-card .icon {
  font-size: 40.0px;
  margin-bottom: 16.0px;
  color: #d63384;
}

.beneficios-card h3 {
  font-size: 19.2px;
  color: #333;
  margin-bottom: 12.8px;
}

.beneficios-card p {
  color: #555;
  font-size: 15.2px;
  line-height: 1.6;
}

.mensagem {
  margin: 90.0px;
  background: linear-gradient(135deg, #fce9f1, #f7e4fa);
  border-radius: 16px;
  padding: 32.0px 24.0px;
  max-width: 1100px;
  margin-inline: auto;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}

.mensagem p {
  font-style: italic;
  font-size: 17.6px;
  color: #7a2d7a;
  line-height: 1.7;
}

/* ===== FRASES PARA MÃES ===== */
.mae-quotes {
  background: linear-gradient(135deg, #fdf8fc, #fce9f1);
  padding: 80.0px 0;
  text-align: center;
  position: relative;
  height: 500px;
  margin-bottom: 90.0px;
  margin-top: 90.0px;
  overflow: hidden;
  width: 100%;
}

.quotes-header .tag {
  display: inline-block;
  background: #ffe4f2;
  color: #d63384;
  font-weight: 600;
  padding: 6.4px 16.0px;
  border-radius: 20px;
  font-size: 14.4px;
  margin-bottom: 16.0px;
}

.quotes-header h3 {
  font-size: 32.0px;
  color: #a64ca6;
  margin-bottom: 8.0px;
}

.quotes-header .subtitulo {
  color: #555;
  font-size: 16.0px;
  margin-bottom: 40.0px;
  max-width: 700px;
  margin-inline: auto;
}

.quote-slider {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  min-height: 250px;
}

.quote-card {
  background: #fff;
  border-radius: 16px;
  padding: 32.0px 24.0px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.quote-card.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.quote-card p {
  font-size: 17.6px;
  color: #7a2d7a;
  font-style: italic;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.quote-prev, .quote-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #a64ca6;
  color: white;
  border: none;
  font-size: 24.0px;
  padding: 6.4px 12.8px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-prev:hover, .quote-next:hover {
  background: #903b90;
}

.quote-prev { left: -50px; }
.quote-next { right: -50px; }

/* Responsivo */
@media (max-width: 768px) {
  .quote-prev, .quote-next {
    top: auto;
    bottom: -40px;
    transform: none;
    left: 35%;
    right: 35%;
  }

  .quote-next {
    left: auto;
    right: 35%;
  }

  .quote-card p {
    font-size: 16.0px;
    line-height: 1.6;
  }
}

/*estilização carrossel*/
.carrossel {
  width: 100%;
  height: 620px; 
  display: flex;
  margin-bottom: 90px;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #000; 
}

.container {
  padding-top: 90px;
}

/* Contêiner principal */
.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Cada slide (imagem individual) */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1.03);
}

/* Imagens centralizadas e ajustadas */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}



.prev {
  left: 16.0px;
}

.next {
  right: 16.0px;
}

/* Indicadores (bolinhas) */
.dots {
  position: absolute;
  bottom: 16.0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12.0px;
  z-index: 10;
}

.dots button {
  width: 12.8px;
  height: 12.8px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
}

.dots button.active {
  background-color: #fd5d5d;
  transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 900px) {
  .carrossel {
    height: 350px; /* menor altura em tablets */
  }
}

@media (max-width: 600px) {
  .carrossel {
    height: 250px; /* menor altura em celulares */
  }

  .prev, .next {
    font-size: 20.8px;
    padding: 4.8px 9.6px;
  }

  .dots button {
    width: 9.6px;
    height: 9.6px;
  }
}

/* ===== FORMULÁRIO MATERNLINK ===== */

.formulario-section {
    width: 100%;
    padding: 90px 24.0px;
    display: flex;
    justify-content: center;
}

.formulario-container {
    max-width: 1100px;
    width: 100%;
    padding: 40.0px 32.0px;
    text-align: center;
    background: #ffffffee;
    border-radius: 18px;
    border: 1px solid #f3c8f8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.formulario-container h2 {
    font-size: 32.0px;
    color: #a64ca6;
    margin-bottom: 16.0px;
    font-weight: 800;
}

.formulario-container .subtexto {
    color: #555;
    font-size: 16.8px;
    max-width: 600px;
    margin: 0 auto 28.8px;
    line-height: 1.6;
}

/* Botão leve e fluido */
.form-button {
    display: inline-block;
    background: #d63384;
    padding: 14.4px 35.2px;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18.4px;
    transition: transform .2s ease, background .2s ease;
}

.form-button:hover {
    background: #bc2b72;
    transform: translateY(-2px);
}

.ou {
    margin: 16.0px 0;
    font-size: 16.0px;
    font-weight: 700;
    color: #a64ca6;
}

/* QR Code otimizado */
.qr-area {
    margin-top: 3.2px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-box {
    padding: 12px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #ffd3ea;
    box-shadow: 0 4px 10px rgba(255, 180, 220, 0.35);
    transition: transform 0.2s ease;
}

.qr-box:hover {
    transform: scale(1.04);
}

.qr-image {
    width: 165px;
    height: auto;
    display: block;
}

.qr-text {
    margin-top: 6.4px;
    font-size: 15.2px;
    color: #a64ca6;
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 600px) {
    .formulario-container {
        padding: 32.0px 19.2px;
    }
    .form-button {
        width: 100%;
    }
    .qr-image {
        width: 140px;
    }
}

/* FOOTER */
.footer {
  background-color: #121826;
  color: #dfe4f2;
  padding: 60px 8%;
  margin-top: 90.0px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 160px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}


/* Seções individuais */
.footer-section {
  flex: 0 1 300px;   /* base de 350px, encolhe quando necessário, NÃO cresce */
  width: auto;


}

/*  LOGO E DESCRIÇÃO */
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-right: 10px;
}

.footer-logo h4 {
  color: #e07ba3;
  font-size: 1.4em;
  margin: 0;
}

.footer-logo .via {
  font-size: 0.85em;
  color: #b9bfd0;
  margin-top: 3px;
}

.footer-text {
  color: #c6c9d1;
  font-size: 0.95em;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ÍCONES SOCIAIS */
.social-icons a img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  transition: transform 0.3s, filter 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.1);
  filter: brightness(1.3);
}

/* CONTATO */
.footer-section h5 {
  color: #d794ce;
  font-size: 1.1em;
  margin-bottom: 15px;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  color: #c6c9d1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 0.95em;
}

.contact-list img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

/* PARTE INFERIOR */
.footer-bottom {
  border-top: 1px solid #2b3245;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9em;
  color: #b3b8c5;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  footer {
    padding: 30px 10px;
  }

  .footer-content {
    gap: 20px;
  }

  .footer-text {
    font-size: 0.9em;
    padding: 0 10px;
  }

  .social-icons a img {
    width: 26px;
    height: 26px;
  }

  .footer-contact li {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .footer-logo h3 {
    font-size: 1.1em;
  }

  .footer-text {
    font-size: 0.85em;
  }

  .footer-contact h4 {
    font-size: 1em;
  }
}

/* MENU HAMBÚRGUER */
.menu-toggle {
  display: none;
  font-size: 32.0px;
  background: none;
  border: none;
  color: rgba(0, 0, 0, 0.674);
  margin-right: 16.0px;
  cursor: pointer;
}

@media (max-width: 768px) {
    /* 1. Estado Oculto (Fora da tela) */
    nav ul {
        flex-direction: column;
        position: fixed;
        top: 100.0px; 
        right: 0;
        width: 100%;
        padding: 0; 
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        background-color: rgb(255, 255, 255);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: translateY(-10%); 
        opacity: 0; /* Começa totalmente invisível */
        transition: transform 0.4s ease-out, 
                    opacity 0.4s ease-out; 
        z-index: 998;
        margin-left: 0; 
        margin-right: 0; 
    }

    /* 2. Estado Visível (Aberto pelo JS) */
    nav ul.show {
        transform: translateY(0); 
        opacity: 1; 
        padding: 16.0px 0;
    }

    /* Estilos dos itens */
    nav ul li {
        margin: 16.0px 0;
        text-align: center;
        padding: 0;
    }

    nav ul li a {
        display: block; 
        padding: 8.0px 0; 
    }

    /* Mostra o botão hambúrguer */
    .menu-toggle {
        display: block; 
    }
}

/* Centraliza o botão do menu no header */
@media (max-width: 768px) {
  header {
    justify-content: space-between;
    align-items: center;
    padding: 0 16.0px;
  }

  .menu-toggle {
    position: absolute;
    right: 16.0px;
    top: 50%;
    transform: translateY(-50%);
  }

  nav ul {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .hero-container {
    flex-direction: column-reverse;
  }
}

@media (max-width: 480px) {

  .quotes-header .subtitulo {
    margin: 20px;
  }

  .hero-text {
    padding: 32.0px 16.0px;
  }

  .hero-text h1 {
    font-size: 25.6px;
  }

  .hero-text p {
    font-size: 15.2px;
  }

  .hero-image img {
    width: 90%;
    max-width: 260px;
  }

  .beneficios-card {
    margin: 20px;
  }

  .footer-container {
    margin: 20px;
  }

  .apresentacao h2 {
    margin: 20px;
    text-wrap: balance;
  }

  nav ul {
    width: 100%;
    padding: 16.0px 0;
  }
}

/* Botão "Voltar ao topo" (com texto) */
#back-to-top {
  position: fixed;
  right: 24px;
  bottom: 110px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  min-height: 48px;
  border-radius: 28px;
  background: linear-gradient(135deg,#d63384,#a64ca6);
  color: #fff;
  font-weight: 600;
  font-family: inherit;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  border: none;
  cursor: pointer;
  z-index: 1200;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.video-container {
  position: relative;
  width: 80%;             /* tamanho do vídeo */
  max-width: 900px;        /* largura máxima */
  height: 200px;
  margin: 40px auto;        /* centraliza horizontalmente */
  padding-top: 25.25%;      /* proporção 16:9 (9/16 = 0.5625) */
  border-radius: 16px;      /* bordas arredondadas */
  overflow: hidden;         /* corte bordas do iframe */
  box-shadow: 0 4px 20px rgba(108, 108, 108, 0.25); /* sombra bonita */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}



/* ícone */
#back-to-top svg {
  width: 20px;
  height: 20px;
  fill: white;
  flex: 0 0 auto;
}

/* texto visível */
#back-to-top .back-text {
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

/* quando deve aparecer */
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* telas pequenas: esconde o texto para economizar espaço */
@media (max-width: 600px) {
  #back-to-top { right: 18px; bottom: 120px; padding: 10px; border-radius: 24px; }
  #back-to-top .back-text { display: none; }
}

/* Esconder setas do carrossel em dispositivos touch / telas pequenas */
@media (max-width: 900px), (pointer: coarse) {
  .carrossel .prev,
  .carrossel .next {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

