/* ============================================================
   DUDU ACQUA CENTER — Estilo
   Paleta: aquático (azuis), branco, amarelo de destaque
   ============================================================ */

:root {
  --blue-900: #0b2a4a;
  --blue-700: #0e63a8;
  --blue-600: #0b80c8;
  --blue-500: #1aa0e2;
  --blue-400: #4fc3f7;
  --blue-200: #cfeefb;
  --blue-50:  #f1faff;

  --orange: #f0922a;
  --yellow: #ffd248;
  --pink: #ec64a3;

  --ink: #16263b;
  --muted: #5a6f86;
  --line: #e1ebf3;
  --bg: #ffffff;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 4px 14px rgba(11, 42, 74, 0.07);
  --shadow: 0 18px 40px -12px rgba(11, 42, 74, 0.18);
  --shadow-lg: 0 32px 60px -20px rgba(11, 42, 74, 0.28);

  --font-head: 'Fredoka', 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--blue-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--blue-500); }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--blue-900);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: .3em; }
h3 { font-size: 1.25rem; margin-bottom: .35em; }

p { color: var(--muted); }

.white { color: #fff !important; }
.light { color: rgba(255,255,255,0.85) !important; }

.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.kicker.light {
  color: #fff;
  background: rgba(255,255,255,0.18);
}

.eyebrow {
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  display: block;
}

.hl {
  background: linear-gradient(180deg, transparent 60%, rgba(255, 210, 72, 0.55) 60%);
  padding: 0 4px;
}
.hl-yellow { color: var(--yellow); }

.lead { font-size: 1.1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: #fff;
  box-shadow: 0 14px 28px -10px rgba(11, 128, 200, 0.55);
}
.btn-primary:hover { color: #fff; box-shadow: 0 18px 36px -10px rgba(11, 128, 200, 0.7); }

.btn-ghost {
  background: rgba(255,255,255,0.65);
  color: var(--blue-700);
  border: 2px solid rgba(11, 99, 168, 0.18);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: #fff; color: var(--blue-700); border-color: var(--blue-500); }

.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border: 2px solid var(--blue-200);
}
.btn-outline:hover { background: var(--blue-50); border-color: var(--blue-500); color: var(--blue-700); }

.btn-yellow {
  background: var(--yellow);
  color: var(--blue-900);
  box-shadow: 0 14px 28px -10px rgba(255, 210, 72, 0.65);
}
.btn-yellow:hover { color: var(--blue-900); }

.btn-nav {
  background: var(--blue-600);
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 999px;
}
.btn-nav:hover { background: var(--blue-700); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: padding .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  padding: 8px 0;
  border-color: var(--line);
  box-shadow: 0 6px 20px -10px rgba(11,42,74,0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link { display: inline-block; }
.logo-img { height: 56px; width: auto; transition: height .2s ease; }
.site-header.scrolled .logo-img { height: 46px; }

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  display: inline-block;
  padding: 8px 14px;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.nav a:hover { background: var(--blue-50); color: var(--blue-700); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-50);
  position: relative;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--blue-700);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 140px 0 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(79, 195, 247, 0.35), transparent 50%),
    radial-gradient(circle at 0% 60%, rgba(11, 128, 200, 0.18), transparent 50%),
    linear-gradient(160deg, #e7f6ff 0%, #f8fcff 100%);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(79,195,247,0.4));
  box-shadow: inset 0 0 30px rgba(255,255,255,0.5);
  animation: float 8s ease-in-out infinite;
}
.b1 { width: 80px; height: 80px; top: 20%; left: 8%; animation-delay: 0s; }
.b2 { width: 50px; height: 50px; top: 60%; left: 15%; animation-delay: 1.2s; }
.b3 { width: 100px; height: 100px; top: 30%; right: 10%; animation-delay: 2s; }
.b4 { width: 36px; height: 36px; top: 70%; right: 25%; animation-delay: 0.6s; }
.b5 { width: 64px; height: 64px; top: 80%; left: 50%; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  padding: 30px 0 100px;
  position: relative;
  z-index: 2;
}

.hero-text h1 { margin-bottom: 22px; }
.hero-text p { font-size: 1.12rem; max-width: 540px; margin-bottom: 32px; color: #3f5871; }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--blue-700);
  line-height: 1;
  font-weight: 700;
}
.hero-stats span {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 4px;
}

.hero-mascote {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-mascote::before {
  content: '';
  position: absolute;
  inset: 5% 5% 5% 5%;
  background: radial-gradient(circle, rgba(79,195,247,0.45), transparent 60%);
  filter: blur(20px);
  z-index: 0;
}
.mascote-img {
  position: relative;
  z-index: 1;
  max-height: 520px;
  width: auto;
  filter: drop-shadow(0 25px 30px rgba(11, 42, 74, 0.25));
  animation: bob 4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-wave {
  position: relative;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ============================================================
   SECTIONS GENERAL
   ============================================================ */
.section {
  padding: 90px 0;
  position: relative;
}
.section-light { background: #fff; }
.section-soft  { background: linear-gradient(180deg, #f5fbff 0%, #ffffff 100%); }
.section-blue  {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
}
.section-blue p { color: rgba(255,255,255,0.86); }
.section-blue h2, .section-blue h3 { color: #fff; }
.section-dark  {
  background: linear-gradient(160deg, #0b2a4a 0%, #103a6a 100%);
  color: #fff;
}
.section-dark p { color: rgba(255,255,255,0.78); }

.section-head {
  margin-bottom: 50px;
}
.section-head.center { text-align: center; max-width: 720px; margin-inline: auto; }
.section-head .lead { color: var(--muted); margin-top: 6px; }
.section-blue .section-head .lead, .section-dark .section-head .lead { color: rgba(255,255,255,0.85); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.grid-2.reverse > div:first-child { order: 2; }
.grid-2.reverse > div:last-child { order: 1; }

/* ============================================================
   QUEM SOMOS
   ============================================================ */
.pillars {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px 24px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 18px;
  row-gap: 4px;
  align-items: start;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pillar-icon { grid-row: 1 / span 2; }
.pillar h3, .pillar p { grid-column: 2; }
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--blue-200);
}
.pillar-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.2rem;
}
.pillar h3 { margin-bottom: 6px; }
.pillar p { font-size: .95rem; }

.quem-somos-side { position: relative; }
.founder-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--blue-50);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.founder-photo:hover img { transform: scale(1.04); }
.founder-tag {
  position: absolute;
  left: 20px; bottom: 20px; right: 20px;
  background: rgba(11, 42, 74, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  font-size: .85rem;
  border: 1px solid rgba(255,255,255,0.15);
}
.founder-tag strong {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 2px;
  color: #fff;
}

.quote-card {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--blue-50), #fff);
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--blue-200);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote-card p {
  font-style: italic;
  color: var(--blue-900);
  font-size: 1.05rem;
}
.quote-card span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--blue-700);
  font-size: .9rem;
}

/* ============================================================
   MÉTODO SUMIDA
   ============================================================ */
.metodo-img {
  display: flex;
  justify-content: center;
}
.metodo-img img {
  max-width: 380px;
  background: rgba(255,255,255,0.95);
  padding: 30px;
  border-radius: 50%;
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.3);
  animation: spin 28s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.callout {
  margin-top: 26px;
  background: rgba(255,255,255,0.12);
  border-left: 4px solid var(--yellow);
  padding: 18px 22px;
  border-radius: 12px;
}
.callout p { color: rgba(255,255,255,0.94); }

/* ============================================================
   BENEFITS (BEBÊS)
   ============================================================ */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--blue-200);
}
.b-icon {
  width: 56px; height: 56px;
  background: var(--blue-50);
  display: grid; place-items: center;
  border-radius: 16px;
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.bebes-note {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--blue-50);
  padding: 22px 28px;
  border-radius: var(--radius);
}

.bebes-photos {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bebes-photos figure {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}
.bebes-photos figure:hover { transform: translateY(-4px); }
.bebes-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   FASES
   ============================================================ */
.fases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fase-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px 30px;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.fase-card::before {
  content: '';
  position: absolute;
  inset: -40px -40px auto auto;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(79,195,247,0.22), transparent 70%);
  pointer-events: none;
}
.fase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--blue-200);
}
.fase-card.highlight {
  background: linear-gradient(160deg, #0e63a8, #1aa0e2);
  color: #fff;
}
.fase-card.highlight h3, .fase-card.highlight p, .fase-card.highlight li { color: #fff; }
.fase-card.highlight .fase-tag { background: rgba(255,255,255,0.2); color: #fff; }

.fase-mascote {
  width: 110px; height: 110px;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.fase-mascote img {
  max-height: 110px;
  width: auto;
  filter: drop-shadow(0 8px 12px rgba(11, 42, 74, 0.15));
}

.fase-tag {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-700);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.fase-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.fase-card p { font-size: .94rem; margin-bottom: 16px; }

.fase-list {
  list-style: none;
  display: grid;
  gap: 6px;
}
.fase-list li {
  position: relative;
  padding-left: 22px;
  font-size: .9rem;
  color: var(--ink);
}
.fase-card.highlight .fase-list li { color: rgba(255,255,255,0.92); }
.fase-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  background: var(--blue-500);
  border-radius: 4px;
  transform: rotate(45deg);
}
.fase-card.highlight .fase-list li::before { background: var(--yellow); }

/* ============================================================
   GALLERY (FOTOS) + LIGHTBOX
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.g-item {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--blue-50);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 42, 74, 0.55) 100%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.g-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.g-item:hover img { transform: scale(1.06); }
.g-item:hover::after { opacity: 1; }

.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 18, 36, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
}
.lightbox.is-open { display: flex; }

.lb-figure {
  margin: 0;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: lbIn .25s ease;
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.lb-figure img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.lb-figure figcaption {
  color: rgba(255,255,255,0.85);
  font-size: .92rem;
  text-align: center;
}

.lb-close, .lb-nav {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,0.25); transform: scale(1.05); }
.lb-close { top: 24px; right: 24px; font-size: 1.8rem; }
.lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover  { transform: translateY(-50%) scale(1.05); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-next:hover  { transform: translateY(-50%) scale(1.05); }

/* ============================================================
   VIDEO GALLERY
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-grid video {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
}

/* ============================================================
   HORÁRIOS
   ============================================================ */
.schedule-table-wrap {
  overflow-x: auto;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.18);
}
.schedule-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  color: #fff;
}
.schedule-table th, .schedule-table td {
  padding: 14px 12px;
  text-align: center;
  font-size: .92rem;
}
.schedule-table thead th {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  color: var(--yellow);
  border-bottom: 2px solid rgba(255,255,255,0.2);
}
.schedule-table tbody td {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.schedule-table tbody td:first-child {
  font-weight: 600;
  color: var(--yellow);
}
.schedule-table tbody tr:hover td {
  background: rgba(255,255,255,0.06);
}

.schedule-note {
  margin-top: 20px;
  text-align: center;
  font-size: .88rem;
  color: rgba(255,255,255,0.7);
}
.section-light .schedule-note { color: var(--muted); }

/* ============================================================
   VALORES
   ============================================================ */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.plan:hover {
  transform: translateY(-6px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow);
}
.plan.featured {
  border-color: var(--blue-500);
  background: linear-gradient(160deg, #0b80c8 0%, #1aa0e2 100%);
  color: #fff;
  box-shadow: 0 24px 50px -15px rgba(11, 128, 200, 0.5);
  transform: translateY(-6px);
}
.plan.featured h3, .plan.featured .price, .plan.featured ul li { color: #fff; }
.plan.featured ul li::before { background: rgba(255,255,255,0.7); }
.plan.featured .badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--yellow);
  color: var(--blue-900);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.plan h3 { margin-bottom: 14px; }
.price {
  font-family: var(--font-head);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1;
  margin-bottom: 24px;
}
.price span { font-size: 1.1rem; vertical-align: super; margin-right: 6px; opacity: .7; }
.price small { font-size: .95rem; font-weight: 500; opacity: .7; }

.plan ul {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
  display: grid;
  gap: 8px;
  text-align: left;
  padding-left: 4px;
}
.plan ul li {
  position: relative;
  padding-left: 24px;
  font-size: .94rem;
}
.plan ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-600);
  font-weight: 700;
}

/* ============================================================
   PROMOÇÃO
   ============================================================ */
.section-promo {
  background: linear-gradient(120deg, #ec64a3 0%, #f0922a 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.section-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><circle cx='30' cy='30' r='2' fill='white' fill-opacity='0.15'/></svg>");
  pointer-events: none;
}
.promo-wrap {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.promo-wrap h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.promo-mascote img {
  max-height: 360px;
  margin-inline: auto;
  filter: drop-shadow(0 18px 25px rgba(0,0,0,0.25));
  animation: bob 4s ease-in-out infinite;
}

/* ============================================================
   NOTÍCIAS
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.news-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.news-img {
  height: 200px;
  background: var(--blue-50) center / contain no-repeat;
  background-size: 70%;
  border-bottom: 1px solid var(--line);
}
.news-body { padding: 22px 24px 26px; }
.news-date {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-700);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.news-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.news-card p  { font-size: .94rem; }

/* ============================================================
   CONTATO
   ============================================================ */
.contact-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.contact-list li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 16px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-list strong {
  color: var(--yellow);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-list a {
  color: #fff;
  font-weight: 500;
}
.contact-list a:hover { color: var(--yellow); }

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  display: grid;
  gap: 14px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  margin-bottom: 6px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
}
.contact-form input, .contact-form textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #f9fcff;
  color: var(--ink);
  font-weight: 400;
  transition: border-color .2s ease, background .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 80px; }
.contact-form button { margin-top: 6px; width: 100%; }
.form-note { color: var(--muted); font-weight: 400; font-size: .82rem; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #061a31;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo {
  height: 70px;
  margin-bottom: 16px;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
}
.site-footer h4 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: var(--blue-400); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  font-size: .85rem;
  text-align: center;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6);
  z-index: 40;
  transition: transform .2s ease;
  animation: pulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 32px; height: 32px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50%      { box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6), 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-toggle { display: block; z-index: 51; }
  .nav {
    position: fixed;
    top: 0;
    right: -340px;
    width: min(320px, 80%);
    height: 100vh;
    background: #ffffff;
    box-shadow: -20px 0 60px -10px rgba(11,42,74,0.25);
    transition: right .3s ease, visibility .3s ease;
    padding: 90px 28px 28px;
    z-index: 60;
    overflow-y: auto;
    visibility: hidden;
  }
  .nav.is-open {
    right: 0;
    visibility: visible;
  }
  .nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav a { padding: 12px 16px; }
  .btn-nav { display: inline-block; text-align: center; margin-top: 8px; }

  .hero { padding-top: 110px; }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 60px;
    text-align: center;
  }
  .hero-text p { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-mascote { order: -1; }
  .mascote-img { max-height: 300px; }

  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-2.reverse > div:first-child { order: 1; }
  .grid-2.reverse > div:last-child  { order: 2; }

  .founder-photo { max-width: 480px; margin: 0 auto; aspect-ratio: 4 / 4.5; }

  .benefits  { grid-template-columns: repeat(2, 1fr); }
  .fases-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
  .bebes-photos { grid-template-columns: repeat(3, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan.featured { transform: translateY(0); }
  .news-grid { grid-template-columns: 1fr 1fr; }

  .promo-wrap { grid-template-columns: 1fr; text-align: center; }
  .promo-mascote { order: -1; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .benefits   { grid-template-columns: 1fr; }
  .fases-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .news-grid  { grid-template-columns: 1fr; }
  .gallery    { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 10px; }
  .g-wide     { grid-column: span 2; }
  .bebes-photos { grid-template-columns: 1fr 1fr; }
  .bebes-photos figure:nth-child(3) { grid-column: span 2; aspect-ratio: 16 / 9; }
  .lightbox   { padding: 20px; }
  .lb-close { top: 12px; right: 12px; width: 42px; height: 42px; }
  .lb-nav   { width: 42px; height: 42px; }
  .hero-stats { gap: 24px; }
  .hero-stats strong { font-size: 1.5rem; }
  .price { font-size: 2.6rem; }
  .wa-float { width: 56px; height: 56px; }
  .wa-float svg { width: 28px; height: 28px; }
}
