/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Montserrat:wght@700;800;900&display=swap');

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', sans-serif;
  color: #222;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== FADE IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #2CBF4E;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.18) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .5s ease;
}
.cta-btn:hover { transform: translateY(-3px); background: #23a842; box-shadow: 0 8px 28px rgba(44,191,78,.45); }
.cta-btn:hover::after { transform: translateX(100%); }

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 4px 20px rgba(44,191,78,.4); }
  50%       { box-shadow: 0 4px 36px rgba(44,191,78,.7); }
}
.cta-pulse { animation: pulse-cta 2s infinite; }

/* ============================================================
   1 — HERO
============================================================ */
.hero {
  background: #FCFCFD;
  padding: 60px 0 70px;
  text-align: center;
}

.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.25;
  color: #0F172A;
  max-width: 800px;
  margin: 0 auto 36px;
}
.hl-blue { color: #4361EE; }
.hl-green { color: #2CBF4E; }

/* Produto Hero */
.hero-product-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-product-img {
  max-height: 400px;
  width: auto;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.1));
}

/* Badge flutuante */
.hero-badge {
  position: absolute;
  top: -20px;
  left: 5%;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
  text-align: left;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}
.hero-badge-icon {
  font-size: 2rem;
}
.hero-badge strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #333;
  display: block;
  line-height: 1.2;
}
.hero-badge small {
  font-size: .8rem;
  color: #666;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-sub {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 28px;
}

.hero-cta-wrap { margin-bottom: 24px; }
.cta-hero {
  width: 100%;
  max-width: 480px;
  font-size: 1.1rem;
  padding: 20px;
}

/* ============================================================
   2 — ATIVIDADES  (fundo branco)
============================================================ */
.sec-activities {
  padding: 64px 0;
  background: #fff;
  text-align: center;
}

.sec-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: #111;
  margin-bottom: 10px;
  line-height: 1.3;
}
.sec-subtitle {
  font-size: .95rem;
  color: #666;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* Grid de imagens de atividades */
.activities-mosaic {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.activities-mosaic img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

/* ============================================================
   3 — POR QUE FUNCIONA  (fundo branco)
============================================================ */
.sec-why {
  padding: 64px 0;
  background: #f9f9f9;
  text-align: center;
}

/* Mosaico de fotos de crianças */
.why-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 160px 160px;
  gap: 10px;
  margin-bottom: 36px;
  border-radius: 16px;
  overflow: hidden;
}
.why-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-photo-grid .big { grid-column: 1; grid-row: 1 / 3; }

/* Lista de benefícios com check */
.benefits-list {
  list-style: none;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: #333;
  line-height: 1.5;
}
.check-circle {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: #2CBF4E;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 900;
  margin-top: 1px;
}

/* Arrow divider */
.arrow-divider {
  text-align: center;
  font-size: 2rem;
  color: #F5A623;
  margin: 20px 0 0;
  line-height: 1;
}

/* ============================================================
   4 — BÔNUS  (fundo branco com destaque em amarelo)
============================================================ */
.sec-bonus {
  padding: 64px 0;
  background: #fff;
  text-align: center;
}

.bonus-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: #0F172A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.bonus-highlight {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #F5A623;
  background: #FDF2CA;
  border-radius: 8px;
  padding: 6px 16px;
  text-transform: uppercase;
  display: inline-block;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #fff;
  border: 2px dashed #aebcf2;
  border-radius: 16px;
  padding: 24px 32px;
  text-align: left;
  transition: transform .3s, box-shadow .3s;
}
.bonus-item:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.06); }

.bonus-item-img {
  flex-shrink: 0;
  width: 140px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bonus-item-img img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 8px 16px rgba(0,0,0,.15)); }

