/* Renovando Mentes — identidade editorial azul */

:root {
  --ink: #040d1a;
  --navy: #0a1f44;
  --blue: #1a56db;
  --blue-bright: #3b82f6;
  --cyan: #06b6d4;
  --ice: #e8f2ff;
  --mist: #f4f8ff;
  --white: #ffffff;
  --muted: #5c6f8a;
  --border: #c8daf5;
  --whatsapp: #25d366;
  --whatsapp-h: #128c7e;
  --font: 'Inter', system-ui, sans-serif;
  --display: 'Poppins', system-ui, sans-serif;
  --wrap: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(10, 31, 68, 0.1);
  --shadow-lg: 0 24px 64px rgba(10, 31, 68, 0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--mist);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: min(var(--wrap), 100% - 3rem);
  margin-inline: auto;
}

/* ── Header ── */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 8px 1.25rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: transform .35s ease;
}
.header.is-hidden { transform: translateY(-110%); }
.header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.brand__logo {
  height: 52px;
  width: auto;
  max-width: min(260px, 48vw);
  object-fit: contain;
  display: block;
}
.header__nav { display: flex; align-items: center; gap: .5rem; }
.header__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--border);
  transition: background .2s;
}
.header__link:hover { background: var(--ice); }
.header__cta {
  padding: .55rem 1.1rem;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.header__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }

/* ── Hero split editorial ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__slash {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, var(--navy) 52%, transparent 52.2%);
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(118deg, black 40%, transparent 65%);
}
.hero__layout {
  position: relative;
  z-index: 1;
  width: min(var(--wrap), 100% - 3rem);
  margin: 0 auto;
  padding: 5.25rem 0 4rem;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}
.hero__copy { color: var(--white); padding-right: 1rem; }
.hero__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
.hero__title em {
  font-style: normal;
  color: var(--blue-bright);
  display: block;
}
.hero__lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin-bottom: 1.75rem;
}
.hero__trust { display: flex; flex-wrap: wrap; gap: .6rem; }
.trust-pill {
  padding: .4rem .9rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.06);
}

/* Form */
.hero__aside { position: relative; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-card__badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 4px;
  margin-bottom: .6rem;
}
.form-card h2 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}
.form-card__desc {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.lead-form { display: flex; flex-direction: column; gap: .65rem; }
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  font-size: .92rem;
  background: var(--mist);
  transition: border-color .2s, box-shadow .2s;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,.15);
  background: var(--white);
}
.btn-submit {
  width: 100%;
  padding: 1rem;
  margin-top: .25rem;
  border: none;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(26,86,219,.35);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(26,86,219,.45); }
.form-privacy { font-size: .72rem; color: var(--muted); text-align: center; margin-top: .75rem; }

/* ── Marquee ── */
.marquee {
  background: var(--blue);
  color: var(--white);
  padding: .85rem 0;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.12);
}
.marquee__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Seções comuns ── */
.section-eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .5rem;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.section-lead {
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 2rem;
}

/* ── Quick FAQ tabs ── */
.quick-faq {
  padding: 5rem 0;
  background: var(--white);
}
.quick-faq__header { margin-bottom: 2.5rem; }
.faq-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.qf-card {
  background: var(--white);
  padding: 1.5rem;
  transition: background .25s, transform .25s;
}
.qf-card:hover { background: var(--ice); transform: translateY(-4px); }
.qf-card__num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ice);
  -webkit-text-stroke: 1px var(--blue);
  line-height: 1;
  margin-bottom: .75rem;
}
.qf-card h3 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.qf-card p { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* ── Bento dores ── */
.pain { padding: 5rem 0; }
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 1rem;
}
.bento__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  transition: transform .3s, box-shadow .3s;
}
.bento__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bento__item--lg { grid-column: span 2; grid-row: span 2; padding: 2rem; }
.bento__item--accent {
  background: linear-gradient(145deg, var(--navy), var(--blue));
  border-color: transparent;
  color: var(--white);
}
.bento__item--accent h3,
.bento__item--accent p { color: inherit; }
.bento__item--accent p { opacity: .85; }
.pain-card__emoji { font-size: 1.5rem; margin-bottom: .6rem; display: block; }
.pain-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}
.pain-card p { font-size: .85rem; color: var(--muted); }
.pain__cta { text-align: center; margin-top: 2.5rem; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .95rem 1.85rem;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,.45); }

