@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #3f0e40;
  line-height: 1.6;
}

/* Container global para centralização */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO */
.hero {
  background-color: #b42ea5;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
}

.btn {
  display: inline-block;
  background-color: #facc15;
  color: #3f0e40;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #ffe34f;
  transform: scale(1.05);
}

.btn-large {
  font-size: 1.2rem;
  padding: 1.2rem 2.5rem;
}

/* =======================================
   ✨ Estilo da Seção "Sobre Nós"
   ======================================= */
.sobre {
  color: #3f0e40;
  background: #ffffff;
  color: #3f0e40;
  padding: 60px 20px;
  text-align: center;
}

.sobre .container {
  max-width: 900px;
  margin: auto;
}

.sobre h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #3f0e40;
}

.sobre p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.valor-box {
  background: #f3f3f3;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.valor-box h3 {
  color: #ab8800;
  margin-bottom: 0.8rem;
}

/* BENEFÍCIOS */
.benefits {
  background: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.benefits h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #3f0e40;
}

.benefits ul {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin: 0 auto;
}

.benefits li {
  font-size: 1.1rem;
  margin: 10px 0;
}

/* ESTAÇÕES */
.estacoes {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.estacoes h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #3f0e40;
}

.estacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.box {
  background: #ffffff;
  border: 2px solid #8b7000;
  padding: 1.0rem;
  border-radius: 10px;
  font-weight: 600;
  color: #3f0e40;
  font-size: 1.05rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* CTA */
.cta {
  background: #b42ea5;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* RODAPÉ */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}

footer .social {
  margin-top: 10px;
}

footer .social a {
  color: #facc15;
  text-decoration: none;
  margin: 0 10px;
}

/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

/* ================================
   🎯 Responsividade para Mobile
   ================================ */
@media (max-width: 768px) {
  
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn,
  .btn-large {
    width: 100%;
    max-width: 320px;
    margin: 10px auto;
    display: block;
    text-align: center;
  }

  .estacoes-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .box {
    font-size: 1rem;
    padding: 1.2rem;
  }

  .benefits ul {
    padding: 0 15px;
  }

  .cta {
    padding: 50px 20px;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

  footer {
    font-size: 0.85rem;
    padding: 20px;
  }

  .valores-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================
   ✨ Animação encantadora para título da seção
   - Efeito de fade-in com destaque
   - Brilho animado leve que atrai atenção
   ========================================== */
.section-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #3f0e40;
  position: relative;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
   overflow: hidden; /
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-brilho::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg);
  animation: brilho-passar 1.2s infinite;
}

@keyframes brilho-passar {
  0% {
    left: -75%;
  }
  100% {
    left: 130%;
  }
}
/* ================================
   💬 Estilo da Seção Depoimentos
   ================================ */
.testimonials {
  background: #fff8e7; /* tom claro e suave */
  padding: 60px 20px;
  text-align: center;
  color: #3f0e40;
}

.testimonials .section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #3f0e40;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background: #ffffff;
  border: 2px solid #facc15;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.testimonial p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial h4 {
  font-weight: 600;
  color: #3f0e40;
  font-size: 1rem;
}

/* =============================
   📌 Menu de Navegação
   ============================= */
.header {
  background: #ffffff;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: static;
  top: 0;
  z-index: 100;
}

.header-flex {
 display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  max-width: 150px;   /* Aumente conforme necessário */
  width: auto;
  height: auto;
  display: block;

}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #3f0e40;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #facc15;
}

/* Estilo base do botão hamburguer */
.menu-toggle {
  display: none; /* Ativado no mobile */
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10000;
}

.menu-toggle .bar {
  height: 4px;
  width: 100%;
  background-color: #b42ea5;
  border-radius: 2px;
  transition: 0.4s;
}

/* Responsivo */
@media (max-width: 768px) {
   
  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    border-radius: 8px;
     z-index: 9999;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    margin: 10px 0;
  }
  /* Animação para transformar em X quando menu está ativo */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
}
/* ================================
   🔢 Estilo da seção de contadores
   ================================ */
.counters {
  background: #fff8e7;
  color: #000000;
  padding: 60px 20px;
  text-align: center;
}

.counters .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.counter-item {
  flex: 1 1 180px;
}

.counter-item .count {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.counter-item p {
  font-size: 1rem;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
}
.section-title{
  text-align: center;
}
.carousel-multiple {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  scroll-behavior: smooth;
  padding: 10px;
  scroll-snap-type: x mandatory;
}

.carousel-multiple img {
  width:auto;
  height: 300px;
  object-fit: contain;
  border-radius: 5px;
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  background-color:#fff;
}

.carousel-multiple img:hover {
  transform: scale(1.05);
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #b42ea5;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
  border-radius: 6px;
  opacity: 0.8;
  transition: 0.3s ease;
}

.carousel-btn:hover {
  opacity: 1;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}
.lightbox {
  display: flex;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease;
}

/* Quando ativado */
.lightbox.show {
  visibility: visible;
  opacity: 1;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