.bonus-item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bonus-tag {
  display: inline-block;
  background: #D1FAE5;
  color: #10B981;
  font-size: .75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.bonus-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #4361EE;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.bonus-item p { font-size: .95rem; color: #475569; line-height: 1.5; }

/* ============================================================
   5 — DEPOIMENTOS  (fundo escuro)
============================================================ */
.sec-testimonials {
  padding: 64px 0;
  background: #111827;
  text-align: center;
}
.sec-testimonials .sec-title { color: #fff; }
.sec-testimonials .sec-subtitle { color: rgba(255,255,255,.55); }

/* CARROSSEL */
.carousel {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}
.carousel-track-wrapper {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.carousel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}
.carousel-slide img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  display: block;
  background: #1a1a2e;
}

/* Setas */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  z-index: 2;
}
.carousel-btn:hover {
  background: #2CBF4E;
  border-color: #2CBF4E;
  transform: translateY(-50%) scale(1.1);
}
.carousel-btn-prev { left: -22px; }
.carousel-btn-next { right: -22px; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  background: transparent;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}
.carousel-dot:hover { border-color: #2CBF4E; }
.carousel-dot.active {
  background: #2CBF4E;
  border-color: #2CBF4E;
  transform: scale(1.2);
}

/* ============================================================
   6 — COMO FUNCIONA  (fundo branco)
============================================================ */
.sec-how {
  padding: 64px 0;
  background: #fff;
  text-align: center;
}

.steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: left;
}
.step {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  border: 2px dashed #aebcf2;
  border-radius: 16px;
  padding: 28px 24px 28px 32px;
  background: #fff;
}
.step-num {
  position: absolute;
  top: -16px;
  left: 32px;
  width: 32px;
  height: 32px;
  background: #4361EE;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
}
.step-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #0F172A;
  margin-bottom: 6px;
}
.step-body p { font-size: .95rem; color: #475569; line-height: 1.5; }

/* ============================================================
   7 — PRICING  (fundo escuro gradiente)
============================================================ */
.sec-pricing {
  padding: 64px 0;
  background: linear-gradient(160deg, #111827 0%, #0d1b2a 50%, #0a2535 100%);
  text-align: center;
}

.pricing-card {
  max-width: 400px;
  margin: 0 auto;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 40px 28px 32px;
  backdrop-filter: blur(8px);
}

.pricing-product-img {
  max-width: 240px;
  margin: 0 auto 28px;
}
.pricing-product-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}

/* Itens inclusos */
.pricing-includes {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.8);
}
.pricing-includes li svg { color: #2CBF4E; flex-shrink: 0; }

.pricing-from {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 2px;
}
.pricing-old {
  font-size: 1rem;
  color: rgba(255,255,255,.35);
  text-decoration: line-through;
  margin-bottom: 6px;
}
.pricing-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3.2rem;
  color: #2CBF4E;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price sup { font-size: 1.4rem; vertical-align: super; }
.pricing-price sub { font-size: 1.4rem; vertical-align: baseline; }
.pricing-note {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 24px;
}

.pricing-cta { margin-bottom: 14px; }
.pricing-cta .cta-btn { width: 100%; font-size: .95rem; padding: 16px; }

.pricing-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   8 — FAQ  (fundo escuro)
============================================================ */
.sec-faq {
  padding: 64px 0 72px;
  background: #111827;
  text-align: center;
}
.sec-faq .sec-title { color: #fff; text-transform: uppercase; letter-spacing: 1px; }
.sec-faq .sec-title .green { color: #2CBF4E; }

.faq-list {
  max-width: 660px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #1f2937;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .2s;
}
.faq-question:hover { background: rgba(255,255,255,.04); }
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #2CBF4E;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  text-align: left;
}

/* CTA no FAQ */
.faq-cta-wrap {
  margin-top: 36px;
}

/* ============================================================
   9 — FOOTER  (fundo preto)
============================================================ */
.footer {
  background: #0a0a0a;
  padding: 28px 20px;
  text-align: center;
}
.footer-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
  opacity: .55;
  flex-wrap: wrap;
}
.footer-badges img { height: 30px; filter: grayscale(1) brightness(2); }
.footer-text {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  line-height: 1.7;
}
.footer-text a { color: rgba(255,255,255,.5); text-decoration: underline; }

/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 640px) {
  .hero h1 { font-size: 1.4rem; }
  .hero-product img { max-height: 160px; }

  .why-photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 130px 130px; }
  .why-photo-grid .big { grid-column: 1; grid-row: 1; }

  .activities-mosaic { grid-template-columns: 1fr; }
  .activities-mosaic .a1 { grid-row: 1; }

  .carousel { max-width: 100%; }
  .carousel-btn-prev { left: 6px; }
  .carousel-btn-next { right: 6px; }

  .bonus-item { flex-direction: column; align-items: flex-start; }

  .pricing-price { font-size: 2.6rem; }
}