/* ============================================================
   SAÚDE MATER — style.css
   Paleta: Navy #1C1B4D / Dourado #E3A639 / Laranja #F2751E
   ============================================================ */
/* ============================================================
   FONTS (SELF-HOSTED LOCAL NUNITO WOFF2)
   ============================================================ */
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/nunito-v32-latin-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/nunito-v32-latin-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/nunito-v32-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/nunito-v32-latin-700.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/nunito-v32-latin-800.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/fonts/nunito-v32-latin-900.woff2") format("woff2");
}

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

:root {
  --navy: #1c1b4d;
  --navy-light: #272663;
  --gold: #e3a639;
  --orange: #f2751e;
  --orange-bright: #ff8a3d;
  --cream: #fbf7ef;
  --ink: #1c1b4d;
  --muted: #6b6b8c;
  --muted-on-navy: #b9b8de;
  --line: rgba(28, 27, 77, 0.12);
  --line-on-navy: rgba(255, 255, 255, 0.14);
  --white: #ffffff;
  --maxw: 1160px;
  --font: "Nunito", sans-serif;
  --nav-h: 88px;
}

/* Hero phone hint — linha abaixo dos CTAs */
.hero-phone-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted-on-navy);
  transition: color 0.2s ease;
  text-decoration: none;
}
.hero-phone-hint:hover { color: var(--white); }
.hero-phone-hint svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  flex-shrink: 0;
  transition: stroke 0.2s ease;
}
.hero-phone-hint:hover svg { stroke: var(--white); }
.hero-phone-hint strong {
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--orange);
  color: var(--white);
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img { max-width: 100%; display: block; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow--ink { color: var(--orange); }

.section-title {
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.25;
  max-width: 22ch;
  color: var(--ink);
}
.section-title--light { color: var(--white); }

.section-lede {
  margin-top: 1rem;
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 58ch;
}
.section-lede--light { color: var(--muted-on-navy); }

.section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  scroll-margin-top: calc(var(--nav-h) + 12px);
}
.section--navy { background: var(--navy); }

.fine-print {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}
.fine-print--light { color: var(--muted-on-navy); }

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(242, 117, 30, 0.28);
}
.btn-primary:hover { background: var(--orange-bright); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn-ghost {
  border: 2px solid var(--line-on-navy);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.75rem 1.4rem;
  border-radius: 100px;
  border: 2px solid var(--line-on-navy);
  color: var(--white);
  margin-top: 1.25rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-ghost-navy:hover { border-color: var(--gold); color: var(--gold); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  border-bottom: 1px solid var(--line);
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 247, 239, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}
.logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-block: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta-mobile { display: none; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  background: var(--navy);
  padding-top: calc(var(--nav-h) + clamp(2rem, 5vw, 3.5rem));
  padding-bottom: 0;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 360px);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-end;
}
.hero-text {
  max-width: 620px;
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
}
.headline {
  font-weight: 900;
  font-size: clamp(1.85rem, 3.5vw, 2.7rem);
  line-height: 1.18;
  color: var(--white);
  margin-top: 0.5rem;
  letter-spacing: -0.015em;
}
.headline-accent { color: var(--gold); }
.lede {
  margin-top: 1.1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-on-navy);
  max-width: 52ch;
}

/* Hero image column */
.hero-image-col {
  align-self: flex-end;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  flex-shrink: 0;
  margin-bottom: 0;
  line-height: 0;
}
.hero-chamada {
  width: 100%;
  max-width: 360px;
  height: auto;
  max-height: clamp(340px, 42vw, 470px);
  display: block;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 -6px 28px rgba(0, 0, 0, 0.35));
  vertical-align: bottom;
  margin-bottom: 0;
}

/* Headline longa (frase das famílias) */
.headline--long {
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
}