/* ── Timeline jornada ── */
.journey {
  padding: 5rem 0;
  background: var(--ink);
  color: var(--white);
}
.journey .section-eyebrow { color: var(--cyan); }
.journey .section-title { color: var(--white); }
.journey .section-lead { color: rgba(255,255,255,.65); }
.journey__inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.timeline {
  list-style: none;
  border-left: 2px solid rgba(255,255,255,.15);
  padding-left: 2rem;
}
.timeline__item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline__item:last-child { padding-bottom: 0; }
.journey-step__num {
  position: absolute;
  left: -2.65rem;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--blue);
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 800;
}
.journey-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
.journey-step p { font-size: .85rem; color: rgba(255,255,255,.65); }

/* ── Mapa imersivo ── */
.coverage { padding: 0; }
.coverage__map--full {
  position: relative;
  min-height: 480px;
}
.coverage__leaflet {
  width: 100%;
  height: 480px;
  background: var(--ice);
}
.coverage__overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  max-width: 380px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.coverage__overlay .section-title { font-size: 1.5rem; }
.coverage__overlay .section-lead { margin-bottom: 1rem; font-size: .9rem; }
.coverage__overlay .btn-primary { font-size: .88rem; padding: .75rem 1.25rem; }

/* Map pins — formato gota (SVG) */
.leaflet-marker-icon.map-pin {
  background: transparent !important;
  border: none !important;
}
.map-pin__svg {
  display: block;
  filter: drop-shadow(0 2px 6px rgba(26, 86, 219, 0.4));
}

/* ── Unidades cinema carousel ── */
.unidades { padding: 5rem 0; background: var(--white); }
.unidades__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: .5rem;
}
.unidades__counter {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
}
.unidades-skeleton {
  text-align: center;
  padding: 3rem;
  color: var(--muted);
}
.unidades-skeleton__card {
  height: 280px;
  background: linear-gradient(90deg, var(--ice) 25%, var(--mist) 50%, var(--ice) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}
@keyframes shimmer { to { background-position: -200% 0; } }

.lp-carousel { margin-top: 1.5rem; }
.lp-carousel__viewport {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: .5rem;
}
.lp-carousel__viewport::-webkit-scrollbar { display: none; }
.lp-carousel__slide {
  flex: 0 0 min(85%, 720px);
  scroll-snap-align: start;
}
.lp-carousel--cinema .lp-carousel__slide { flex: 0 0 100%; }
.unidade-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--navy);
}
.unidade-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
  transition: transform .5s;
}
.unidade-card:hover img { transform: scale(1.04); }
.unidade-card__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--white);
  color: var(--navy);
  padding: .45rem .75rem;
  border-radius: 8px;
  line-height: 1.2;
  box-shadow: 0 4px 16px rgba(10, 31, 68, 0.12);
}
.unidade-card__city {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
}
.unidade-card__tipo {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 2px;
}
.lp-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.lp-carousel__arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.lp-carousel__arrow:hover:not(:disabled) { background: var(--ice); border-color: var(--blue); }
.lp-carousel__arrow:disabled { opacity: .35; cursor: default; }
.lp-carousel__dots { display: flex; gap: .4rem; }
.lp-carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.lp-carousel__dot--active { background: var(--blue); transform: scale(1.3); }
.unidades__statement {
  margin-top: 2rem;
  font-size: .95rem;
  color: var(--muted);
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

/* ── Steps ── */
.how { padding: 5rem 0; background: var(--mist); }
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.5rem;
  overflow: hidden;
}
.step-card__ghost {
  position: absolute;
  top: -.2rem;
  right: .5rem;
  font-family: var(--display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--ice);
  line-height: 1;
  pointer-events: none;
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
  position: relative;
}
.step-card p { font-size: .85rem; color: var(--muted); position: relative; }

