/* =========================================================
   NOVIDADEKIDS — Landing Page (Varejo)
   Direção: Playful Moderno — paleta da logomarca
   Azul · Vermelho · Amarelo · Marinho, sobre base clara
   ========================================================= */

:root {
  /* Paleta da logomarca */
  --blue: #21A9E1;
  --blue-dark: #1690C4;
  --red: #EF3E36;
  --red-dark: #D82E27;
  --yellow: #FDC521;
  --yellow-dark: #F0B000;
  --navy: #17265E;       /* títulos, texto forte, rodapé */
  --navy-2: #223472;

  /* Base clara */
  --white: #FFFFFF;
  --sky-1: #F5FAFE;      /* seções alternadas */
  --sky-2: #EAF5FC;
  --cloud: #DCEBF6;      /* bordas suaves */
  --cloud-soft: #EEF6FB;

  /* Texto */
  --ink: #17265E;        /* headings */
  --body: #4A5674;       /* corpo */
  --muted: #7A85A0;

  /* Semânticos */
  --wa: #25D366;
  --wa-dark: #1EB855;

  /* Sistema */
  --radius: 24px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(23,38,94,.06);
  --shadow: 0 12px 30px rgba(23,38,94,.10);
  --shadow-lg: 0 24px 60px rgba(23,38,94,.16);
  --shadow-blue: 0 10px 24px rgba(33,169,225,.32);
  --container: 1160px;
  --space: clamp(16px, 4vw, 32px);
  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -.01em; color: var(--ink); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--space); }
.section { padding: clamp(56px, 9vw, 104px) 0; position: relative; }
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--blue-dark); margin-bottom: 12px;
}
.section-title { font-size: clamp(1.9rem, 4.8vw, 3rem); margin-bottom: 14px; font-weight: 700; }
.section-lead { color: var(--body); font-size: 1.1rem; max-width: 58ch; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: var(--radius-pill); font-family: var(--font-display); font-weight: 600;
  font-size: 1.02rem; transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  min-height: 54px; text-align: center;
}
.btn svg { width: 21px; height: 21px; flex-shrink: 0; }
.btn:active { transform: scale(.97); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37,211,102,.42); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-yellow { background: var(--yellow); color: var(--navy); box-shadow: 0 8px 20px rgba(253,197,33,.4); }
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.btn-ghost { background: var(--white); color: var(--navy); border: 2px solid var(--cloud); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-dark); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; min-height: 60px; }
.btn-block { width: 100%; }

/* ---------- Announcement bar ---------- */
.topbar {
  background: var(--navy); color: #fff; font-family: var(--font-display); font-size: .92rem; font-weight: 500;
  text-align: center; padding: 10px 16px; position: relative; z-index: 60;
}
.topbar a { color: var(--yellow); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.topbar__msg { display: none; }
.topbar__msg.is-active { display: inline; animation: fadeIn .5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-3px); } to { opacity: 1; transform: none; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9);
  backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--cloud-soft);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__logo { height: 46px; width: auto; }