/* Botão Jak / WhatsApp no hero — Balão de Fala da Jak */
.hero-jak-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.45rem 0.65rem 1.1rem;
  background: #25d366;
  color: var(--white);
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 15px rgba(37, 211, 102, 0.15);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  z-index: 2;
}
/* Pontinha do balão apontando para a personagem Jak (à direita) */
.hero-jak-cta::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 10px;
  border-color: transparent transparent transparent #25d366;
  transition: border-color 0.2s ease;
}
.hero-jak-cta:hover {
  background: #22c05e;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.48), 0 0 20px rgba(37, 211, 102, 0.25);
}
.hero-jak-cta:hover::after {
  border-left-color: #22c05e;
}
.hero-jak-cta:active {
  transform: translateY(0);
}
/* Ícone do WhatsApp dentro do balão */
.hero-jak-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-jak-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
  flex-shrink: 0;
}
/* Conteúdo de texto em 2 linhas */
.hero-jak-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.15;
}
.hero-jak-bubble-sub {
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
  margin-bottom: 2px;
}
.hero-jak-bubble-main {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: -0.01em;
}


/* Hero social proof badge */
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.1rem 0.45rem 0.8rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--line-on-navy);
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.hero-social-label {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--white);
}

/* Hero facts bar */
.hero-facts {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 2rem;
  padding: 1.1rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-on-navy);
  border-radius: 14px;
  width: fit-content;
}
.hero-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding-inline: 1.5rem;
}
.hero-fact:first-child { padding-left: 0; }
.hero-fact:last-child { padding-right: 0; }
.hero-fact-value {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.hero-fact-label {
  font-size: 0.75rem;
  color: var(--muted-on-navy);
  font-weight: 600;
  white-space: nowrap;
}
.hero-fact-divider {
  width: 1px;
  height: 36px;
  background: var(--line-on-navy);
  flex-shrink: 0;
}

/* Hero price strip */
.hero-price-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.hero-price-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--line-on-navy);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 130px;
}
.hpb-label {
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--white);
}
.hpb-from {
  font-size: 0.76rem;
  color: var(--muted-on-navy);
  text-decoration: line-through;
}
.hpb-to {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.trust-row {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-on-navy);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--white);
}
.trust-chip svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  flex-shrink: 0;
}

/* ============ COMPARE ============ */
.compare-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.compare-card {
  border-radius: 20px;
  padding: 2rem 1.9rem;
  display: flex;
  flex-direction: column;
}
.compare-card--off { background: var(--white); border: 1px solid var(--line); }
.compare-card--on {
  background: var(--navy);
  border: 2px solid var(--gold);
  box-shadow: 0 16px 34px rgba(28, 27, 77, 0.18);
}
.compare-label { font-weight: 900; font-size: 0.95rem; letter-spacing: 0.04em; }
.compare-card--off .compare-label { color: var(--muted); }
.compare-card--on .compare-label { color: var(--gold); }
.compare-list { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.9rem; }
.compare-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.94rem; line-height: 1.5; }
.compare-card--off .compare-list li { color: var(--ink); }
.compare-card--on .compare-list li { color: var(--white); }
.compare-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.1rem;
}
.compare-icon svg { width: 12px; height: 12px; }
.compare-card--off .compare-icon { background: rgba(107,107,140,0.14); }
.compare-card--off .compare-icon svg { stroke: var(--muted); }
.compare-card--on .compare-icon { background: var(--gold); }
.compare-card--on .compare-icon svg { stroke: var(--navy); }

/* ============ PLANS GRID ============ */
.plans-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.plan-card {
  background: var(--navy-light);
  border: 1px solid var(--line-on-navy);
  border-radius: 20px;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.plan-card--featured {
  background: linear-gradient(145deg, #272663 0%, #1c1b4d 100%);
  border: 2px solid var(--gold);
  box-shadow: 0 12px 36px rgba(227, 166, 57, 0.22);
  position: relative;
}
.plan-card--featured::before {
  content: "Mais popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-badge {
  display: inline-block;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.plan-price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 0.15rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.plan-currency {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  padding-bottom: 0.35rem;
}
.plan-from-label {
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--muted-on-navy);
  letter-spacing: 0;
  padding-bottom: 0;
  display: block;
  margin-bottom: 0.4rem;
}
.plan-value {
  font-weight: 900;
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}
.plan-cents {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  padding-bottom: 0.4rem;
}
.plan-period {
  font-size: 0.82rem;
  color: var(--muted-on-navy);
  font-weight: 600;
  margin-bottom: 1.1rem;
  display: block;
}
.plan-desc {
  font-size: 0.9rem;
  color: var(--muted-on-navy);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.5rem;
}
.plan-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.92rem;
  padding: 0.85rem 1.25rem;
}
.price-note { margin-top: 1.5rem; font-size: 0.82rem; color: var(--muted-on-navy); font-style: italic; }

/* ============ STEPS ============ */
.steps-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
}
.step-num {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange);
  color: var(--white);
  font-weight: 900; font-size: 1.1rem;
  border-radius: 50%;
}
.step-title { font-weight: 800; font-size: 1.1rem; margin-top: 1rem; color: var(--ink); }
.step-copy { margin-top: 0.55rem; font-size: 0.92rem; color: var(--muted); }