/* ── Diferenciais ── */
.diff { padding: 5rem 0; background: var(--white); }
.diff__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.diff-card {
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.diff-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.diff-card__ring {
  width: 56px; height: 56px;
  margin: 0 auto .85rem;
  border-radius: 50%;
  background: var(--ice);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.diff-card h3 { font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.diff-card p { font-size: .8rem; color: var(--muted); }

/* ── Proof ── */
.proof {
  padding: 3.5rem 0;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  color: var(--white);
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.proof__num {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: .35rem;
}
.proof__label { font-size: .82rem; opacity: .8; }
.proof__block--live .proof__num { color: var(--cyan); }

/* ── Depoimentos ── */
.testimonials { padding: 5rem 0; background: var(--mist); }
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-top: 4px solid var(--blue);
}
.testimonial--offset { margin-top: 2rem; }
.testimonial__stars { color: #fbbf24; font-size: .85rem; margin-bottom: .75rem; }
.testimonial blockquote {
  font-size: .92rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial cite { font-size: .78rem; color: var(--muted); font-style: normal; }

/* ── FAQ ── */
.faq { padding: 5rem 0; background: var(--white); }
.faq__cols {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.faq__list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--blue); }
.faq-item summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--blue);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item__answer {
  padding: 0 1.15rem 1rem;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CTA ── */
.cta-final {
  padding: 5rem 0;
  background: var(--ink);
  color: var(--white);
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  margin-top: -2rem;
}
.cta-final__inner { text-align: center; }
.cta-final h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: .75rem;
}
.cta-final p { opacity: .75; margin-bottom: 2rem; }
.cta-final__btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-cta {
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s;
}
.btn-cta:hover { transform: translateY(-3px); }
.btn-cta--phone { background: var(--white); color: var(--navy); }
.btn-cta--whatsapp { background: var(--whatsapp); color: var(--white); box-shadow: 0 8px 24px rgba(37,211,102,.4); }

/* ── Footer ── */
.footer {
  padding: 3rem 1.5rem;
  background: var(--ink);
  color: rgba(255,255,255,.65);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
  margin: 0 auto 1rem;
  height: 80px;
  width: auto;
  max-width: min(320px, 85vw);
  object-fit: contain;
  display: block;
}
.footer__name {
  font-family: var(--display);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.footer p { font-size: .85rem; margin-bottom: .35rem; }
.footer a { color: var(--cyan); }
.footer__credit { margin-top: 1rem; font-size: .75rem; opacity: .5; }

/* ── Float actions ── */
.float-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
}
.float-phone {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.float-phone__label {
  background: var(--navy);
  color: var(--white);
  padding: .45rem .85rem;
  border-radius: 999px 0 0 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  margin-right: -4px;
}
.float-phone__btn {
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.float-phone__btn:hover { transform: scale(1.08); }
.whatsapp__float { display: flex; align-items: flex-end; }
.whatsapp__balloon {
  background: var(--white);
  padding: .65rem .9rem;
  border-radius: 16px 16px 4px 16px;
  box-shadow: var(--shadow-lg);
  margin-right: 10px;
  margin-bottom: 4px;
  font-size: .78rem;
  color: var(--muted);
  max-width: 168px;
  line-height: 1.35;
  border: 1px solid var(--border);
  transition: opacity .28s, transform .28s;
}
.whatsapp__balloon strong { display: block; color: var(--navy); font-size: .75rem; }
.whatsapp__dots { display: flex; gap: 4px; margin-top: 4px; }
.whatsapp__dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  animation: typing 1.4s ease infinite both;
}
.whatsapp__dots span:nth-child(1) { background: #ef4444; }
.whatsapp__dots span:nth-child(2) { background: #eab308; animation-delay: .2s; }
.whatsapp__dots span:nth-child(3) { background: #22c55e; animation-delay: .4s; }
@keyframes typing {
  0%,60%,100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-4px); opacity: 1; }
}
.whatsapp__btn {
  position: relative;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transition: transform .2s;
}
.whatsapp__btn:hover { transform: scale(1.08); }
.whatsapp__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: wpp-pulse 2s infinite;
  pointer-events: none;
}
@keyframes wpp-pulse {
  0% { transform: scale(1); opacity: .5; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}

/* ── Reveal ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee__track { animation: none; }
}
.reveal {
  opacity: 0;
  transition: opacity .65s ease var(--reveal-delay, 0s), transform .65s ease var(--reveal-delay, 0s);
}
.reveal--up { transform: translateY(28px); }
.reveal--left { transform: translateX(-24px); }
.reveal--right { transform: translateX(24px); }
.reveal--scale { transform: scale(.94); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__layout { grid-template-columns: 1fr; padding-top: 4.5rem; }
  .brand__logo { height: 44px; max-width: min(220px, 70vw); }
  .hero__slash { background: linear-gradient(180deg, var(--navy) 55%, var(--mist) 55%); }
  .hero__copy { color: var(--white); padding-right: 0; }
  .faq-tabs { grid-template-columns: repeat(2, 1fr); }
  .journey__inner { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__item--lg { grid-column: span 2; grid-row: span 1; }
  .steps-row { grid-template-columns: 1fr; }
  .diff__grid { grid-template-columns: repeat(2, 1fr); }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .testimonial--offset { margin-top: 0; }
  .faq__cols { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .faq-tabs { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento__item--lg { grid-column: span 1; }
  .diff__grid { grid-template-columns: 1fr; }
  .coverage__overlay { left: 1rem; right: 1rem; max-width: none; }
  .header__link span { display: none; }
}