.brand__word { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; line-height: 1; letter-spacing: -.02em; }
.brand__word .n { color: var(--blue); }
.brand__word .k { color: var(--navy); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-family: var(--font-display); font-weight: 500; font-size: 1rem; color: var(--navy); transition: color .15s; }
.nav a:hover { color: var(--blue); }
.header__cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; color: var(--navy); }
.nav-toggle svg { width: 27px; height: 27px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(36px, 6vw, 76px) 0 clamp(48px, 8vw, 92px); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(46% 46% at 88% 8%, rgba(253,197,33,.20), transparent 62%),
    radial-gradient(48% 52% at 6% 92%, rgba(33,169,225,.18), transparent 62%),
    radial-gradient(40% 40% at 100% 100%, rgba(239,62,54,.10), transparent 60%);
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 2px solid var(--cloud);
  color: var(--navy); padding: 8px 16px; border-radius: var(--radius-pill); font-family: var(--font-display); font-size: .88rem; font-weight: 500;
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero__badge svg { width: 17px; height: 17px; color: var(--red); }
.hero h1 { font-size: clamp(2.2rem, 5.6vw, 3.7rem); margin-bottom: 20px; font-weight: 700; }
.hero h1 .hl { color: var(--blue); position: relative; white-space: nowrap; }
.hero h1 .hl2 { color: var(--red); }
.hero__lead { font-size: clamp(1.08rem, 2.4vw, 1.28rem); color: var(--body); max-width: 48ch; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 20px; color: var(--navy); font-family: var(--font-display); font-size: .94rem; font-weight: 500; }
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust svg { width: 20px; height: 20px; color: var(--wa); }

/* Hero media: cena-assinatura do sol da marca */
.hero__media { position: relative; }
.sun-scene {
  position: relative; aspect-ratio: 1 / 1; width: 100%; max-width: 480px; margin: 0 auto;
  border-radius: 36px; overflow: hidden; border: 2px solid var(--cloud);
  background: linear-gradient(180deg, #E7F4FD 0%, #F2FAFF 42%, #FEF4D4 100%);
  box-shadow: var(--shadow-lg);
}
.sun { position: absolute; left: 50%; top: 48%; width: 76%; transform: translate(-50%,-50%); }
.sun__rays-rot { transform-origin: 200px 200px; animation: sunSpin 44s linear infinite; }
.sun__body { transform-origin: 200px 200px; animation: sunBob 5s ease-in-out infinite; }
.sun__eyes { transition: transform .18s ease-out; will-change: transform; }
@keyframes sunSpin { to { transform: rotate(360deg); } }
@keyframes sunBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.cloud { position: absolute; background: #fff; border-radius: 100px; box-shadow: 0 10px 22px rgba(23,38,94,.09); opacity: .96; }
.cloud::before, .cloud::after { content: ''; position: absolute; background: #fff; border-radius: 50%; }
.cloud--a { width: 96px; height: 30px; top: 20%; left: -10%; animation: drift 26s linear infinite; }
.cloud--a::before { width: 42px; height: 42px; left: 14px; top: -20px; }
.cloud--a::after { width: 56px; height: 56px; right: 12px; top: -30px; }
.cloud--b { width: 74px; height: 24px; top: 66%; right: -12%; animation: driftBack 32s linear infinite; opacity: .9; }
.cloud--b::before { width: 34px; height: 34px; left: 12px; top: -16px; }
.cloud--b::after { width: 44px; height: 44px; right: 10px; top: -24px; }
.cloud--c { width: 58px; height: 20px; top: 82%; left: 12%; animation: drift 38s linear infinite; opacity: .85; }
.cloud--c::before { width: 26px; height: 26px; left: 10px; top: -12px; }
.cloud--c::after { width: 34px; height: 34px; right: 8px; top: -18px; }
@keyframes drift { from { transform: translateX(-30px); } to { transform: translateX(560px); } }
@keyframes driftBack { from { transform: translateX(60px); } to { transform: translateX(-520px); } }

.hero__floating {
  position: absolute; right: -8px; bottom: -26px; background: var(--white); border-radius: 18px;
  box-shadow: var(--shadow); padding: 13px 17px; display: flex; align-items: center; gap: 12px; max-width: 250px; border: 1px solid var(--cloud-soft);
}
.hero__floating .ic { width: 40px; height: 40px; border-radius: 12px; background: rgba(37,211,102,.14); display: grid; place-items: center; flex-shrink: 0; }
.hero__floating .ic svg { width: 22px; height: 22px; color: var(--wa-dark); }
.hero__floating b { font-size: .92rem; font-family: var(--font-display); color: var(--navy); }
.hero__floating small { display: block; color: var(--body); font-size: .8rem; line-height: 1.3; }

/* ---------- Faixa de selos ---------- */
.strip { background: var(--navy); color: #fff; }
.strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 24px 0; }
.strip__item { display: flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-display); font-weight: 500; font-size: .96rem; text-align: center; }
.strip__item svg { width: 24px; height: 24px; flex-shrink: 0; }
.strip__item:nth-child(1) svg { color: var(--yellow); }
.strip__item:nth-child(2) svg { color: var(--blue); }
.strip__item:nth-child(3) svg { color: var(--red); }
.strip__item:nth-child(4) svg { color: var(--yellow); }

/* ---------- Comprar por idade ---------- */
.ages { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 40px; }
.age-card {
  background: var(--white); border: 2px solid var(--cloud); border-radius: var(--radius);
  padding: 24px 14px; text-align: center; transition: transform .16s, box-shadow .16s, border-color .16s; box-shadow: var(--shadow-sm);
}
.age-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.age-card__ic { width: 62px; height: 62px; margin: 0 auto 14px; border-radius: 18px; display: grid; place-items: center; }
.age-card__ic svg { width: 32px; height: 32px; color: #fff; }
.age-card b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--navy); }
.age-card small { color: var(--muted); font-size: .84rem; font-weight: 600; }
.age-card:nth-child(6n+1) .age-card__ic { background: var(--blue); } .age-card:nth-child(6n+1):hover { border-color: var(--blue); }
.age-card:nth-child(6n+2) .age-card__ic { background: var(--red); } .age-card:nth-child(6n+2):hover { border-color: var(--red); }
.age-card:nth-child(6n+3) .age-card__ic { background: var(--yellow); } .age-card:nth-child(6n+3) .age-card__ic svg { color: var(--navy); } .age-card:nth-child(6n+3):hover { border-color: var(--yellow); }
.age-card:nth-child(6n+4) .age-card__ic { background: var(--navy); } .age-card:nth-child(6n+4):hover { border-color: var(--navy); }
.age-card:nth-child(6n+5) .age-card__ic { background: var(--blue); } .age-card:nth-child(6n+5):hover { border-color: var(--blue); }
.age-card:nth-child(6n+6) .age-card__ic { background: var(--red); } .age-card:nth-child(6n+6):hover { border-color: var(--red); }

/* ---------- Novidades (grade) ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.photo { position: relative; border-radius: var(--radius); background: var(--sky-2); border: 2px solid var(--cloud); overflow: hidden; display: grid; place-items: center; text-align: center; }
.gallery .photo { aspect-ratio: 3/4; }
.photo__ph { color: var(--muted); padding: 20px; }
.photo__ph svg { width: 44px; height: 44px; color: var(--blue); opacity: .5; margin: 0 auto 10px; }
.photo__ph b { display: block; color: var(--navy); font-family: var(--font-display); font-weight: 500; font-size: .92rem; }
.photo__ph small { font-size: .82rem; }
.gallery .tag { position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff; font-family: var(--font-display); font-size: .74rem; font-weight: 600; padding: 5px 12px; border-radius: var(--radius-pill); z-index: 2; }
.gallery__cta { margin-top: 34px; text-align: center; }

/* ---------- Vitrine de produtos ---------- */
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.prod { display: flex; flex-direction: column; text-align: left; background: var(--white); border: 2px solid var(--cloud); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .16s, box-shadow .16s, border-color .16s; padding: 0; }
.prod:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blue); }
.prod__media { position: relative; display: block; aspect-ratio: 3/4; background: var(--sky-2); overflow: hidden; }
.prod__media img { width: 100%; height: 100%; object-fit: cover; }
/* Ken Burns: zoom/pan lento e sutil na capa (pausa no hover) */
.prod__media img:not(.prod__hover) { animation: kenburns 16s ease-in-out infinite alternate; transform-origin: 50% 40%; }
.prod:hover .prod__media img:not(.prod__hover) { animation-play-state: paused; }
.prod:nth-child(2n) .prod__media img:not(.prod__hover) { animation-delay: -4s; }
.prod:nth-child(3n) .prod__media img:not(.prod__hover) { animation-delay: -8s; }
.prod:nth-child(4n) .prod__media img:not(.prod__hover) { animation-delay: -12s; }
@keyframes kenburns { from { transform: scale(1) translateY(0); } to { transform: scale(1.07) translateY(-1.6%); } }
.prod__hover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s ease; z-index: 1; }
.prod:hover .prod__hover, .prod:focus-visible .prod__hover { opacity: 1; }
.prod__count { position: absolute; top: 10px; right: 10px; background: rgba(23,38,94,.82); color: #fff; font-family: var(--font-display); font-weight: 500; font-size: .72rem; padding: 4px 10px; border-radius: var(--radius-pill); }
.prod__name { display: block; padding: 14px 16px 16px; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--navy); line-height: 1.2; }
.prod__name small { display: block; margin-top: 3px; font-family: var(--font-body); font-weight: 600; font-size: .82rem; color: var(--muted); }