/* ============ CAROUSEL (ESPECIALIDADES) ============ */
.carousel {
  margin-top: 2.5rem;
}
.carousel-viewport {
  overflow: hidden;
  /* Sem border-radius no viewport para evitar artefato de linha */
}
.carousel-track {
  display: flex;
  gap: 1.1rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 calc(25% - 0.83rem);
  min-width: 0;
}
.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--navy-light);
  /* Force GPU layer — elimina artefato de linha em border-radius + overflow */
  transform: translateZ(0);
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  /* Renderização suave, sem artefatos de subpixel */
  transform: translateZ(0);
  backface-visibility: hidden;
}
.gallery-card:hover img { transform: scale(1.06) translateZ(0); }
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,27,77,0.92) 0%, rgba(28,27,77,0.3) 45%, rgba(28,27,77,0) 70%);
  pointer-events: none;
}
.gallery-label {
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.85rem;
  z-index: 1;
  font-weight: 800; font-size: 0.88rem;
  color: var(--white);
  line-height: 1.25;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--line-on-navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.08);
}
.carousel-btn svg {
  width: 20px; height: 20px;
  stroke: var(--white);
}
.carousel-btn:hover svg { stroke: var(--navy); }
/* Carousel controls — dots apenas (1 por slide/imagem) */
.carousel-controls--dots-only {
  justify-content: center;
  gap: 0;
  margin-top: 1.5rem;
}
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-dot:hover {
  background: var(--orange);
  opacity: 0.8;
}
.carousel-dot.is-active {
  width: 22px;
  border-radius: 10px;
  background: var(--orange);
}

