/* ============================================================
   Drª Milena Catani — Pediatria e Neonatologia
   Paleta extraída do logo (turquesa + rosa coral)
   ============================================================ */

:root {
  /* Primária — turquesa do logo */
  --primary: #4FBFC4;
  --primary-dark: #2E9AA0;
  --primary-light: #7DD3D7;
  --primary-soft: #E6F6F7;

  /* Accent — rosa do logo */
  --accent: #F5A6B8;
  --accent-dark: #E58699;
  --accent-soft: #FBE6EB;

  /* Warm — pêssego (calor, acolhimento) */
  --peach: #FFD4C2;
  --peach-soft: #FFF1EA;

  /* Neutros */
  --ink: #2B2B2B;
  --graphite: #4A4A4A;
  --grey: #6F7378;
  --grey-light: #DDE2E5;
  --grey-softer: #EEF1F3;
  --off: #FAF7F4;
  --white: #FFFFFF;

  /* WhatsApp (CTAs) */
  --wa: #25D366;
  --wa-hover: #1EBE5A;
  --wa-dark: #128C7E;

  /* Estrelas */
  --star: #F5B200;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.04);
  --shadow: 0 8px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(79,191,196,.18);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--graphite);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4 { margin: 0; line-height: 1.2; color: var(--ink); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; border: 0; background: none; cursor: pointer; }

/* ============================================================
   LAYOUT BÁSICO
   ============================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--soft { background: var(--off); }
.section--peach { background: var(--peach-soft); }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 14px;
}
.eyebrow--accent { color: var(--accent-dark); }

.section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.section__sub {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--grey);
  max-width: 620px;
  margin: 0 auto;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
  text-align: center;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--whatsapp {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(37, 211, 102, .28);
}
.btn--whatsapp:hover {
  background: var(--wa-hover);
  box-shadow: 0 10px 26px rgba(37, 211, 102, .36);
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(79, 191, 196, .28);
}
.btn--primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 10px 26px rgba(46, 154, 160, .36);
}

.btn--outline {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--xl { padding: 20px 42px; font-size: 18px; }
.btn--block { width: 100%; }
.ico { width: 20px; height: 20px; flex-shrink: 0; }
.btn--lg .ico, .btn--xl .ico { width: 22px; height: 22px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(221, 226, 229, .6);
  transition: box-shadow .2s var(--ease);
}
.header.is-scrolled { box-shadow: 0 4px 16px rgba(0,0,0,.04); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  margin-right: 16px;
}
.nav__link {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--graphite);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav__link:hover { background: var(--primary-soft); color: var(--primary-dark); }

.header__cta { flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--off);
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 2px 0;
  border-radius: 2px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(48px, 7vw, 90px) 0 clamp(56px, 8vw, 100px);
  background:
    radial-gradient(900px 500px at 88% 0%, rgba(245, 166, 184, .22), transparent 60%),
    radial-gradient(700px 500px at 0% 30%, rgba(79, 191, 196, .14), transparent 65%),
    var(--white);
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.hero__content { max-width: 560px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(30px, 4.6vw, 50px);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 18px;
  color: var(--ink);
}
.hero__title em {
  font-style: normal;
  color: var(--primary-dark);
}

.hero__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--grey);
  margin-bottom: 28px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__credentials {
  font-size: 13px;
  color: var(--grey);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 18px;
}
.hero__credentials strong { color: var(--ink); font-weight: 700; }

.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  color: var(--graphite);
}
.stars { color: var(--star); letter-spacing: 2px; }

.hero__photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__photo img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.hero__photo::before {
  content: '';
  position: absolute;
  inset: -20px -10px -10px 30px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: var(--radius-lg);
  opacity: .14;
  z-index: -1;
}

/* Variante para usar o icone do logo (PNG transparente) no hero */
.hero__photo--icon img {
  max-width: 420px;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(79, 191, 196, .22));
}
.hero__photo--icon::before {
  inset: 8% 4% 8% 4%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(245, 166, 184, .22), rgba(125, 211, 215, .18) 60%, transparent 80%);
  opacity: 1;
  filter: blur(20px);
}