/* ---------- Lightbox ---------- */
.lb { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 16px; }
.lb[hidden] { display: none; }
.lb__backdrop { position: absolute; inset: 0; background: rgba(23,38,94,.62); backdrop-filter: blur(3px); animation: fadeIn .2s ease; }
.lb__panel { position: relative; z-index: 1; width: min(560px, 100%); max-height: 92vh; overflow: auto; background: var(--white); border-radius: 22px; box-shadow: var(--shadow-lg); animation: lbIn .22s ease; }
@keyframes lbIn { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.lb__close { position: absolute; top: 12px; right: 12px; z-index: 3; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--navy); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.lb__close:hover { background: #fff; color: var(--red); }
.lb__close svg { width: 22px; height: 22px; }
.lb__stage { position: relative; background: var(--sky-2); }
.lb__img { width: 100%; max-height: 62vh; object-fit: contain; display: block; }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--navy); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.lb__nav:hover { background: #fff; color: var(--blue); }
.lb__nav svg { width: 24px; height: 24px; }
.lb__prev { left: 12px; } .lb__next { right: 12px; }
.lb__nav[disabled] { opacity: 0; pointer-events: none; }
.lb__thumbs { display: flex; gap: 8px; padding: 12px 16px 0; flex-wrap: wrap; }
.lb__thumbs img { width: 54px; height: 54px; object-fit: cover; border-radius: 10px; border: 2px solid transparent; cursor: pointer; opacity: .7; transition: opacity .15s, border-color .15s; }
.lb__thumbs img.is-active { opacity: 1; border-color: var(--blue); }
.lb__foot { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.lb__title { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--navy); }
.lb__foot .btn-wa { width: 100%; }
body.lb-open { overflow: hidden; }

/* ---------- Diferenciais ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.feature { background: var(--white); border: 2px solid var(--cloud); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .16s, box-shadow .16s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__ic { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 18px; }
.feature__ic svg { width: 28px; height: 28px; color: #fff; }
.feature:nth-child(1) .feature__ic { background: var(--blue); }
.feature:nth-child(2) .feature__ic { background: var(--yellow); }
.feature:nth-child(2) .feature__ic svg { color: var(--navy); }
.feature:nth-child(3) .feature__ic { background: var(--red); }
.feature h3 { font-size: 1.28rem; margin-bottom: 8px; font-weight: 600; }
.feature p { color: var(--body); font-size: 1rem; }

/* ---------- Prova social ---------- */
.social { background: var(--sky-1); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 50px; }
.stat { text-align: center; }
.stat b { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.1rem, 5vw, 2.9rem); line-height: 1; }
.stat:nth-child(1) b { color: var(--blue); }
.stat:nth-child(2) b { color: var(--red); }
.stat:nth-child(3) b { color: var(--yellow-dark); }
.stat:nth-child(4) b { color: var(--navy); }
.stat small { color: var(--body); font-family: var(--font-display); font-weight: 500; font-size: .92rem; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: var(--white); border: 2px solid var(--cloud); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.review__stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review__stars svg { width: 19px; height: 19px; color: var(--yellow); }
.review p { font-size: 1.02rem; margin-bottom: 16px; color: var(--body); }
.review__who { font-family: var(--font-display); font-weight: 600; font-size: .94rem; color: var(--navy); }
.review__who small { display: block; color: var(--muted); font-weight: 600; font-family: var(--font-body); }

/* ---------- Localização + Formulário ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.info-list { list-style: none; display: grid; gap: 20px; margin: 28px 0; }
.info-list li { display: flex; gap: 15px; align-items: flex-start; }
.info-list .ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; flex-shrink: 0; }
.info-list .ic svg { width: 23px; height: 23px; color: #fff; }
.info-list li:nth-child(1) .ic { background: var(--blue); }
.info-list li:nth-child(2) .ic { background: var(--wa); }
.info-list li:nth-child(3) .ic { background: var(--red); }
.info-list b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--navy); }
.info-list span { color: var(--body); font-size: .98rem; }
.map-embed { border: 0; width: 100%; height: 260px; border-radius: var(--radius); margin-top: 10px; box-shadow: var(--shadow-sm); border: 2px solid var(--cloud); }

.form-card { background: var(--white); border: 2px solid var(--cloud); border-radius: var(--radius); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow); }
.form-card h3 { font-size: 1.6rem; margin-bottom: 6px; font-weight: 600; }
.form-card > p { color: var(--body); margin-bottom: 22px; font-size: .98rem; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-display); font-weight: 500; font-size: .92rem; margin-bottom: 6px; color: var(--navy); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 2px solid var(--cloud); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--navy); background: var(--sky-1); transition: border-color .15s, box-shadow .15s, background .15s; min-height: 52px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(33,169,225,.16); background: #fff; }
.field textarea { min-height: 96px; resize: vertical; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 8px 0 18px; font-size: .86rem; color: var(--body); }
.consent input { width: 19px; height: 19px; margin-top: 3px; flex-shrink: 0; accent-color: var(--blue); }
.consent a { color: var(--blue-dark); font-weight: 700; text-decoration: underline; }
.form-note { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 12px; }
.form-ok { display: none; text-align: center; padding: 20px; background: #EAF7EF; border: 2px solid #B9E6CA; border-radius: var(--radius-sm); color: #1B7A44; font-family: var(--font-display); font-weight: 500; margin-top: 14px; }

/* ---------- Rodapé ---------- */
.footer { background: var(--navy); color: #C6CFEA; padding: 60px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__brand img { height: 52px; width: auto; }
.footer__brand .brand__word { font-size: 1.5rem; }
.footer__brand .brand__word .n { color: #fff; }
.footer__brand .brand__word .k { color: var(--yellow); }
.footer p { font-size: .96rem; max-width: 40ch; color: #AEB8DA; }
.footer h4 { color: #fff; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 16px; font-weight: 600; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer a:hover { color: var(--yellow); }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 44px; height: 44px; border-radius: 14px; background: rgba(255,255,255,.09); display: grid; place-items: center; transition: background .15s, transform .15s; }
.footer__social a:hover { background: var(--blue); transform: translateY(-2px); }
.footer__social svg { width: 21px; height: 21px; color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .85rem; color: #94A0C6; }
.footer__bottom a { text-decoration: underline; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 80; width: 62px; height: 62px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .16s; animation: waPulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 33px; height: 33px; }
@keyframes waPulse { 0%,100% { box-shadow: 0 10px 26px rgba(37,211,102,.45); } 50% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 13px rgba(37,211,102,.12); } }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 440px; margin: 0 auto; width: 100%; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .ages { grid-template-columns: repeat(3, 1fr); }
  .gallery, .features, .reviews { grid-template-columns: repeat(2, 1fr); }
  .strip__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .header__cta .btn span { display: none; }
  .header__cta .btn { padding: 13px; min-height: 50px; }
  .brand__word { font-size: 1.2rem; }
  .brand__logo { height: 40px; }
  .ages, .gallery, .features, .reviews, .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__floating { right: 6px; }
  .nav.is-open { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; background: var(--white); padding: 20px var(--space); gap: 18px; border-bottom: 1px solid var(--cloud); box-shadow: var(--shadow); }
}
@media (max-width: 400px) {
  .ages { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