/* ============ WHY GRID ============ */
.why-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.why-card--light {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
}
.why-icon {
  width: 44px; height: 44px;
  background: rgba(242, 117, 30, 0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.why-icon svg { width: 22px; height: 22px; stroke: var(--orange); }
.why-title { font-weight: 800; font-size: 1rem; color: var(--ink); }
.why-copy { margin-top: 0.55rem; font-size: 0.88rem; color: var(--muted); }

.why-cta {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}
.why-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 2.2rem;
  background: #25d366;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.why-whatsapp-btn:hover {
  background: #22c05e;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}
.why-whatsapp-btn:active {
  transform: translateY(0);
}

/* ============ FOCUS CAROUSEL — PARCEIROS (Saúde Mater Brand Palette) ============ */

.section--partners {
  overflow: hidden;
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 899px) {
  .partners-grid {
    text-align: center;
    gap: 1.75rem;
  }
  .partners-content {
    align-items: center;
  }
}

@media (min-width: 900px) {
  .partners-grid {
    grid-template-columns: 340px 1fr;
    gap: 2.5rem;
    text-align: left;
  }
  .partners-content {
    align-items: flex-start;
  }
}

.partners-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partners-content .section-title {
  max-width: 100%;
}

.partners-content .section-lede {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.partners-carousel-col {
  width: 100%;
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Viewport dimensionada para exibir EXATAMENTE 3 parceiros (Esquerda, Centro/Foco, Direita) */
.partners-focus-wrap {
  margin-top: 0;
  overflow: hidden;
  padding: 0.85rem 0 1.25rem;
  cursor: grab;
  user-select: none;
  width: 100%;
  max-width: 480px; /* 3 cards compactos no Desktop */
}
.partners-focus-wrap:active { cursor: grabbing; }

.partners-focus-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
  align-items: center;
}

/* Card individual — Desktop */
.partner-focus-card {
  flex: 0 0 145px;
  height: 92px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.8rem;
  opacity: 0.45;
  transform: scale(0.88);
  transition: opacity 0.35s ease, transform 0.35s ease,
    box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(28, 27, 77, 0.04);
}

/* Card individual — Mobile Ultra Compacto (82x60px, extremamente discreto) */
@media (max-width: 600px) {
  .partners-focus-wrap {
    max-width: 268px; /* 3 cards ultra compactos de 82px + 2 gaps de 8px */
    padding: 0.5rem 0 0.85rem;
  }
  .partners-focus-track {
    gap: 0.5rem;
  }
  .partner-focus-card {
    flex: 0 0 82px;
    height: 60px;
    border-radius: 10px;
    padding: 0.3rem 0.4rem;
  }
}

/* Estado ATIVO (Centro exacto): Destaque Laranja Saúde Mater */
.partner-focus-card.is-active {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 8px 22px rgba(242, 117, 30, 0.24);
  border-color: var(--orange);
  z-index: 2;
}

/* Clínica Parceira Principal — destaque dourado permanente */
.partner-focus-card--clinic {
  border-color: var(--gold);
  position: relative;
}
.partner-focus-card--clinic::after {
  content: "Clínica Parceira";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font);
  font-weight: 900;
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.18rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
  pointer-events: none;
}
.partner-focus-card--clinic.is-active {
  border-color: var(--gold);
  box-shadow: 0 8px 22px rgba(227, 166, 57, 0.35);
}

/* Imagem/Logo dentro do card: preenchimento máximo nítido e proporcional */
.partner-focus-card img {
  max-height: 85%;
  max-width: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Indicadores de Bolinhas dos Parceiros (Cores Oficiais: Navy + Laranja) */
.partners-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.partners-dots .carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(28, 27, 77, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partners-dots .carousel-dot:hover {
  background: var(--orange);
  opacity: 0.7;
}

.partners-dots .carousel-dot.is-active {
  width: 22px;
  border-radius: 10px;
  background: var(--orange);
}

/* ============ FAQ — NAVY VERSION ============ */
.faq-list--navy { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; }
.faq-item--navy {
  border-bottom: 1px solid var(--line-on-navy);
}
.faq-item--navy:first-child { border-top: 1px solid var(--line-on-navy); }
.faq-question--navy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  text-align: left;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-question--navy:hover { color: var(--gold); }
.faq-question--navy[aria-expanded="true"] { color: var(--gold); }
.faq-icon--navy {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--line-on-navy);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background 0.2s ease, transform 0.25s ease;
}
.faq-icon--navy::before,
.faq-icon--navy::after {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-icon--navy::before { width: 10px; height: 2px; }
.faq-icon--navy::after { width: 2px; height: 10px; }
.faq-question--navy[aria-expanded="true"] .faq-icon--navy {
  background: var(--gold);
  transform: rotate(45deg);
}
.faq-question--navy[aria-expanded="true"] .faq-icon--navy::before,
.faq-question--navy[aria-expanded="true"] .faq-icon--navy::after { background: var(--navy); }
.faq-answer--navy {
  padding-bottom: 1.25rem;
}
.faq-answer--navy p {
  font-size: 0.96rem;
  color: var(--muted-on-navy);
  line-height: 1.7;
  max-width: 72ch;
}

/* ============ FAQ — CREAM VERSION ============ */
.faq-list--cream { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; }
.faq-item--cream {
  border-bottom: 1px solid var(--line);
}
.faq-item--cream:first-child { border-top: 1px solid var(--line); }
.faq-question--cream {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  text-align: left;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-question--cream:hover { color: var(--orange); }
.faq-question--cream[aria-expanded="true"] { color: var(--orange); }
.faq-icon--cream {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background 0.2s ease, transform 0.25s ease;
}
.faq-icon--cream::before,
.faq-icon--cream::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-icon--cream::before { width: 10px; height: 2px; }
.faq-icon--cream::after { width: 2px; height: 10px; }
.faq-question--cream[aria-expanded="true"] .faq-icon--cream {
  background: var(--orange);
  transform: rotate(45deg);
}
.faq-question--cream[aria-expanded="true"] .faq-icon--cream::before,
.faq-question--cream[aria-expanded="true"] .faq-icon--cream::after { background: var(--white); }
.faq-answer--cream {
  padding-bottom: 1.25rem;
}
.faq-answer--cream p {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 72ch;
}

/* ============ TESTIMONIALS — NAVY VERSION ============ */
.testimonial-card--navy {
  background: var(--navy-light);
  border: 1px solid var(--line-on-navy);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-name--light { display: block; font-weight: 800; font-size: 0.9rem; color: var(--white); }
.testimonial-city--light { display: block; font-size: 0.8rem; color: var(--muted-on-navy); }

/* ============ TESTIMONIALS — LIGHT VERSION ============ */
.testimonials-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card--light {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 16px rgba(28, 27, 77, 0.06);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.testimonial-card--light:hover {
  box-shadow: 0 8px 28px rgba(28, 27, 77, 0.12);
  transform: translateY(-3px);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.05em; }
.testimonial-text {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-name--ink { display: block; font-weight: 800; font-size: 0.9rem; color: var(--ink); }
.testimonial-city--ink { display: block; font-size: 0.8rem; color: var(--muted); }

/* ============ CONTACT — CLEAN VERSION ============ */
.contact-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding: 1.15rem 2.5rem;
  background: #25d366;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 100px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  max-width: 420px;
}
.contact-whatsapp-btn:hover {
  background: #22c05e;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
}
.contact-whatsapp-btn:active { transform: translateY(0); }

/* Número de telefone visível — para quem prefere anotar e ligar */
.contact-phone-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--muted-on-navy);
}
.contact-phone-display svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.contact-phone-display strong {
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.contact-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 680px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.3rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-on-navy);
  border-radius: 14px;
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.channel:hover { border-color: var(--gold); transform: translateY(-2px); }
.channel svg { width: 22px; height: 22px; stroke: var(--gold); flex-shrink: 0; }
.channel-label { font-weight: 700; font-size: 0.93rem; color: var(--white); }

/* location-block usa flex para o map preencher a altura */
.location-block {
  margin-top: 2.5rem;
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line-on-navy);
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
}
.location-info {
  flex: 0 0 300px;
  padding: 2rem;
  background: var(--navy-light);
  display: flex;
  flex-direction: column;
}
.location-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
}
.location-title svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; }
.location-address {
  margin-top: 1rem;
  font-size: 0.94rem;
  color: var(--muted-on-navy);
  line-height: 1.7;
}
.location-address strong { color: var(--white); display: block; margin-bottom: 0.25rem; }
.location-map {
  /* Garante que o iframe preenche TODA a área do container */
  position: relative;
  min-height: 280px;
  flex: 1;
}
.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ============ FOOTER ============ */
.footer { background: var(--navy); padding-block: 2.25rem 1.75rem; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-on-navy);
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo { height: 52px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2)); }
.footer-copy { font-size: 0.85rem; color: var(--muted-on-navy); }
.footer-disclaimer { margin-top: 1.25rem; }
.footer-disclaimer p {
  font-size: 0.78rem;
  color: #b9b8de;
  line-height: 1.6;
  max-width: 85ch;
}