/* ============================================================
   FAIXA DE CREDIBILIDADE
   ============================================================ */
.credibility {
  background: var(--off);
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
  padding: 24px 0;
}
.credibility__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 18px 28px;
}
.credibility__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--graphite);
}
.credibility__item svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--primary); }

/* ============================================================
   SOBRE A DRA. (foto + texto)
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.about__photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.about__text h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.about__text p {
  color: var(--graphite);
  font-size: 16px;
  margin-bottom: 16px;
}
.about__text p strong { color: var(--ink); }

.quote {
  margin-top: 28px;
  padding: 22px 26px;
  border-left: 4px solid var(--accent);
  background: var(--peach-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--graphite);
  font-size: 15.5px;
}
.quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: var(--grey);
  letter-spacing: .5px;
}

/* ============================================================
   PILARES (Como é a consulta)
   ============================================================ */
.pillars__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pillar {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-light);
}
.pillar__ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pillar__ico svg { width: 26px; height: 26px; }
.pillar__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.pillar__desc { color: var(--grey); font-size: 15px; }

.pillars__photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* ============================================================
   PRÉ-NATAL
   ============================================================ */
.pre-natal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.pre-natal__photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.pre-natal__text h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.pre-natal__text p { margin-bottom: 14px; color: var(--graphite); }
.pre-natal__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  margin: 18px 0 24px;
}
.pre-natal__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--graphite);
}
.pre-natal__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%232E9AA0' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/10px 10px no-repeat;
}

/* ============================================================
   TAMBÉM SOU MÃE
   ============================================================ */
.mom__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.mom__photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.mom__text h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.mom__text p { color: var(--graphite); font-size: 16.5px; margin-bottom: 14px; }
.mom__signature {
  display: inline-block;
  margin-top: 12px;
  font-style: italic;
  font-weight: 700;
  color: var(--primary-dark);
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.testimonial::before {
  content: '“';
  position: absolute;
  top: 6px;
  right: 18px;
  font-size: 64px;
  line-height: 1;
  color: var(--accent-soft);
  font-family: Georgia, serif;
  font-weight: 700;
}
.testimonial__stars {
  color: var(--star);
  letter-spacing: 2px;
  font-size: 14px;
}
.testimonial__text {
  font-size: 14.5px;
  color: var(--graphite);
  line-height: 1.65;
  flex: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--grey-softer);
}
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 700; font-size: 14px; color: var(--ink); }
.testimonial__meta { font-size: 12px; color: var(--grey); }

.testimonials__cta {
  text-align: center;
  margin-top: 36px;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 15px;
  transition: gap .2s var(--ease);
}
.link-arrow:hover { gap: 10px; }

/* ============================================================
   UNIDADES (seletor — núcleo de conversão)
   ============================================================ */
.units__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.unit {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.unit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.unit__map {
  height: 180px;
  background:
    radial-gradient(circle at 50% 50%, var(--primary-soft) 0%, var(--peach-soft) 80%);
  position: relative;
  overflow: hidden;
}
.unit__map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,191,196,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,191,196,.12) 1px, transparent 1px);
  background-size: 24px 24px;
}
.unit__pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  rotate: -45deg;
  box-shadow: 0 6px 16px rgba(245, 166, 184, .5);
  display: grid;
  place-items: center;
}
.unit__pin::after {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  rotate: 45deg;
}

.unit__body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.unit__name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ink);
}
.unit__addr {
  font-size: 15px;
  color: var(--graphite);
  line-height: 1.55;
}
.unit__addr strong { color: var(--ink); }
.unit__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13.5px;
  color: var(--grey);
}
.unit__meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.unit__meta-row svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--primary); }
.unit__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.unit__tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
}
.unit__cta {
  margin-top: auto;
  padding-top: 8px;
}