/* ============ WHATSAPP FLUTUANTE ============ */
.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: max(1.1rem, env(safe-area-inset-bottom));
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: var(--white);
  padding: 0.85rem 1.2rem;
  border-radius: 100px;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  font-weight: 800;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.92);
  transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1), transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}
.whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.whatsapp-float.is-visible:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(37,211,102,0.55);
}
.whatsapp-float.is-visible:active {
  transform: translateY(0) scale(1);
}
.whatsapp-float-icon {
  position: relative;
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.whatsapp-float-icon svg { width: 22px; height: 22px; fill: var(--white); }
.whatsapp-float-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(0.9); opacity: 0.7; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { opacity: 0; }
}

/* ============ OVERLAY MOBILE ============ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.nav-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ============ CLINIC SPOTLIGHT — CLÍNICA PARCEIRA ============ */
.clinic-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.clinic-spotlight-text {
  display: flex;
  flex-direction: column;
}
.clinic-spotlight-text .section-title {
  max-width: 100%;
}
.clinic-features {
  list-style: none;
  margin: 1.6rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.clinic-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 600;
}
.clinic-features li svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.clinic-logo {
  margin-top: 2.25rem;
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
.clinic-spotlight-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(28, 27, 77, 0.14);
  line-height: 0;
}
.clinic-spotlight-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.clinic-spotlight-img:hover img {
  transform: scale(1.04);
}

/* ============ RESPONSIVE — 1100px ============ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 340px; }
  .hero-chamada { max-width: 340px; }
  .partner-logo { flex: 0 0 calc(20% - 1.2rem); }
}

/* ============ RESPONSIVE — 900px ============ */
@media (max-width: 900px) {
  /* Dica de ligação: irrelevante no mobile (WhatsApp é o canal natural) */
  .hero-phone-hint { display: none; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    background: var(--navy);
    z-index: 99;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    display: flex;
  }
  .nav-links.is-open {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
  }
  .nav-overlay { display: block; }
  .nav-links > li { width: 100%; border-bottom: 1px solid var(--line-on-navy); }
  .nav-links > li > a {
    display: block;
    padding: 1.15rem 1.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.2s ease, padding-left 0.2s ease;
  }
  .nav-links > li > a:hover { color: var(--gold); padding-left: 2.25rem; }
  .nav-toggle { display: flex; }
  .nav-right .btn-primary { display: none; }
  .nav-cta-mobile {
    display: block;
    width: 100%;
    border-bottom: none !important;
    padding: 1.5rem 1.75rem 2rem;
  }
  .nav-cta-mobile .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem 1.5rem; }
  body.menu-open { overflow: hidden; }

  /* Hero — tablet */
  .hero-inner {
    grid-template-columns: minmax(0, 1.15fr) clamp(200px, 28vw, 270px);
    gap: clamp(0.75rem, 2vw, 1.5rem);
    align-items: flex-end;
  }
  .hero-chamada {
    max-width: 270px;
    max-height: clamp(320px, 42vw, 400px);
  }
  .hero-text {
    padding-bottom: clamp(1.25rem, 3vw, 2.5rem);
  }
  .cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    margin-top: 1.75rem;
  }
  .cta-row .btn-primary,
  .cta-row .hero-jak-cta {
    width: fit-content;
    max-width: 100%;
  }
  .hero-facts {
    width: fit-content;
    max-width: 100%;
    margin-top: 1.5rem;
    padding: 0.85rem 1.25rem;
  }
  .hero-fact {
    padding-inline: 0.85rem;
  }
  .hero-fact:first-child { padding-left: 0; }
  .hero-fact:last-child { padding-right: 0; }
  .hero-fact-value { font-size: 1.25rem; }
  .hero-fact-label { font-size: 0.72rem; }

  /* Partners: tablet — card ligeiramente maior */
  .partner-focus-card { flex: 0 0 58%; }

  /* Grids */
  .steps-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Clinic Spotlight — tablet/mobile: coluna única */
  .clinic-spotlight { grid-template-columns: 1fr; gap: 2rem; }
  .clinic-spotlight-img { order: -1; }

  /* Carousel */
  .carousel-slide { flex: 0 0 calc(33.333% - 0.74rem); }

  /* Partners */
  .partner-logo { flex: 0 0 calc(25% - 1.125rem); }

  /* Location */
  .location-block { grid-template-columns: 1fr; min-height: auto; }
  .location-map { height: 240px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-links { gap: 0.4rem 1.25rem; }

  /* WhatsApp float — mobile: só ícone */
  .whatsapp-float { padding: 0.85rem; border-radius: 50%; }
  .whatsapp-float-label { display: none; }
  .whatsapp-float-icon { width: 28px; height: 28px; }
  .whatsapp-float-icon svg { width: 26px; height: 26px; }
}

@media (max-width: 700px) {
  /* Location mobile */
  .location-block { flex-direction: column; }
  .location-info { flex: none; }
  .location-map { min-height: 220px; }
}