/* ============================================================
   FAQ (acordeão)
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq__item:hover { border-color: var(--primary-light); }
.faq__item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--primary-dark);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin-top: 12px;
  color: var(--grey);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background:
    radial-gradient(700px 400px at 12% 20%, rgba(125, 211, 215, .35), transparent 60%),
    radial-gradient(600px 400px at 90% 80%, rgba(245, 166, 184, .35), transparent 60%),
    linear-gradient(135deg, var(--primary-dark) 0%, #1F6F73 100%);
  color: var(--white);
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
}
.cta-final__inner { max-width: 720px; margin: 0 auto; }
.cta-final h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-final p {
  font-size: clamp(16px, 1.8vw, 18px);
  color: rgba(255, 255, 255, .9);
  margin-bottom: 32px;
}
.cta-final__hint {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .8);
  padding: 56px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__logo {
  height: 56px;
  width: auto;
  background: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius);
  align-self: flex-start;
}
.footer__about {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
}
.footer__crm {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
}
.footer__col-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a {
  font-size: 14px;
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--primary-light); }
.footer__copy {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

/* ============================================================
   FLOAT WHATSAPP + POPOVER
   ============================================================ */
.float-wrap {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
}

.float-wa {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .42);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  animation: pulse 2.6s infinite;
  cursor: pointer;
  border: 0;
}
.float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .55);
}
.float-wa svg { width: 30px; height: 30px; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, .42), 0 0 0 0 rgba(37, 211, 102, .42); }
  50%      { box-shadow: 0 8px 24px rgba(37, 211, 102, .42), 0 0 0 14px rgba(37, 211, 102, 0); }
}

.float-popover {
  position: absolute;
  bottom: 76px;
  right: 0;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  padding: 14px;
  width: 260px;
  display: none;
  flex-direction: column;
  gap: 8px;
  animation: popoverIn .25s var(--ease);
}
.float-wrap.is-open .float-popover { display: flex; }
.float-wrap.is-open .float-wa { animation: none; }

.float-popover__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  padding: 0 4px 6px;
}
.float-popover__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--off);
  font-size: 14px;
  font-weight: 700;
  color: var(--graphite);
  text-align: left;
  transition: background .2s var(--ease), transform .2s var(--ease);
  width: 100%;
}
.float-popover__btn:hover {
  background: var(--primary-soft);
  color: var(--primary-dark);
}
.float-popover__btn svg { width: 22px; height: 22px; color: var(--wa); flex-shrink: 0; }
.float-popover__btn-meta { display: block; font-size: 11.5px; color: var(--grey); font-weight: 600; margin-top: 2px; }

@keyframes popoverIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   COOKIE BANNER (LGPD)
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 22px;
  left: 22px;
  max-width: 380px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
  z-index: 89;
  font-size: 13.5px;
  color: var(--graphite);
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin-bottom: 12px; line-height: 1.55; }
.cookie-banner a { color: var(--primary-dark); font-weight: 700; }
.cookie-banner__btn {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
}
.cookie-banner__btn:hover { background: var(--primary-dark); }

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-wa { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1020px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header__inner { gap: 12px; }
  .header__cta { display: none; }

  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__photo { order: -1; max-width: 380px; margin: 0 auto; }

  .about__grid,
  .pillars__grid,
  .pre-natal__grid,
  .mom__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about__photo,
  .pre-natal__photo,
  .mom__photo,
  .pillars__photo { max-width: 380px; margin: 0 auto; }

  .testimonials__grid { grid-template-columns: 1fr 1fr; }

  .units__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }

  /* Mobile nav overlay */
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow);
    gap: 4px;
    margin: 0;
    z-index: 99;
  }
  .nav.is-open .nav__link { width: 100%; padding: 12px 16px; border-radius: 10px; }
}

@media (max-width: 720px) {
  .testimonials__grid { grid-template-columns: 1fr; }
  .pre-natal__list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero__title { font-size: 30px; }
  .hero__sub { font-size: 17px; }
  .hero__cta .btn { width: 100%; }

  .credibility__inner { flex-direction: column; gap: 12px; align-items: flex-start; }

  .float-wrap { bottom: 16px; right: 16px; }
  .float-wa { width: 56px; height: 56px; }
  .float-wa svg { width: 28px; height: 28px; }
  .float-popover { width: calc(100vw - 32px); right: 0; }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .footer__copy { justify-content: center; text-align: center; flex-direction: column; }
}

@media (max-width: 380px) {
  .hero__title { font-size: 26px; }
  .section__title { font-size: 24px; }
}