@media (max-width: 560px) {
  .plans-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .headline { font-size: clamp(1.45rem, 6.5vw, 1.95rem); line-height: 1.2; }
  .headline--long { font-size: clamp(1.45rem, 6.5vw, 1.95rem); }

  /* Hero mobile layout: 2 colunas para CTAs e Jak lado a lado */
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(105px, 28vw, 135px);
    grid-template-areas:
      "copy   copy"
      "ctas   jak"
      "facts  facts";
    gap: 0.85rem 0.75rem;
    align-items: flex-end;
    padding-bottom: 1.5rem;
  }
  .hero-text {
    display: contents;
  }
  .hero-copy {
    grid-area: copy;
    padding-bottom: 0.35rem;
  }
  .cta-row {
    grid-area: ctas;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
    margin-top: 0;
    align-self: flex-end;
    padding-bottom: 0.25rem;
  }
  .cta-row .hero-jak-cta {
    order: 1;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    padding: 0.6rem 0.8rem 0.6rem 0.65rem;
    gap: 0.55rem;
    border-radius: 100px;
  }
  .cta-row #hero-cta {
    order: 2;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.85rem 0.9rem;
    font-size: 0.88rem;
    white-space: normal;
    line-height: 1.25;
  }
  .cta-row .hero-jak-cta .hero-jak-icon {
    width: 30px;
    height: 30px;
  }
  .cta-row .hero-jak-cta .hero-jak-icon svg {
    width: 17px;
    height: 17px;
  }
  .cta-row .hero-jak-cta .hero-jak-bubble-sub {
    font-size: 0.68rem;
    margin-bottom: 1px;
  }
  .cta-row .hero-jak-cta .hero-jak-bubble-main {
    font-size: 0.82rem;
    white-space: normal;
    line-height: 1.15;
  }
  .cta-row .hero-jak-cta::after {
    right: -7px;
    border-width: 5px 0 5px 8px;
  }
  .hero-image-col {
    grid-area: jak;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-self: flex-end;
    line-height: 0;
    margin-bottom: 0;
  }
  .hero-chamada {
    width: 100%;
    max-width: 135px;
    max-height: none;
    height: auto;
    object-position: bottom center;
    filter: drop-shadow(0 -4px 18px rgba(0, 0, 0, 0.35));
  }
  .hero-facts {
    grid-area: facts;
    justify-self: center;
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 0.85rem;
    padding: 0.75rem 0.6rem;
    border-radius: 12px;
  }
  .hero-fact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-inline: 0.35rem;
    flex: 1;
  }
  .hero-fact:first-child { padding-left: 0.35rem; }
  .hero-fact:last-child { padding-right: 0.35rem; }
  .hero-fact-value {
    font-size: 1.15rem;
    line-height: 1.1;
  }
  .hero-fact-label {
    font-size: 0.68rem;
    text-align: center;
  }
  .hero-fact-divider {
    height: 28px;
  }

  .carousel-slide { flex: 0 0 calc(50% - 0.55rem); }
  .partner-logo { flex: 0 0 calc(33.333% - 1rem); }
  .contact-whatsapp-btn { max-width: 100%; font-size: 1rem; }
  .footer-inner { flex-direction: column; text-align: left; gap: 0.5rem; }
}

@media (max-width: 380px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) clamp(90px, 26vw, 105px);
    gap: 0.75rem 0.5rem;
  }
  .cta-row {
    gap: 0.5rem;
  }
  .cta-row .hero-jak-cta {
    order: 1;
    padding: 0.48rem 0.6rem 0.48rem 0.45rem;
    gap: 0.4rem;
    border-radius: 100px;
  }
  .cta-row #hero-cta {
    order: 2;
    font-size: 0.8rem;
    padding: 0.75rem 0.5rem;
  }
  .cta-row .hero-jak-cta .hero-jak-icon {
    width: 24px;
    height: 24px;
  }
  .cta-row .hero-jak-cta .hero-jak-icon svg {
    width: 14px;
    height: 14px;
  }
  .cta-row .hero-jak-cta .hero-jak-bubble-sub {
    font-size: 0.62rem;
  }
  .cta-row .hero-jak-cta .hero-jak-bubble-main {
    font-size: 0.72rem;
  }
  .cta-row .hero-jak-cta::after {
    right: -5px;
    border-width: 4px 0 4px 6px;
  }
  .hero-chamada {
    max-width: 105px;
  }
  .hero-facts {
    padding: 0.6rem 0.45rem;
    max-width: 100%;
  }
  .hero-fact {
    padding-inline: 0.2rem;
  }
  .hero-fact-value {
    font-size: 0.98rem;
  }
  .hero-fact-label {
    font-size: 0.6rem;
  }
  .hero-fact-divider {
    height: 22px;
  }
  .carousel-slide { flex: 0 0 calc(100% - 0rem); }
  .partner-logo { flex: 0 0 calc(50% - 0.75rem); }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}