/* ═══════════════════════════════════════════
   PANTANAL — additions for v3 layouts
═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   PADRONIZAÇÃO TIPOGRÁFICA GLOBAL
   Referência: imagem 3 (Inter Heavy + italic accent)
   Aplica a TODAS as páginas pra consistência total
═══════════════════════════════════════════ */

/* Sora (display/títulos) + Inter (body) — sistema tipográfico v3 */
:root {
  --font-display: 'Sora', 'Inter', sans-serif !important;
}

/* Todos os títulos principais */
.display-xl,
.display-lg,
.display-md,
.display-sm,
.hero-title,
.rede-hero-title,
.rede-unidades-title,
.rede-mapa-title,
.rede-notfound-title,
.rede-modal-title,
.section-head h2,
.testi-side-title,
.copart-wrap h2,
.cta-final h2,
.footer-help h2 {
  font-family: 'Sora', 'Inter', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  font-variation-settings: normal !important;
}

/* Em (italic accent) — Sora italic + cor do serviço */
.display-xl em,
.display-lg em,
.display-md em,
.display-sm em,
.hero-title em,
.rede-hero-title em,
.rede-unidades-title em,
.rede-mapa-title em,
.rede-notfound-title em,
.rede-modal-title em,
.section-head h2 em,
.testi-side-title em,
.copart-wrap h2 em,
.cta-final h2 em,
.footer-help h2 em {
  font-family: 'Sora', 'Inter', sans-serif !important;
  font-style: italic;
  font-weight: 700 !important;
  letter-spacing: -0.025em;
  color: var(--accent) !important;
}

/* NR-1 e Plantão (light bg titles) — também azul */
[data-variant="nr1"] .nr1-features-title em,
[data-variant="nr1"] .nr1-section-title em,
[data-variant="nr1"] .nr1-closing-title em,
[data-variant="nr1"] .nr1-feature-title em,
[data-variant="nr1"] .nr1-prazo-card-title em,
[data-variant="nr1"] .nr1-beneficio-title em,
[data-variant="plantao"] .p24-hero-title em,
[data-variant="plantao"] .p24-section-title em {
  color: var(--accent) !important;
}

/* Dark background em titles — mantém amarelo/mint pra contraste */
[data-variant="nr1"] .nr1-hero-title em,
[data-variant="nr1"] .nr1-prazo-title em {
  color: var(--pn-yellow, #f2c52f) !important;
}

/* Hero da home (Assistência Médica) — volta pro amarelo */
.hero .hero-title em,
.hero .display-xl em {
  color: var(--pn-yellow, #f2c52f) !important;
}
[data-variant="plantao"] .p24-premissa-text em,
[data-variant="plantao"] .p24-closing-title em,
[data-variant="plantao"] .p24-closing-foot em,
[data-variant="plantao"] .p24-psi-story-text p em {
  color: var(--p24-mint, rgba(27, 139, 115, .35)) !important;
}

/* Títulos menores (card titles, step titles, etc) — Inter 700 */
.stat-card h3,
.solution h3,
.step h3,
.feature-title,
.faq-q,
.testi-quote,
.help-col h4,
.footer-col h4,
.plano-block h3,
.copart-wrap h3 {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em;
}

/* Em em títulos menores (italic + accent color, sem mudar peso) */
.stat-card h3 em,
.solution h3 em,
.step h3 em,
.feature-title em,
.testi-quote em {
  font-style: italic;
  font-weight: 700 !important;
}

/* Fonte do wordmark: Sora (sistema de 2 famílias — Sora display, Inter texto) */

/* Hide trust-bar (now removed from render anyway) */
.trust-bar { display: none !important; }

/* ─── Nav · botão Rede Credenciada (global · todas as páginas) ─── */
.nav-link-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 4px;
  margin-left: 28px;
  font-family: var(--font-body), Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--pn-text, #0c2b52);
  text-decoration: none;
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
.nav-link-item:hover {
  color: var(--pn-green-deep, #0c2b52);
}
.nav-link-item svg {
  width: 15px;
  height: 15px;
  color: var(--pn-green, #1b8b73);
  flex-shrink: 0;
  transition: color .2s;
}
.nav-link-item:hover svg {
  color: var(--pn-green-deep, #0c2b52);
}
.nav-link-item.is-active {
  color: var(--pn-green-deep, #0c2b52);
}
.nav-link-item.is-active::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 0;
  height: 2px;
  background: var(--pn-green-deep, #0c2b52);
  border-radius: 999px;
}
@media (max-width: 880px) {
  .nav-link-item { display: none; }
}

/* ─── Solutions deck (Conexa-style numbered) ─── */
.solutions-head {
  text-align: left;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}
.solutions-head h2 { text-align: left; }
.solutions-head .lead { text-align: left; max-width: 46ch; margin: 0; }
@media (max-width: 880px) { .solutions-head { grid-template-columns: 1fr; gap: 16px; } }

.solutions-deck {
  display: grid;
  grid-template-columns: 2.6fr 1fr 1fr 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
@media (max-width: 1080px) {
  .solutions-deck { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .solutions-deck { grid-template-columns: 1fr; }
}

.solution {
  background: var(--pn-bg-darker);
  border-radius: var(--radius);
  padding: 24px 22px;
  cursor: pointer;
  position: relative;
  transition:
    background .35s cubic-bezier(.2, .8, .2, 1),
    color .35s cubic-bezier(.2, .8, .2, 1),
    border-color .35s cubic-bezier(.2, .8, .2, 1),
    transform .25s cubic-bezier(.2, .8, .2, 1);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--pn-border);
  will-change: background, transform;
}
.solution:hover { background: rgba(27, 139, 115, .08); }
.solution.open {
  background: var(--pn-blue);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 24px 56px -22px rgba(24, 88, 168, 0.45);
}
.solution-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.solution .arrow {
  font-size: 22px;
  color: var(--pn-text-mute);
  font-weight: 300;
  transform: rotate(0deg);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), color .35s ease;
}
.solution.open .arrow {
  color: rgba(255,255,255,.85);
}
.solution .num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  color: var(--pn-text-mute);
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color .35s ease;
}
.solution.open .num { color: rgba(255,255,255,.85); }

/* Body — fade + slide suave em vez de display: none/flex bruto */
.solution-body {
  display: flex;
  margin-top: 28px;
  flex: 1;
  flex-direction: column;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity .3s cubic-bezier(.2, .8, .2, 1) .08s,
    transform .35s cubic-bezier(.2, .8, .2, 1) .08s,
    max-height .4s cubic-bezier(.2, .8, .2, 1);
}
.solution.open .solution-body {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  max-height: 2000px;
}
.solution-body h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 14px;
  color: #fff;
}
.solution-body p {
  color: rgba(255,255,255,.75);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 16px;
}
.solution-body .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pn-yellow);
  border: 1px solid rgba(245, 197, 24, .35);
  border-radius: 999px;
  padding: 5px 11px;
  width: max-content;
  margin-bottom: 18px;
}
.solution-image {
  margin-top: auto;
  aspect-ratio: 16 / 11;
  background: linear-gradient(135deg, #0a4681 0%, var(--pn-navy, #0c2b52) 100%);
  border-radius: var(--radius-sm);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.solution-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 22% 28%, rgba(255,255,255,.18), transparent 40%),
    radial-gradient(circle at 78% 70%, rgba(245, 197, 24, .25), transparent 50%);
}
.solution-image span {
  position: relative;
  color: rgba(255,255,255,.6);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.solution-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .9s cubic-bezier(.2,.6,.2,1), filter .35s ease;
  filter: saturate(1.05);
}
.solution.open .solution-image img { transform: scale(1); }
.solution-image:hover img { transform: scale(1.06); }
.solution-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 31, 61, 0) 50%, rgba(7, 23, 44, .35) 100%);
  pointer-events: none;
}

.solution-mini-title {
  display: none;
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--pn-text-soft);
  letter-spacing: -0.02em;
  line-height: 1.1;
  writing-mode: horizontal-tb;
}
.solution:not(.open) .solution-mini-title { display: block; }
@media (max-width: 1080px) {
  .solution { min-height: 280px; }
  .solution-body h3 { font-size: 26px; }
}

/* ─── Testimonial shell (Conexa-style) ─── */
.testi-shell {
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 980px) { .testi-shell { grid-template-columns: 1fr; } }

.testi-side {
  background: var(--pn-bg-darker);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  border: 1px solid var(--pn-border);
}
.testi-side-logo img {
  width: 36px;
  height: 36px;
  opacity: .7;
}
.testi-side-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--pn-text);
  margin: 32px 0;
}
.testi-side-title em {
  font-style: italic;
  color: var(--pn-blue);
}
.testi-side-foot .nps {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--pn-text);
  margin-bottom: 8px;
}
.testi-side-foot p {
  font-size: 12.5px;
  color: var(--pn-text-soft);
  line-height: 1.5;
  margin: 0;
  max-width: 30ch;
}

.testi-main {
  background: #fff;
  border-radius: var(--radius);
  padding: 38px 42px;
  border: 1px solid var(--pn-border);
  display: flex;
  flex-direction: column;
}
@media (max-width: 640px) { .testi-main { padding: 28px 24px; } }

.testi-main-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.testi-av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pn-blue-soft);
  color: var(--pn-blue);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.testi-main-head > div:nth-child(2) strong {
  display: block;
  color: var(--pn-text);
  font-size: 15px;
  font-weight: 700;
}
.testi-main-head > div:nth-child(2) span {
  display: block;
  color: var(--pn-text-soft);
  font-size: 12.5px;
  margin-top: 2px;
}
.testi-arrows {
  margin-left: auto;
  display: flex;
  gap: 8px;
}
.testi-arrows button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--pn-blue);
  color: #fff;
  font-size: 16px;
  display: grid;
  place-items: center;
  transition: background .15s;
}
.testi-arrows button:hover { background: #154d8a; }

.testi-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--pn-text);
  margin: 0 0 18px;
}
.testi-body {
  color: var(--pn-text-soft);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 60ch;
}
.testi-main-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.testi-main-foot .stars {
  color: var(--pn-blue);
  font-size: 18px;
  letter-spacing: 4px;
}
.testi-main-foot .dots {
  display: flex;
  gap: 8px;
}
.testi-main-foot .dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pn-border-strong);
  cursor: pointer;
  transition: background .15s;
}
.testi-main-foot .dots span.on { background: var(--pn-blue); width: 22px; border-radius: 999px; }

/* ─── CTA Final "Precisa de ajuda?" ─── */
.cta-final {
  background: #0c2b52;
  color: rgba(255,255,255,.85);
  padding: clamp(72px, 9vw, 110px) 0 80px;
}
.cta-final::before { display: none; }
.cta-final .container { position: relative; }

.help-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px 36px;
}
@media (max-width: 980px) {
  .help-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .help-grid { grid-template-columns: 1fr; }
}

.help-main h2 {
  text-align: left;
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  margin: 0 0 28px;
}
.help-main h2 em { color: var(--pn-yellow); font-style: italic; }

.help-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 14px 22px 14px 14px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  transition: background .15s;
}
.help-phone:hover { background: rgba(255,255,255,.1); }
.help-phone .ic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  color: #fff;
}

.help-sub {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  margin: 16px 0 22px;
  max-width: 38ch;
}
.help-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.help-quick a {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 2px;
}
.help-quick a:hover { border-color: var(--pn-yellow); }

.help-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  text-transform: none;
}
.help-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.help-col a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: color .15s;
}
.help-col a:hover { color: #fff; }

.help-bottom {
  grid-column: 1 / -1;
  margin-top: 22px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.help-bottom-cta strong {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 6px;
}
.help-bottom-cta span {
  color: rgba(255,255,255,.55);
  font-size: 14px;
}
.btn-yellow {
  background: var(--pn-yellow);
  color: #0c2b52;
  border: 1px solid var(--pn-yellow);
}
.btn-yellow:hover { background: #f2c52f; }

/* ─── FAQ shell (two-column) ─── */
.faq-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
  max-width: 1080px;
  margin: 0 0 0 auto;
}
@media (max-width: 880px) {
  .faq-shell { grid-template-columns: 1fr; }
}
.faq-aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pn-text-mute);
  margin-bottom: 8px;
}
.faq-aside > button {
  appearance: none;
  background: transparent;
  border: none;
  text-align: left;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--pn-text-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .15s;
}
.faq-aside > button:hover { background: var(--pn-bg-darker); }
.faq-aside > button.on {
  background: var(--pn-blue);
  color: #fff;
  font-weight: 600;
}
.faq-aside .count {
  font-size: 11px;
  background: rgba(255,255,255,.15);
  padding: 2px 8px;
  border-radius: 999px;
}
.faq-aside > button:not(.on) .count {
  background: var(--pn-bg-darker);
  color: var(--pn-text-mute);
}
.faq-aside-cta {
  margin-top: 24px;
  padding: 18px;
  background: var(--pn-bg-darker);
  border-radius: var(--radius-sm);
}
.faq-aside-cta p {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--pn-text-soft);
  line-height: 1.45;
}
.faq-aside-cta a {
  font-weight: 600;
  color: var(--pn-blue);
  font-size: 13.5px;
}
/* FAQ header · alinhado à esquerda + max-width pra não esticar demais */
.faq-section-head {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  max-width: 720px;
}
.faq-section-head h2 { text-align: left !important; }
.faq-section-head .lead { text-align: left !important; margin: 8px 0 0 !important; max-width: 56ch; }

/* ═══════════════════════════════════════════
   Spacing pass — tighter respiros across the site
═══════════════════════════════════════════ */
:root {
  --section-y: clamp(32px, 3.6vw, 56px) !important;
  --nav-h: 116px; /* altura do nav sticky (logo grande) */
}

/* ═══════════════════════════════════════════
   Policies · Modal de Políticas + Cookie Banner
═══════════════════════════════════════════ */

/* Botões que parecem links no footer */
.footer-link-btn {
  appearance: none;
  background: transparent;
  border: none;
  color: rgba(255,255,255,.7);
  font-family: inherit;
  font-size: 14px;
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: color .15s;
  text-decoration: none;
}
.footer-link-btn:hover { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

.policy-inline-link {
  appearance: none;
  background: transparent;
  border: none;
  color: var(--pn-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  padding: 0;
  font: inherit;
}
.policy-inline-link:hover { color: var(--pn-green-deep); }

/* ─── Modal de políticas ─── */
.policy-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(7, 23, 44, .58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 32px);
  animation: policy-fade-in .25s ease both;
}
@keyframes policy-fade-in { from { opacity: 0; } to { opacity: 1; } }

.policy-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 720px;
  width: 100%;
  max-height: min(86vh, 800px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(15, 31, 61, .35);
  overflow: hidden;
  animation: policy-slide-up .35s cubic-bezier(.2, .8, .2, 1) both;
}
@keyframes policy-slide-up {
  from { opacity: 0; transform: translateY(20px) scale(.985); }
  to   { opacity: 1; transform: none; }
}

.policy-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px 18px;
  border-bottom: 1px solid var(--pn-border);
}
.policy-modal-eyebrow {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pn-blue);
  margin-bottom: 8px;
}
.policy-modal-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--pn-text);
  line-height: 1.1;
}
.policy-modal-date {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--pn-text-mute);
  font-style: italic;
}
.policy-modal-close {
  appearance: none;
  border: 1px solid var(--pn-border);
  background: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--pn-text-soft);
  transition: background .15s, color .15s, border-color .15s, transform .2s;
  flex-shrink: 0;
}
.policy-modal-close:hover {
  background: var(--pn-bg-darker);
  color: var(--pn-text);
  transform: scale(1.05);
}

.policy-modal-body {
  padding: 22px 28px 24px;
  overflow-y: auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--pn-text-soft);
  flex: 1;
}
.policy-modal-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--pn-text);
  margin: 22px 0 8px;
  letter-spacing: -0.005em;
}
.policy-modal-body h3:first-child { margin-top: 0; }
.policy-modal-body p { margin: 0 0 10px; }
.policy-modal-body ul {
  margin: 0 0 14px;
  padding-left: 22px;
}
.policy-modal-body li { margin-bottom: 6px; }
.policy-modal-body a {
  color: var(--pn-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy-modal-body strong { color: var(--pn-text); font-weight: 700; }

.policy-modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 28px;
  background: var(--pn-bg-darker);
  border-top: 1px solid var(--pn-border);
  flex-wrap: wrap;
}
.policy-modal-foot > span {
  font-size: 12.5px;
  color: var(--pn-text-soft);
}
.policy-modal-foot .btn { padding: 9px 18px; font-size: 13.5px; }

@media (max-width: 640px) {
  .policy-modal-head, .policy-modal-body, .policy-modal-foot { padding-left: 20px; padding-right: 20px; }
  .policy-modal-foot { flex-direction: column; align-items: stretch; }
  .policy-modal-foot .btn { width: 100%; text-align: center; }
}

/* ─── Cookie consent banner ─── */
.cookie-banner {
  position: fixed;
  z-index: 70; /* abaixo do modal (90), acima do FAB (60) */
  left: 16px;
  bottom: 16px;
  max-width: 480px;
  width: calc(100% - 32px);
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--pn-border);
  box-shadow: 0 24px 60px rgba(15, 31, 61, .28);
  animation: cookie-pop-in .45s cubic-bezier(.2, .9, .2, 1) .6s both;
}
@keyframes cookie-pop-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.cookie-banner-inner { padding: 18px 18px 16px; }
.cookie-banner-copy strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--pn-text);
  margin-bottom: 4px;
}
.cookie-banner-copy p {
  margin: 0 0 12px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--pn-text-soft);
}
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-banner-actions .btn-sm,
.cookie-banner-actions .btn-ghost-sm {
  padding: 8px 14px;
  font-size: 12.5px;
  border-radius: 999px;
}
.btn-ghost-sm {
  appearance: none;
  background: transparent;
  border: 1px solid var(--pn-border-strong);
  color: var(--pn-text);
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.btn-ghost-sm:hover { background: var(--pn-bg-darker); border-color: var(--pn-text-mute); }

.cookie-banner-prefs {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}
.cookie-pref {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 10px;
  background: var(--pn-bg-darker);
  border-radius: 10px;
  cursor: pointer;
}
.cookie-pref input {
  margin: 4px 0 0;
  accent-color: var(--pn-blue);
}
.cookie-pref input:disabled { opacity: .5; cursor: not-allowed; }
.cookie-pref span { display: block; }
.cookie-pref strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--pn-text);
}
.cookie-pref small {
  display: block;
  font-size: 11.5px;
  color: var(--pn-text-soft);
  margin-top: 1px;
}

@media (max-width: 600px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; max-width: none; }
}

/* ─── Skip-link (acessibilidade) ─── */
.skip-link {
  position: absolute;
  left: 8px;
  top: -40px;
  background: var(--pn-green-deep);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  z-index: 1000;
  transition: top .2s;
}
.skip-link:focus { top: 8px; outline: 2px solid var(--pn-yellow); }

/* ─── Hero banner rotativo · layout estável entre slides ─── */
/* Reserva altura de cada bloco rotativo pelo PIOR caso (mais linhas) */
.hero-fullbleed .hero-rating {
  min-height: 22px;
  align-items: center;
}
.hero-fullbleed .hero-title {
  min-height: 2em; /* sempre reserva 2 linhas do display */
}
.hero-fullbleed .hero-lead {
  min-height: 4.8em; /* sempre reserva ~3 linhas no desktop */
}
/* Em mobile o lead vira mais linhas — reservamos altura proporcional */
@media (max-width: 720px) {
  .hero-fullbleed .hero-lead { min-height: 6em; }
}

/* Notify card com dimensão estável + line-clamp no corpo */
.hero-fullbleed .hero-notify {
  width: 320px;
  min-height: 78px;
}
.hero-fullbleed .hero-notify-body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.8em; /* 2 linhas reservadas */
  margin: 3px 0 0;
}

/* CTAs em posição fixa — não dependem do tamanho do texto acima */
.hero-fullbleed .hero-ctas { margin-top: auto; padding-top: 20px; }

/* O hero-copy vira flex column pra empurrar CTAs/pager pro final do bloco
   reservado, evitando que mudanças de altura do texto desloquem os CTAs. */
.hero-fullbleed .hero-copy {
  display: flex;
  flex-direction: column;
}
.hero-fullbleed .hero-copy .hero-title,
.hero-fullbleed .hero-copy .hero-lead { flex: 0 0 auto; }

/* ─── Hero banner rotativo · fade puro (sem translate) ─── */
/* Removemos translateY pra eliminar qualquer sensação de "descer" entre slides.
   Só opacity → posição absolutamente estável + fluido. */
/* ─── Animação cinematográfica de troca de slide ─── */
/* Default: slide up + de-blur + opacidade */
.hero-fade {
  animation: hero-cinematic-in 0.9s cubic-bezier(.16, 1, .3, 1) both;
  will-change: transform, opacity, filter;
}
@keyframes hero-cinematic-in {
  0% {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(10px);
  }
  55% {
    filter: blur(0.5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Stagger temporal — cascata cinematográfica */
.hero-rating.hero-fade  { animation-delay: 0s; }
/* H1 vira só um fade — o stagger acontece nas linhas internas */
.hero-title.hero-fade   {
  animation-name: hero-fade-opacity;
  animation-duration: 0.5s;
  animation-delay: 0s;
}
.hero-lead.hero-fade    { animation-delay: 0.34s; }
.hero-notify.hero-fade  {
  animation: hero-notify-in 0.75s cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: 0.18s;
}
@keyframes hero-fade-opacity {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hero-notify-in {
  0%   { opacity: 0; transform: translateX(14px) scale(0.96); filter: blur(6px); }
  60%  { filter: blur(0); }
  100% { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}

/* Linhas do título — cascata letra-por-letra-like */
.hero-title .hero-line {
  display: inline-block;
  animation: hero-line-in 0.95s cubic-bezier(.16, 1, .3, 1) both;
  will-change: transform, opacity, filter;
}
.hero-title .hero-line-1 { animation-delay: 0.06s; }
.hero-title .hero-line-2 { animation-delay: 0.22s; }
@keyframes hero-line-in {
  0% {
    opacity: 0;
    transform: translateY(38px);
    filter: blur(14px);
  }
  55% {
    filter: blur(0.5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-fade, .hero-title .hero-line { animation: none !important; }
}

/* ═══════════════════════════════════════════
   ENTRADA CINEMATOGRÁFICA — heroes (NR-1, Rede, Plantão)
   Inspirado no hero da home: fade + translateY + blur
   com cascata por stagger
═══════════════════════════════════════════ */
.nr1-hero [data-reveal],
.rede-hero [data-reveal],
.p24-hero [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  transition:
    opacity 0.95s cubic-bezier(.16, 1, .3, 1),
    transform 0.95s cubic-bezier(.16, 1, .3, 1),
    filter 0.95s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform, filter;
}
.nr1-hero [data-reveal].revealed,
.rede-hero [data-reveal].revealed,
.p24-hero [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Stagger · NR-1 */
.nr1-hero .nr1-hero-title.revealed   { transition-delay: 0.10s; }
.nr1-hero .nr1-hero-sub.revealed     { transition-delay: 0.25s; }
.nr1-hero .nr1-cta-pill.revealed     { transition-delay: 0.40s; }
.nr1-hero .nr1-hero-visual.revealed  { transition-delay: 0.18s; }

/* Stagger · Rede */
.rede-hero .rede-hero-pill.revealed  { transition-delay: 0.05s; }
.rede-hero .rede-hero-title.revealed { transition-delay: 0.18s; }
.rede-hero .rede-hero-lead.revealed  { transition-delay: 0.34s; }

/* Stagger · Plantão (Frente 24h) */
.p24-hero .p24-hero-title.revealed                            { transition-delay: 0.10s; }
.p24-hero .p24-hero-lead.revealed:not(.p24-hero-lead--muted)  { transition-delay: 0.26s; }
.p24-hero .p24-hero-lead--muted.revealed                      { transition-delay: 0.36s; }
.p24-hero .p24-hero-actions.revealed                          { transition-delay: 0.48s; }
.p24-hero .p24-hero-visual.revealed                           { transition-delay: 0.22s; }

@media (prefers-reduced-motion: reduce) {
  .nr1-hero [data-reveal],
  .rede-hero [data-reveal],
  .p24-hero [data-reveal] {
    opacity: 1; transform: none; filter: none; transition: none;
  }
}

/* ═══════════════════════════════════════════
   MANCHAS DECORATIVAS — HOME
   Usadas como elementos atmosféricos em pontos chave
═══════════════════════════════════════════ */

/* Helper · imagem de mancha mint, posicionada absolutamente */
.hero,
#porque.section,
#plano.section,
#copart.section,
#como-funciona.section,
#faq.section,
.cta-final {
  position: relative;
  overflow: hidden;
}

/* Hero · manchas removidas — o hero agora usa apenas os blooms de cor da identidade */

/* Manchas de imagem aposentadas (jul/2026) — os blooms de gradiente da
   identidade assumiram o papel atmosférico. Definições removidas. */

.section.section-soft:has(.testi-shell) {
  position: relative;
  overflow: hidden;
}
.section.section-soft:has(.testi-shell) .container {
  position: relative;
  z-index: 1;
}

/* Garante que conteúdo das seções fica acima das manchas */
.hero .container,
.hero .hero-inner,
#porque.section .container,
#plano.section .container,
#copart.section .container,
#como-funciona.section .container,
#faq.section .container,
.cta-final .container {
  position: relative;
  z-index: 1;
}

/* Esconde manchas em mobile pra performance */
@media (max-width: 720px) {
  #porque.section::before,
  #porque.section::after,
  #plano.section::before,
  #plano.section::after,
  #copart.section::before,
  #copart.section::after,
  #como-funciona.section::before,
  #como-funciona.section::after,
  #faq.section::before,
  #faq.section::after,
  .cta-final::before,
  .cta-final::after,
  .section.section-soft:has(.testi-shell)::before,
  .section.section-soft:has(.testi-shell)::after {
    display: none;
  }
}

.hero-pager {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 280px;
}
.hero-arrow {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s, transform .2s;
  flex-shrink: 0;
}
.hero-arrow:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .45);
  transform: scale(1.05);
}
.hero-arrow:active { transform: scale(0.96); }
.hero-arrow svg { display: block; }

.hero-dot {
  appearance: none;
  border: none;
  background: rgba(255,255,255,.18);
  height: 4px;
  flex: 1;
  max-width: 64px;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: background .25s;
}
.hero-dot:hover { background: rgba(255,255,255,.32); }
.hero-dot.on {
  background: rgba(255,255,255,.28);
  max-width: 96px;
}
.hero-dot-progress {
  position: absolute;
  inset: 0;
  background: var(--pn-yellow);
  transform-origin: left;
  transform: scaleX(0);
  border-radius: inherit;
}
.hero-dot.on .hero-dot-progress {
  animation: hero-dot-fill 6.5s linear forwards;
}
@keyframes hero-dot-fill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-dot.on .hero-dot-progress { animation: none; transform: scaleX(1); }
}

/* ─── Card de depoimento sem mini-logo (removida) ─── */
.testi-side-title { margin-top: 0 !important; }
.testi-side-logo { display: none !important; }

/* ─── Footer brand · logo horizontal em chip branco ─── */
.footer-logo-chip {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .22);
  transition: transform .3s ease;
}
.footer-logo-chip:hover { transform: translateY(-2px); }
.footer-logo-chip .footer-logo-img {
  height: 64px;
  width: 64px;
  display: block;
  filter: none;
  opacity: 1;
  object-fit: contain;
}

/* ─── Scroll progress bar (no fundo do nav) ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--pn-yellow) 0%, #F7D560 50%, var(--pn-blue) 100%);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  transition: transform .08s linear;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .nav::after { transition: none; }
}

/* ─── Logo maior + brand text · shrink suave via classe + cubic-bezier ─── */
/* easeOutQuint - aceleração rápida no início, suaviza no fim (natural pra UI) */
.nav {
  transition:
    background .35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow .35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-inner {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  transition: padding .35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-logo {
  align-items: center;
  gap: 14px !important;
  font-size: 0 !important;
}
.nav-logo .logo-img {
  height: 104px !important;
  transition: height .35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height;
}

/* Texto "Pantanal Saúde" ao lado da logo (Oswald) */
.nav-brand {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display, 'Sora', sans-serif);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pn-green-deep);
  line-height: .92;
}
.nav-brand-1, .nav-brand-2 {
  transition: font-size .35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: font-size;
}
.nav-brand-1 { font-size: 48px; }
.nav-brand-2 {
  font-size: 48px;
  color: var(--pn-green-deep); /* mesmo verde que o PANTANAL */
  font-style: normal;          /* sem itálico */
  font-weight: 600;
  margin-top: 0;
  transition: font-size .35s cubic-bezier(0.22, 1, 0.36, 1), margin-top .35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-cta .btn {
  transition: padding .35s cubic-bezier(0.22, 1, 0.36, 1), font-size .35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Estado "scrolled" — delta MENOR pra suavizar o reflow */
.nav.is-scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 6px 24px -12px rgba(15, 31, 61, .15);
}
.nav.is-scrolled .nav-inner {
  padding-top: 3px !important;
  padding-bottom: 3px !important;
}
/* Delta de 104→76 (menos brutal que 104→60) — reflow menos perceptível */
.nav.is-scrolled .nav-logo .logo-img { height: 76px !important; }
.nav.is-scrolled .nav-brand-1,
.nav.is-scrolled .nav-brand-2 { font-size: 34px; }
.nav.is-scrolled .nav-brand-2 { margin-top: 0; }
.nav.is-scrolled .nav-cta .btn { padding: 10px 20px; font-size: 14px; }

@media (max-width: 980px) {
  :root { --nav-h: 92px; }
  .nav-logo .logo-img { height: 80px !important; }
  .nav-brand-1, .nav-brand-2 { font-size: 32px; }
  .nav.is-scrolled .nav-logo .logo-img { height: 60px !important; }
  .nav.is-scrolled .nav-brand-1,
  .nav.is-scrolled .nav-brand-2 { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .nav, .nav-inner, .nav-logo .logo-img,
  .nav-brand-1, .nav-brand-2, .nav-cta .btn {
    transition: none !important;
    will-change: auto;
  }
}

/* ═══════════════════════════════════════════
   MOBILE · ajustes responsivos
═══════════════════════════════════════════ */

/* ─── Hamburger (escondido em desktop) ─── */
.nav-hamburger { display: none; }

.nav-hamburger {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
}
.nav-hamburger-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--pn-green-deep);
  border-radius: 2px;
  transition: transform .3s cubic-bezier(0.22, 1, 0.36, 1), opacity .2s, width .3s;
}
.nav-mobile-open .nav-hamburger-bar:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-mobile-open .nav-hamburger-bar:nth-child(2) { opacity: 0; width: 0; }
.nav-mobile-open .nav-hamburger-bar:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ─── Overlay mobile · drawer slide-down com background opaco ─── */
.nav-mobile-overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  height: 100dvh; /* viewport dinâmico em navegadores modernos */
  z-index: 48; /* abaixo do .nav (50) — o header fica visível por cima */
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(42, 134, 232, .18), transparent 60%),
    radial-gradient(700px 460px at 10% 100%, rgba(245, 197, 24, .08), transparent 60%),
    linear-gradient(180deg, var(--pn-navy, #0c2b52) 0%, #071829 60%, #040e18 100%);
  display: none;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition:
    opacity .3s cubic-bezier(0.22, 1, 0.36, 1),
    transform .35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-mobile-open .nav-mobile-overlay {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Header do drawer · espaço pra logo + hamburger ficar acima */
.nav-mobile-overlay::before {
  content: "";
  display: block;
  min-height: var(--nav-h, 72px);
  flex: 0 0 auto;
}

.nav-mobile-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 20px 28px;
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile-list a {
  color: #fff;
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  transition: background .15s, border-color .15s, transform .15s;
}
.nav-mobile-list a::after {
  content: "→";
  font-size: 20px;
  color: var(--pn-yellow);
  font-style: italic;
  opacity: .8;
  transition: transform .2s, opacity .15s;
}
.nav-mobile-list a:hover,
.nav-mobile-list a:active,
.nav-mobile-list a:focus {
  background: rgba(245, 197, 24, .14);
  border-color: rgba(245, 197, 24, .35);
  transform: translateX(2px);
}
.nav-mobile-list a:hover::after { transform: translateX(4px); opacity: 1; }

.nav-mobile-cta {
  margin-top: 14px !important;
  padding: 18px 24px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  font-family: "Inter", system-ui, sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  width: 100%;
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .35);
}
.nav-mobile-cta::after { content: none !important; }

/* Rodapé do drawer · contato direto */
.nav-mobile-list::after {
  content: "Atendimento 08h–12h · 13h–18h · suporte WhatsApp";
  display: block;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 12.5px;
  color: rgba(255, 255, 255, .55);
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

/* ─── Breakpoint 720px: ativa modo mobile completo ─── */
@media (max-width: 720px) {
  :root { --nav-h: 64px; }

  /* Logo + wordmark (a marca precisa aparecer também no celular) */
  .nav-logo .logo-img { height: 44px !important; }
  .nav-brand {
    display: flex !important;
    color: var(--pn-navy, #0c2b52);
  }
  .nav-brand-1, .nav-brand-2 { font-size: 19px !important; }
  .nav.is-scrolled .nav-logo .logo-img { height: 40px !important; }
  .nav.is-scrolled .nav-brand-1,
  .nav.is-scrolled .nav-brand-2 { font-size: 17px !important; }

  /* Esconde nav links horizontais */
  .nav-links { display: none !important; }

  /* Esconde CTA na nav — o FAB já cobre essa função */
  .nav-cta-btn { display: none !important; }

  /* Mostra hamburger */
  .nav-hamburger { display: flex; }

  /* Container reduzido */
  .container { padding-left: 16px !important; padding-right: 16px !important; }
}
.nav-cta-icon { display: none; }

@media (min-width: 721px) {
  .nav-cta-icon { display: none !important; }
}

/* ═══════════════════════════════════════════
   MOBILE · ajustes das seções
═══════════════════════════════════════════ */

@media (max-width: 720px) {
  /* ─── Hero ─── */
  .hero-fullbleed {
    min-height: auto !important;
  }
  .hero-fullbleed .hero-inner {
    padding: 28px 0 36px !important;
    align-items: flex-start !important;
  }
  .hero-fullbleed .hero-title {
    font-size: clamp(30px, 10vw, 40px) !important;
    min-height: unset !important;
    line-height: 1.15 !important;
    margin-bottom: 12px !important;
  }
  .hero-fullbleed .hero-lead {
    font-size: 14.5px !important;
    min-height: unset !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
  }
  .hero-fullbleed .hero-rating {
    font-size: 12px !important;
    margin-bottom: 12px !important;
  }
  .hero-fullbleed .hero-ctas {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .hero-fullbleed .hero-ctas .btn {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    font-size: 15px !important;
  }
  /* Notify card: esconde em mobile pra não cobrir o conteúdo */
  .hero-fullbleed .hero-notify {
    display: none !important;
  }
  .hero-pager { margin-top: 20px; }
  .hero-dot { height: 6px; }

  /* ─── Hero strip (4 stats) ─── */
  .hero-strip-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
  }
  .hero-strip-grid li:nth-child(odd) {
    border-left: none !important;
    padding-left: 0 !important;
  }

  /* ─── Sections gerais ─── */
  .section { padding: 40px 0 !important; }
  .display-lg { font-size: clamp(26px, 7vw, 34px) !important; }
  .display-xl { font-size: clamp(34px, 9vw, 48px) !important; }
  .section-head { margin-bottom: 24px !important; }
  .lead { font-size: 14.5px !important; }

  /* ─── Solutions deck ─── */
  .solutions-deck {
    flex-wrap: wrap;
    gap: 8px;
  }
  .solution {
    flex: 1 1 100% !important;
    min-height: auto !important;
    padding: 16px 18px !important;
  }
  .solution-mini-title { font-size: 16px !important; }
  .solution-body h3 { font-size: 20px !important; }
  .solution-image { aspect-ratio: 16 / 10; }

  /* ─── Calculadora ─── */
  .calc-v2 .calc-controls { padding: 18px !important; }
  .calc-headline-panel { padding: 18px !important; }
  .calc-headline-panel .calc-output em { font-size: 32px !important; }
  .calc-split-area { padding: 14px !important; }
  .calc-split-side { padding: 12px !important; }
  .calc-split-side header strong { font-size: 17px !important; }
  .calc-row input[type="range"]::-webkit-slider-thumb {
    width: 24px !important;
    height: 24px !important; /* touch-friendly */
  }
  .calc-current button {
    min-height: 40px;
    flex: 1;
  }

  /* ─── Tabela coparticipação ─── */
  .copart-table .head,
  .copart-table .row {
    grid-template-columns: 1fr auto auto auto !important;
    font-size: 12px !important;
    gap: 8px !important;
  }
  .copart-table .item small { display: block; font-size: 11px; }

  /* ─── Rede (mapa) ─── */
  .rede-grid { gap: 14px !important; }
  .rede-side { order: 2; }
  .rede-map-live {
    min-height: 360px !important;
    order: 1;
  }
  .rede-filters { gap: 4px !important; }
  .rede-filter { padding: 6px 10px !important; font-size: 11.5px !important; }
  .rede-cep input,
  .rede-cep button {
    min-height: 44px;
  }

  /* ─── Timeline ─── */
  .timeline { grid-template-columns: 1fr !important; gap: 12px !important; }
  .timeline::before { display: none !important; }
  .step { padding: 18px 20px !important; }

  /* ─── Depoimentos ─── */
  .testi-shell { grid-template-columns: 1fr !important; gap: 12px !important; }
  .testi-side { min-height: auto !important; padding: 20px !important; }
  .testi-side-title { font-size: 28px !important; margin: 16px 0 !important; }
  .testi-main { padding: 24px 20px !important; }
  .testi-quote { font-size: 22px !important; }
  .testi-main-head { gap: 10px; flex-wrap: wrap; }

  /* ─── FAQ ─── */
  .faq-shell {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .faq-aside {
    position: static !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 6px !important;
  }
  .faq-aside .faq-eyebrow { width: 100%; }
  .faq-aside > button {
    flex: 1 1 auto;
    padding: 10px 14px !important;
    font-size: 12.5px !important;
    min-height: 44px;
  }
  .faq-aside-cta { width: 100%; }
  .faq-q { font-size: 14.5px !important; padding: 14px 16px !important; min-height: 44px; }

  /* ─── Footer ─── */
  .footer-unified { padding: 32px 0 16px !important; }
  .footer-help {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .footer-help h2 { text-align: center !important; }
  .footer-help-cta { width: 100%; justify-content: center; }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand .logo { margin-left: auto; margin-right: auto; }
  .footer-compliance {
    grid-template-columns: 1fr !important;
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  /* ─── Cookie banner ─── */
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-banner-actions button { width: 100%; min-height: 44px; }

  /* ─── WhatsApp FAB · um pouco menor pra mobile ─── */
  .whatsapp-fab {
    width: 52px !important;
    height: 52px !important;
    bottom: 90px !important; /* acima do cookie banner */
  }
  .nav-mobile-open .whatsapp-fab { display: none; }

  /* ─── Touch target mínimo (WCAG 2.5.5) ─── */
  .btn, button, .rede-item, .faq-q, .nav-mobile-list a {
    min-height: 44px;
  }
}

/* Breakpoint extra-pequeno (≤380px) */
@media (max-width: 380px) {
  .hero-fullbleed .hero-title { font-size: clamp(28px, 9vw, 36px) !important; }
  .hero-strip-grid { grid-template-columns: 1fr !important; }
  .hero-strip-grid li {
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 1px solid var(--pn-border);
    padding-top: 12px;
  }
  .hero-strip-grid li:first-child { border-top: none; padding-top: 0; }
  .testi-side-title { font-size: 24px !important; }
}

/* ─── Smooth scroll + offset para anchor nav ─── */
html { scroll-behavior: smooth; }
[id="plano"], [id="calculadora"], [id="copart"],
[id="rede"], [id="comparativo"], [id="como-funciona"],
[id="faq"], [id="contato"], [id="porque"] {
  scroll-margin-top: calc(var(--nav-h) + 12px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
.section-head { margin: 0 auto 22px !important; }
.section-head h2 { margin: 8px 0 8px !important; }

/* Compact grids that had generous gaps */
.stat-grid { gap: 14px !important; }
.timeline { gap: 14px; }
.compare-table { margin-top: 8px; }
.copart-wrap { gap: 28px !important; }
.solutions-deck { gap: 10px; }
.testi-shell { gap: 14px; }
.help-grid { gap: 28px 28px !important; }
.calc { gap: 14px; }

/* Footer fica unificado e levemente mais apertado */
.footer-unified { padding: clamp(40px, 5vw, 64px) 0 22px !important; }
.footer-unified .footer-help { padding-bottom: 24px; margin-bottom: 24px; }
.footer-unified .footer-grid { padding-bottom: 22px; margin-bottom: 22px !important; }

/* Rede v2 — compact head */
.rede-head { margin-bottom: 18px !important; }
.rede-grid { gap: 18px !important; }

/* Disclaimer da calculadora · acima da calc */
.calc-fonte {
  font-size: 12.5px !important;
  color: var(--pn-text-mute);
  font-style: italic;
  line-height: 1.5;
  max-width: 70ch;
  margin: 14px auto 0;
  padding: 10px 14px;
  background: rgba(245, 197, 24, .12);
  border-left: 3px solid var(--pn-yellow);
  border-radius: 6px;
  text-align: left;
}
.calc-fonte strong { color: var(--pn-text); font-style: normal; font-weight: 700; }

/* ─── Calculadora v3 — compacta · layout em 3 zonas ─── */
.calc-v2 {
  max-width: 1180px !important;
  display: grid !important;
  grid-template-columns: minmax(280px, 340px) 1fr;
  grid-template-areas:
    "controls headline"
    "details  details";
  align-items: stretch;
  gap: 0;
}
@media (max-width: 880px) {
  .calc-v2 {
    grid-template-columns: 1fr;
    grid-template-areas:
      "controls"
      "headline"
      "details";
  }
}
.calc-v2 .calc-controls       { grid-area: controls; padding: 24px 26px !important; }
.calc-v2 .calc-headline-panel { grid-area: headline; }
.calc-v2 .calc-split-area     { grid-area: details; }

/* Controles enxutos */
.calc-v2 .calc-controls { padding: 20px 22px !important; }
.calc-v2 .calc-controls h3 { font-size: 17px !important; margin-bottom: 2px !important; }
.calc-v2 .calc-controls > p { font-size: 12.5px !important; margin: 0 0 14px !important; }
.calc-v2 .calc-row { margin-bottom: 10px !important; }
.calc-v2 .calc-row:last-of-type { margin-bottom: 0 !important; }
.calc-v2 .calc-row label { margin-bottom: 4px !important; font-size: 12.5px !important; }
.calc-v2 .calc-row label .val { font-size: 16px !important; }
.calc-v2 .calc-current { gap: 6px !important; }
.calc-v2 .calc-current button { padding: 6px 10px !important; font-size: 12px !important; }
/* Range input mais fininho */
.calc-v2 .calc-row input[type="range"] { height: 4px !important; }
.calc-v2 .calc-row input[type="range"]::-webkit-slider-thumb { width: 18px !important; height: 18px !important; }

.calc-headline-panel {
  background: linear-gradient(160deg, var(--pn-navy, #0c2b52) 0%, #081428 60%, #040c1a 100%);
  color: #fff;
  padding: 22px 26px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calc-headline-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(700px 320px at 90% 20%, rgba(245, 197, 24, .15), transparent 60%),
    radial-gradient(500px 240px at 10% 90%, rgba(42, 134, 232, .12), transparent 60%);
  pointer-events: none;
}
.calc-headline-panel > * { position: relative; z-index: 1; }
.calc-headline-panel h4 {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10.5px;
  color: var(--pn-yellow);
  font-weight: 700;
  margin: 0 0 6px;
}
.calc-headline-panel .calc-output {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 10px;
}
.calc-headline-panel .calc-output em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 56px);
  color: var(--pn-yellow);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-shadow: none;
}
.calc-headline-panel .calc-output small {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-style: italic;
}
.calc-headline-panel .calc-versus {
  color: rgba(255,255,255,.82);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.calc-headline-panel .calc-versus s { color: rgba(255,255,255,.45); }
.calc-headline-panel .calc-versus strong { color: #fff; font-weight: 700; }
.calc-arrow {
  color: var(--pn-yellow);
  font-size: 16px;
}

/* Bottom zone (split + formula + cta) */
.calc-split-area {
  padding: 14px 22px 18px;
  background: var(--pn-bg-darker);
  border-top: 1px solid var(--pn-border);
  display: grid;
  gap: 10px;
}
.calc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 !important;
}
@media (max-width: 760px) {
  .calc-split { grid-template-columns: 1fr; }
  .calc-split-area { padding: 12px 16px 16px; }
}
.calc-split-side {
  background: #fff;
  border: 1px solid var(--pn-border);
  border-radius: 12px;
  padding: 12px 14px;
}
.calc-split-side header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px dashed var(--pn-border);
  min-width: 0;
}
.calc-split-side header strong {
  white-space: nowrap;
  word-break: keep-all;
  font-size: 19px !important;
}
.calc-side-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
}
.calc-side-tag.empresa { background: var(--pn-blue-soft); color: var(--pn-blue); }
.calc-side-tag.colab   { background: #FEF6D6;             color: #0c2b52; }
.calc-split-side header strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--pn-text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.calc-split-side header strong small {
  font-size: 11.5px;
  color: var(--pn-text-mute);
  font-weight: 400;
  font-style: italic;
  margin-left: 4px;
}
.calc-split-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 2px;
}
.calc-split-side li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 12.5px;
  padding: 3px 0;
  line-height: 1.3;
}
.calc-split-side li > span:first-child {
  color: var(--pn-text);
  font-weight: 600;
  flex: 0 0 auto;
}
.calc-split-side li > em {
  font-style: italic;
  font-size: 10.5px;
  color: var(--pn-text-mute);
  font-weight: 400;
  flex: 1 1 auto;
  text-align: right;
  margin-right: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.calc-split-side li > em small {
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pn-text-mute);
  margin-left: 3px;
}
.calc-split-side li > strong {
  align-self: baseline;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--pn-text);
  letter-spacing: -0.01em;
  flex: 0 0 auto;
  white-space: nowrap;
}
.calc-side-footnote {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--pn-border);
  font-size: 11px;
  font-style: italic;
  color: var(--pn-text-mute);
  line-height: 1.4;
}

/* Disclosure: "Como o cálculo é feito" */
.calc-formula {
  margin-bottom: 0;
  background: #fff;
  border: 1px solid var(--pn-border);
  border-radius: 10px;
  overflow: hidden;
}
.calc-formula > summary {
  list-style: none;
  cursor: pointer;
  padding: 9px 14px;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--pn-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .15s;
}
.calc-formula > summary::-webkit-details-marker { display: none; }
.calc-formula > summary::after {
  content: "+";
  font-size: 18px;
  font-weight: 400;
  color: var(--pn-blue);
  transition: transform .25s;
}
.calc-formula[open] > summary::after { content: "−"; }
.calc-formula > summary:hover { background: var(--pn-blue-soft); }
.calc-formula > div {
  padding: 4px 14px 12px;
  border-top: 1px solid var(--pn-border);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--pn-text-soft);
}
.calc-formula p { margin: 8px 0; }

/* CTA dentro do split-area: compacto e full-width */
.calc-v2 .calc-cta {
  margin-top: 4px !important;
  padding: 11px 18px;
  font-size: 14px;
}
.calc-formula strong { color: var(--pn-text); }
.calc-formula-disclaimer {
  margin-top: 12px !important;
  padding-top: 10px;
  border-top: 1px dashed var(--pn-border);
  font-size: 11.5px;
  font-style: italic;
  color: var(--pn-text-mute);
}

/* ─── Stat sources line ─── */
.stat-sources {
  margin: 32px auto 0;
  font-size: 12.5px;
  color: var(--pn-text-mute);
  text-align: center;
  max-width: 78ch;
  line-height: 1.55;
  font-style: italic;
}

/* ─── Rede credenciada: lista interativa ─── */
.rede-list-static {
  margin-top: 22px;
  display: grid;
  gap: 8px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}
.rede-list-static::-webkit-scrollbar { width: 6px; }
.rede-list-static::-webkit-scrollbar-thumb {
  background: var(--pn-border-strong);
  border-radius: 3px;
}
.rede-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 8px;
  border-bottom: 1px solid var(--pn-border);
  margin-bottom: 6px;
}
.rede-list-head strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pn-text-mute);
}
.rede-list-reset {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--pn-blue);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background .15s;
}
.rede-list-reset:hover { background: var(--pn-blue-soft); }

.rede-list-static .rede-item {
  appearance: none;
  text-align: left;
  background: #fff;
  border: 1px solid var(--pn-border);
  border-radius: 12px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
  width: 100%;
  font-family: inherit;
}
.rede-list-static .rede-item:hover {
  border-color: var(--pn-blue);
  background: var(--pn-blue-soft);
  transform: translateX(3px);
}
.rede-list-static .rede-item.on {
  border-color: var(--pn-blue);
  background: linear-gradient(90deg, var(--pn-blue-soft), #fff);
  box-shadow: 0 6px 20px -10px rgba(27, 95, 168, .35);
}
.rede-list-static .rede-item .ic {
  font-size: 20px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--pn-bg-darker);
  border-radius: 10px;
  flex-shrink: 0;
}
.rede-list-static .rede-item.on .ic {
  background: var(--pn-blue);
  filter: brightness(1.6) grayscale(0.2);
}
.rede-list-static .rede-item strong {
  display: block;
  font-size: 14px;
  color: var(--pn-text);
  font-weight: 700;
}
.rede-list-static .rede-item span {
  display: block;
  font-size: 12.5px;
  color: var(--pn-text-soft);
  margin-top: 2px;
}
.rede-item-arrow {
  color: var(--pn-text-mute);
  font-size: 18px;
  transition: transform .2s, color .2s;
}
.rede-list-static .rede-item:hover .rede-item-arrow,
.rede-list-static .rede-item.on .rede-item-arrow {
  color: var(--pn-blue);
  transform: translateX(3px);
}

/* ─── Botão geolocation ─── */
.rede-geo-btn {
  appearance: none;
  background: transparent;
  border: 1px dashed var(--pn-border-strong);
  color: var(--pn-blue);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
  align-self: flex-start;
}
.rede-geo-btn:hover:not(:disabled) {
  background: var(--pn-blue-soft);
  border-color: var(--pn-blue);
  border-style: solid;
  transform: translateY(-1px);
}
.rede-geo-btn:disabled { opacity: .6; cursor: progress; }
.rede-geo-btn svg { flex-shrink: 0; }

/* ─── CEP search · resultado + estados ─── */
.rede-cep-msg {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 10px;
  margin-top: 4px;
}
.rede-cep-msg-err {
  background: #fdecee;
  color: #a52838;
  border: 1px solid #f5c0c6;
}
.rede-cep-result {
  margin-top: 6px;
  background: #fff;
  border: 1px solid var(--pn-blue);
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 12px 28px -16px rgba(27, 95, 168, .35);
}
.rede-cep-result header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--pn-border);
}
.rede-cep-result header strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--pn-text);
}
.rede-cep-result header span {
  font-size: 12px;
  color: var(--pn-text-soft);
}
.rede-cep-result ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.rede-cep-item {
  width: 100%;
  appearance: none;
  background: transparent;
  border: 1px solid transparent;
  text-align: left;
  padding: 8px 10px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, border-color .15s, transform .15s;
}
.rede-cep-item:hover { background: var(--pn-blue-soft); border-color: var(--pn-blue); transform: translateX(2px); }
.rede-cep-item.on { background: var(--pn-blue-soft); border-color: var(--pn-blue); }
.rede-cep-item .num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pn-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
}
.rede-cep-item.on .num { background: var(--pn-yellow); color: var(--pn-text); }
.rede-cep-item strong { display: block; font-size: 13.5px; color: var(--pn-text); font-weight: 700; }
.rede-cep-item span { display: block; font-size: 12px; color: var(--pn-text-soft); margin-top: 1px; }
.rede-cep-item .dist {
  font-size: 12px;
  font-weight: 700;
  color: var(--pn-blue);
  background: var(--pn-blue-soft);
  padding: 3px 8px;
  border-radius: 999px;
}

/* ─── Rede v2: título full-width no topo, busca+lista | mapa abaixo ─── */
.rede-v2 { display: block !important; }
.rede-head {
  text-align: left;
  max-width: 880px;
  margin: 0 0 28px;
}
.rede-head .eyebrow { display: inline-block; margin-bottom: 12px; }
.rede-head h2 { margin: 0 0 12px !important; }
.rede-head .lead { margin: 0; max-width: 70ch; }

.rede-grid {
  display: grid;
  grid-template-columns: minmax(320px, 380px) 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 980px) { .rede-grid { grid-template-columns: 1fr; } }

.rede-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rede-v2 .rede-cep { margin-top: 0; }
.rede-v2 .rede-list-static {
  margin-top: 4px;
  max-height: 480px;
}

/* Numbered icon on each list item (matches map pins 1–7) */
.rede-item .ic {
  position: relative;
  overflow: visible;
}
.rede-item-num {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pn-blue);
  color: #fff;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,.15);
  z-index: 2;
}
.rede-item.on .rede-item-num {
  background: var(--pn-yellow);
  color: var(--pn-text);
}
.rede-item-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  display: block;
}
.rede-list-reset.on {
  background: var(--pn-blue);
  color: #fff;
}

/* ─── Leaflet map container ─── */
.rede-leaflet {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: var(--radius-lg);
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--pn-bg-darker);
}
.rede-map-live {
  position: relative;
  min-height: 520px;
  aspect-ratio: auto !important;
}
.rede-map-live iframe { display: none; }
.rede-map-live .rede-meta {
  position: absolute;
  z-index: 600; /* above leaflet panes */
  pointer-events: none;
}

/* Numbered map pins (1–7) */
.rede-marker { background: transparent !important; border: none !important; }
.rede-marker .pin {
  display: block;
  position: relative;
  width: 34px;
  height: 42px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.25));
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.rede-marker .pin::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pn-blue);
  clip-path: path("M17 0C7.6 0 0 7.6 0 17c0 11.2 14.2 22.4 15.8 23.7a2 2 0 002.4 0C19.8 39.4 34 28.2 34 17 34 7.6 26.4 0 17 0Z");
}
.rede-marker .pin b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding-bottom: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1;
}
.rede-marker.is-active .pin { transform: scale(1.18); }
.rede-marker.is-active .pin::before { background: var(--pn-yellow); }
.rede-marker.is-active .pin b { color: var(--pn-green-deep); }

/* Cascata de entrada (só na primeira renderização — classe is-drop) */
.rede-marker.is-drop .pin {
  animation: pin-drop .65s cubic-bezier(.34, 1.56, .64, 1) backwards;
}
@keyframes pin-drop {
  0%   { opacity: 0; transform: translateY(-24px) scale(.55); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .rede-marker.is-drop .pin { animation: none; }
}

/* Estado "filtrado" — pin some do mapa sem destruir o objeto */
.rede-marker.is-hidden {
  pointer-events: none;
}
.rede-marker.is-hidden .pin {
  opacity: 0;
  transform: scale(.4) translateY(-8px);
  transition: opacity .35s ease, transform .35s ease;
}
.rede-marker:not(.is-hidden) .pin {
  transition: opacity .35s ease, transform .35s ease;
}

/* ─── Filtros de especialidade (pills) ─── */
.rede-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}
.rede-filter {
  appearance: none;
  border: 1px solid var(--pn-border);
  background: #fff;
  color: var(--pn-text-soft);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.rede-filter:hover:not(:disabled) {
  border-color: var(--pn-blue);
  color: var(--pn-text);
  transform: translateY(-1px);
}
.rede-filter.on {
  background: var(--pn-blue);
  border-color: var(--pn-blue);
  color: #fff;
}
.rede-filter:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.rede-filter-count {
  background: var(--pn-bg-darker);
  color: var(--pn-text-mute);
  font-size: 10.5px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
}
.rede-filter.on .rede-filter-count {
  background: rgba(255,255,255,.2);
  color: #fff;
}

.rede-list-head em {
  font-style: normal;
  font-weight: 400;
  color: var(--pn-text-mute);
  font-size: 11px;
  margin-left: 4px;
}
.rede-list-empty {
  padding: 16px;
  background: var(--pn-bg-darker);
  border: 1px dashed var(--pn-border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--pn-text-soft);
  font-style: italic;
  text-align: center;
  margin: 4px 0 0;
}

/* ─── Timeline · linha animada conectando os steps ─── */
.timeline {
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 52px; /* altura aproximada do baseline do .num (38px) + padding */
  left: 8%;
  right: 8%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg,
    var(--pn-yellow) 0%,
    var(--pn-blue) 50%,
    var(--pn-green-deep) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.6s cubic-bezier(.65, 0, .35, 1) .25s;
  pointer-events: none;
  z-index: 0;
}
.timeline.revealed::before { transform: scaleX(1); }
.timeline > .step { z-index: 1; } /* o card fica acima da linha */
@media (max-width: 880px) {
  .timeline::before { display: none; } /* layout 2x2 não comporta linha horizontal */
}
@media (prefers-reduced-motion: reduce) {
  .timeline::before { transition: none; transform: scaleX(1); }
}

/* ─── CountUp visual cue · pulso no número quando muda ─── */
.calc-output-num {
  display: inline-block;
  transition: transform .25s cubic-bezier(.2, .8, .2, 1);
}
.calc-headline-panel:hover .calc-output-num { transform: scale(1.02); }

/* Leaflet popup styling */
.leaflet-popup-content-wrapper {
  border-radius: 12px !important;
  padding: 4px 6px !important;
  box-shadow: 0 12px 30px -10px rgba(15,31,61,.3) !important;
}
.leaflet-popup-content {
  margin: 10px 12px !important;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 13px !important;
  line-height: 1.45 !important;
}
.leaflet-popup-content strong {
  display: block;
  color: var(--pn-text);
  font-weight: 700;
  margin-bottom: 2px;
}
.leaflet-popup-content small {
  color: var(--pn-text-soft);
  font-size: 11.5px;
}
.leaflet-control-attribution {
  font-size: 10px !important;
  background: rgba(255,255,255,.85) !important;
}
.leaflet-container { font-family: inherit !important; }

/* ═══════════════════════════════════════════
   Hero · Conexa-inspired refactor (level 1 → full-bleed)
═══════════════════════════════════════════ */

/* Hide the legacy stacked cards (kept for backward compat) */
.hero-kicker,
.hero-bullets,
.hero-trust,
.hero-card-stat,
.hero-card-mini,
.hero-stage,
.hero-photo,
.hero-photo-img,
.hero-photo-placeholder { display: none !important; }

/* ─── Full-bleed cinematic hero ─── */
.hero-fullbleed {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  /* compact, fills the viewport without pushing the H1 down */
  min-height: clamp(520px, 70vh, 720px);
  padding: 0 !important;
  margin-top: 0;
  background: #0c2b52;
  color: #fff;
}
/* If the nav is fixed/sticky, give it transparent treatment over photo */
.hero-fullbleed + section,
.hero-fullbleed { margin-top: 0 !important; }
.hero-fullbleed::before,
.hero-fullbleed::after { display: none !important; } /* nuke legacy radial bg */

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 38%;
  display: block;
  animation: hero-bg-zoom 22s ease-in-out infinite alternate;
}
@keyframes hero-bg-zoom {
  0%   { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-img { animation: none; }
}

/* Placeholder background — CSS-art evoking cerrado/pantanal sky */
.hero-bg-placeholder {
  background:
    radial-gradient(70% 60% at 88% 18%, rgba(245, 197, 24, .35) 0%, transparent 60%),
    radial-gradient(60% 55% at 78% 70%, rgba(42, 134, 232, .35) 0%, transparent 65%),
    radial-gradient(55% 50% at 22% 80%, rgba(30, 199, 107, .22) 0%, transparent 60%),
    radial-gradient(50% 40% at 10% 25%, rgba(15, 39, 71, .55) 0%, transparent 70%),
    linear-gradient(135deg, #061a30 0%, #0f2541 30%, #0b3a31 65%, #062a3f 100%);
}
/* Soft horizon line + sun glow on the placeholder */
.hero-bg-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 30%, rgba(255, 220, 130, .55) 0%, rgba(255, 220, 130, 0) 22%),
    radial-gradient(circle at 82% 30%, rgba(255, 220, 130, .18) 0%, rgba(255, 220, 130, 0) 38%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-bg-placeholder::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 64%;
  height: 28%;
  background: linear-gradient(180deg, rgba(7, 23, 44, 0) 0%, rgba(7, 23, 44, .55) 65%, rgba(7, 23, 44, .85) 100%);
  pointer-events: none;
}

/* Subtle film grain over the whole bg for depth */
.hero-bg-grain {
  position: absolute;
  inset: 0;
  background-image:
    repeating-radial-gradient(circle at 12% 18%, rgba(255,255,255,.025) 0 1.5px, transparent 1.5px 4px),
    repeating-radial-gradient(circle at 88% 72%, rgba(0,0,0,.04) 0 1.5px, transparent 1.5px 5px);
  mix-blend-mode: overlay;
  opacity: .7;
  pointer-events: none;
}

/* Dark gradient overlay — ensures copy contrast on the left */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 12, 26, .88) 0%, rgba(4, 12, 26, .72) 28%, rgba(4, 12, 26, .42) 50%, rgba(4, 12, 26, .18) 70%, rgba(4, 12, 26, .05) 100%),
    linear-gradient(180deg, rgba(4, 12, 26, .35) 0%, rgba(4, 12, 26, 0) 25%, rgba(4, 12, 26, 0) 65%, rgba(4, 12, 26, .55) 100%);
  pointer-events: none;
}
@media (max-width: 720px) {
  .hero-overlay {
    background: linear-gradient(180deg, rgba(4, 12, 26, .35) 0%, rgba(4, 12, 26, .65) 45%, rgba(4, 12, 26, .85) 100%);
  }
}

/* Reset grid: copy floats, no side stage */
.hero-fullbleed .hero-inner {
  position: relative;
  z-index: 2;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
  min-height: clamp(520px, 70vh, 720px);
  padding: clamp(28px, 3vw, 48px) 0 clamp(36px, 4vw, 56px);
}

.hero-fullbleed .hero-copy {
  width: 100%;
  max-width: 640px;
  color: #fff;
  align-self: flex-start;   /* não centraliza no flex column do hero-inner */
  align-items: flex-start;  /* filhos começam todos na mesma X */
}

/* Tighter title: prevents 4-line break on desktop */
.hero-fullbleed .hero-title {
  font-size: clamp(40px, 5.2vw, 72px) !important;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 0 18px !important;
  width: 100%;             /* trava a largura do bloco */
  align-items: flex-start; /* linhas começam todas no mesmo X */
  text-align: left;
}
.hero-fullbleed .hero-title .hero-line {
  width: 100%;
  text-align: left;
  display: block;
}
.hero-fullbleed .hero-lead {
  margin: 0 0 22px;
  font-size: clamp(15px, 1.15vw, 17px);
}
.hero-fullbleed .hero-rating { margin-bottom: 18px; }
.hero-fullbleed .hero-ctas { margin-top: 22px; }

/* Stars + social-proof (inverted for dark bg) */
.hero-fullbleed .hero-rating {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .78);
}
.hero-fullbleed .hero-rating-text strong { color: #fff; }
.hero-fullbleed .hero-stars {
  color: var(--pn-yellow);
  text-shadow: none;
}

/* H1 inverted */
.hero-fullbleed .hero-title {
  color: #fff;
}
.hero-fullbleed .hero-title .hero-line-1 { color: #fff; }
.hero-fullbleed .hero-title .hero-line-2 { color: #fff; }
.hero-fullbleed .hero-title .hero-line-2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--pn-yellow);
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
}

.hero-fullbleed .hero-lead {
  color: rgba(255, 255, 255, .82);
  font-weight: 400;
  max-width: 50ch;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.hero-fullbleed .hero-lead strong { color: #fff; font-weight: 700; }

.hero-fullbleed .hero-ctas { margin-top: 36px; }

/* Ghost CTA when sitting over the photo — white outline */
.btn-on-photo {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-on-photo:hover {
  background: rgba(255,255,255,.16) !important;
  border-color: rgba(255,255,255,.55) !important;
}

/* Glass notify — flutua no topo direito do hero, logo abaixo da nav pill */
.hero-fullbleed .hero-notify {
  bottom: auto;
  top: clamp(96px, 12vh, 140px);
  right: clamp(16px, 2.5vw, 32px);
  background: rgba(255, 255, 255, .92);
}
@media (max-width: 880px) {
  .hero-fullbleed .hero-notify {
    right: 16px;
    bottom: auto;
    top: 92px;
    width: min(320px, calc(100% - 32px));
  }
}

/* Placeholder flag — subtle bottom-right corner badge */
.hero-photo-flag {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.82);
  font-weight: 500;
  pointer-events: none;
}
.hero-photo-flag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pn-yellow);
  box-shadow: 0 0 8px rgba(245, 197, 24, .65);
}

/* Stars + social-proof line above the H1 */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  font-size: 13.5px;
  color: var(--pn-text-soft);
  flex-wrap: wrap;
}
.hero-stars {
  color: var(--pn-yellow);
  letter-spacing: 2px;
  font-size: 15px;
  line-height: 1;
}
.hero-rating-text strong { color: var(--pn-text); font-weight: 700; }

/* CTA spacing (replaces the inline marginTop:32 removed from JSX) */
.hero-ctas { margin-top: 32px; }

/* Photo placeholder block (until a real regional photo is added) */
.hero-photo-placeholder {
  position: absolute;
  inset: 0 0 60px 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  background:
    radial-gradient(circle at 30% 22%, rgba(42, 134, 232, .22), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(15, 39, 71, .35), transparent 60%),
    linear-gradient(160deg, #0F1F3D 0%, #0c2b52 55%, #0c2b52 100%);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.78);
  border: 1px dashed rgba(255,255,255,.18);
}
.hero-photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 2px, transparent 2px 14px);
  pointer-events: none;
}
.hero-placeholder-inner {
  position: relative;
  text-align: center;
  display: grid;
  gap: 10px;
  padding: 32px;
  max-width: 280px;
}
.hero-placeholder-inner svg {
  margin: 0 auto 8px;
  color: rgba(255,255,255,.62);
}
.hero-placeholder-inner strong {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #fff;
  font-weight: 500;
}
.hero-placeholder-inner span {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.04em;
}
.hero-placeholder-inner em {
  margin-top: 6px;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pn-yellow);
}

/* Glass notification floating over the photo (Conexa-style) */
.hero-notify {
  position: absolute;
  top: 28px;
  right: -22px;
  z-index: 4;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  width: 320px;
  max-width: calc(100% - 24px);
  padding: 14px 16px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 18px;
  box-shadow: 0 22px 50px -20px rgba(15,31,61,.28), 0 1px 0 rgba(255,255,255,.7) inset;
  animation: hero-notify-in 1.4s cubic-bezier(.2,.8,.2,1) both, hero-notify-bob 5s ease-in-out 1.4s infinite;
}
.hero-notify-ic {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--pn-blue) 0%, #0a4681 100%);
  color: #fff;
  box-shadow: 0 6px 14px rgba(27, 95, 168, .35);
}
.hero-notify-body strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--pn-text);
  letter-spacing: -0.005em;
}
.hero-notify-body p {
  margin: 3px 0 0;
  font-size: 12.5px;
  color: var(--pn-text-soft);
  line-height: 1.4;
}
.hero-notify-body p em {
  font-style: normal;
  font-weight: 700;
  color: var(--pn-text);
}
.hero-notify-time {
  font-size: 11px;
  color: var(--pn-text-mute);
  letter-spacing: 0.04em;
  align-self: start;
}
@keyframes hero-notify-in {
  0%   { opacity: 0; transform: translateY(-10px) translateX(8px) scale(.96); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: none; }
}
@keyframes hero-notify-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-notify { animation: none; }
}

@media (max-width: 980px) {
  .hero-notify { right: 12px; top: 12px; width: min(320px, calc(100% - 24px)); }
  .hero-photo-placeholder { inset: 0; }
}

/* Stat strip directly below the hero */
.hero-strip {
  background: linear-gradient(180deg, var(--pn-bg-darker) 0%, #fff 100%);
  border-top: 1px solid var(--pn-border);
  border-bottom: 1px solid var(--pn-border);
  padding: 28px 0;
}
.hero-strip-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}
.hero-strip-grid li {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  border-left: 1px solid var(--pn-border);
}
.hero-strip-grid li:first-child { border-left: none; padding-left: 0; }
.hero-strip-grid strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  color: var(--pn-green-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-strip-grid strong small {
  font-size: 14px;
  color: var(--pn-blue);
  font-style: italic;
  font-weight: 500;
  margin-left: 2px;
}
.hero-strip-grid span {
  font-size: 12.5px;
  color: var(--pn-text-soft);
  line-height: 1.45;
  max-width: 26ch;
}
@media (max-width: 880px) {
  .hero-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .hero-strip-grid li:nth-child(3) { border-left: none; padding-left: 0; }
}
@media (max-width: 480px) {
  .hero-strip-grid { grid-template-columns: 1fr; }
  .hero-strip-grid li { border-left: none; padding-left: 0; border-top: 1px solid var(--pn-border); padding-top: 14px; }
  .hero-strip-grid li:first-child { border-top: none; padding-top: 0; }
}

/* ═══════════════════════════════════════════
   v3 polish — hero, motion, map, FAB, blue CTA
═══════════════════════════════════════════ */

/* ─── Hero typography polish ─── */
.hero-copy { max-width: 620px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pn-blue);
  background: var(--pn-blue-soft);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pn-blue);
  box-shadow: 0 0 0 0 rgba(27, 95, 168, .45);
  animation: kicker-pulse 2.2s ease-out infinite;
}
@keyframes kicker-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(27, 95, 168, .55); }
  70%  { box-shadow: 0 0 0 10px rgba(27, 95, 168, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(27, 95, 168, 0);   }
}
.hero-title {
  margin: 0 0 24px !important;
  max-width: none !important;
  display: flex;
  flex-direction: column;
  font-size: clamp(48px, 6.6vw, 92px) !important;
  line-height: 0.95;
  letter-spacing: -0.038em;
}
.hero-title .hero-line { display: block; }
.hero-title .hero-line-1 { color: var(--pn-text); }
.hero-title .hero-line-2 { margin-top: .04em; color: var(--pn-text); }
.hero-title .hero-line-2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--pn-blue);
  background: none;
  -webkit-text-fill-color: currentColor;
}
.hero-lead {
  font-size: clamp(16px, 1.25vw, 18.5px);
  line-height: 1.55;
  color: var(--pn-text-soft);
  max-width: 50ch;
  margin: 0 0 24px;
}
.hero-lead strong { color: var(--pn-text); font-weight: 700; }

.hero-bullets {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--pn-text-soft);
  line-height: 1.4;
}
.hero-bullets li strong { color: var(--pn-text); font-weight: 700; }
.hero-bullet-ic {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pn-blue-soft);
  color: var(--pn-blue);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── Reveal variations + stagger ─── */
[data-reveal] { will-change: opacity, transform; }
.stat-grid > [data-reveal]:nth-child(1) { transition-delay: .05s; }
.stat-grid > [data-reveal]:nth-child(2) { transition-delay: .15s; }
.stat-grid > [data-reveal]:nth-child(3) { transition-delay: .25s; }
.stat-grid > [data-reveal]:nth-child(4) { transition-delay: .35s; }

/* Generic creative motion: subtle float on cards */
.stat-card, .compare-row, .step, .rede-item, .faq-item {
  transition: transform .3s cubic-bezier(.2,.6,.2,1), box-shadow .3s, border-color .3s, background .3s;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -20px rgba(15,31,61,.18);
  border-color: var(--pn-blue);
}
.step:hover { transform: translateY(-3px); }
.rede-item:hover { transform: translateX(4px); background: var(--pn-blue-soft); }

/* Pulse on the calculator output number */
.calc-output em {
  display: inline-block;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  animation: subtle-bob 3.4s ease-in-out infinite;
}
@keyframes subtle-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Hero photo gentle zoom on hover + show upper portion of the image */
.hero-photo-img img {
  object-position: 50% 22%;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.hero-photo-img:hover img { transform: scale(1.04); }

/* Floating hero cards — gentle ambient motion */
.hero-card-stat { animation: float-card 6s ease-in-out infinite; }
.hero-card-mini { animation: float-card 6s ease-in-out infinite; animation-delay: 1.4s; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-card-stat, .hero-card-mini, .calc-output em { animation: none; }
}

/* ─── Solutions deck: smooth grow/shrink ─── */
.solutions-deck {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  align-items: stretch;
}
.solution {
  flex: 1 1 0;
  min-width: 0;
  min-height: 460px;
  transition:
    flex-grow .55s cubic-bezier(.4,0,.2,1),
    background .35s ease,
    color .35s ease,
    border-color .35s ease,
    transform .35s ease;
}
.solution.open {
  flex-grow: 4.2;
}
.solution-body {
  display: flex !important;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  transition: opacity .45s ease .15s, transform .45s ease .15s, max-height .55s ease, margin-top .45s ease;
}
.solution.open .solution-body {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  max-height: 800px;
  margin-top: 28px;
}
.solution-mini-title {
  transition: opacity .25s ease;
}
.solution.open .solution-mini-title { opacity: 0; pointer-events: none; }
.solution .arrow { transition: transform .35s ease, color .35s ease; }
.solution.open .arrow { transform: rotate(45deg); }

@media (max-width: 1080px) {
  .solutions-deck { flex-wrap: wrap; }
  .solution { flex: 1 1 calc(50% - 7px); }
  .solution.open { flex: 1 1 100%; }
}
@media (max-width: 640px) {
  .solution, .solution.open { flex: 1 1 100%; }
}

/* ─── Real Google Maps embed ─── */
.rede-map-live {
  aspect-ratio: 1.1 / 1;
  background: var(--pn-bg-darker);
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--pn-border);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.rede-map-live iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}
.rede-map-live .rede-meta {
  z-index: 2;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--pn-border);
}

/* ─── WhatsApp FAB: icon-only circle ─── */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 56px;
  height: 56px;
  padding: 0;
  gap: 0;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.55);
  border: none;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: whatsapp-pulse 2.6s ease-out infinite;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 36px rgba(37,211,102,.55);
}
.whatsapp-fab svg { width: 28px; height: 28px; display: block; }
.whatsapp-fab .ic, .whatsapp-fab .lbl { display: none !important; }
@keyframes whatsapp-pulse {
  0%   { box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 0   rgba(37,211,102,.55); }
  70%  { box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 0   rgba(37,211,102,0); }
}
@media (max-width: 600px) {
  .whatsapp-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab { animation: none; }
}

/* ─── CTA Final + Footer: cohesive deep blue ─── */
.cta-final { background: linear-gradient(180deg, #0c2b52 0%, #0c2b52 100%); }
.cta-final::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(900px 500px at 15% 10%, rgba(42, 134, 232, .22), transparent 60%),
    radial-gradient(800px 460px at 95% 90%, rgba(245, 197, 24, .07), transparent 60%);
  pointer-events: none;
}
.help-phone {
  background: rgba(42, 134, 232, .14);
  border-color: rgba(42, 134, 232, .35);
}
.help-phone:hover { background: rgba(42, 134, 232, .22); }
.help-bottom { border-top-color: rgba(255,255,255,.08); }
.help-bottom-cta strong { color: #fff; }
.help-bottom-cta span { color: rgba(255,255,255,.6); }

/* Replace yellow proposta button with a unified blue accent */
.cta-final .btn-yellow {
  background: linear-gradient(180deg, #0a4681 0%, #1B5FA8 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 26px rgba(27, 95, 168, .35);
}
.cta-final .btn-yellow:hover {
  background: linear-gradient(180deg, #3a93f3 0%, #226bbc 100%);
  transform: translateY(-2px);
}

/* Footer aligned to the same deep blue */
.footer {
  background: linear-gradient(180deg, #0c2b52 0%, #0c2b52 60%, #061327 100%) !important;
  color: rgba(255,255,255,.72);
  border-top: 1px solid rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(900px 480px at 15% 12%, rgba(42, 134, 232, .18), transparent 60%),
    radial-gradient(800px 440px at 92% 88%, rgba(245, 197, 24, .06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.footer > .container { position: relative; z-index: 1; }

/* ─── Footer · Help band (absorvido do antigo CTAFinal) ─── */
.footer-unified { padding: clamp(56px, 6vw, 88px) 0 26px !important; }

.footer-help {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 880px) {
  .footer-help {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
.footer-help h2 {
  text-align: left;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
  margin: 0 0 16px;
}
.footer-help h2 em {
  color: var(--pn-yellow);
  font-style: italic;
}
.footer-help .help-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(42, 134, 232, .14);
  border: 1px solid rgba(42, 134, 232, .35);
  padding: 12px 22px 12px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  transition: background .2s, transform .2s;
}
.footer-help .help-phone:hover {
  background: rgba(42, 134, 232, .22);
  transform: translateY(-1px);
}
.footer-help .help-phone .ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  color: #fff;
}
.footer-help .help-sub {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  margin: 14px 0 0;
  max-width: 42ch;
}
.footer-help-cta {
  align-self: center;
  white-space: nowrap;
}

/* Compact spacing between footer sub-bands */
.footer-unified .footer-grid {
  margin-bottom: 28px !important;
  padding-bottom: 0;
  border-bottom: none;
}
.footer-unified .footer-compliance {
  padding: 0 0 20px;
  border-bottom: none;
  margin-bottom: 16px;
}
.footer-unified .footer-bottom {
  padding-top: 0;
  border-top: none;
}
.footer h4 { color: #fff; }
.footer a { color: rgba(255,255,255,.7); transition: color .15s; }
.footer a:hover { color: #fff; }
.footer-compliance,
.footer-bottom,
.footer-grid { border-color: rgba(255,255,255,.06) !important; }


/* ═══════════════════════════════════════════
   NAV PILL · Conexa-inspired
   - position: fixed → hero ocupa o topo inteiro, nav flutua por cima
   - nav-inner vira uma cápsula flutuante
   - logo à esquerda, dropdown + CTA à direita
═══════════════════════════════════════════ */
.nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: transparent !important;
  border-bottom: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  padding: 14px 16px 0 !important;
  pointer-events: none; /* só o pill captura cliques */
}
/* hero começa em y=0, com a foto preenchendo o topo todo */
.hero-fullbleed {
  margin-top: 0 !important;
  /* Foto ocupa 100% da viewport — usuário rola para ver o que vem depois */
  min-height: 100vh !important;
  min-height: 100dvh !important; /* mobile: respeita a barra do navegador */
  height: 100vh;
  height: 100dvh;
}
.hero-fullbleed .hero-inner {
  min-height: 100vh !important;
  min-height: 100dvh !important;
  /* conteúdo da hero começa abaixo da pílula flutuante */
  padding-top: clamp(110px, 14vh, 160px) !important;
  padding-bottom: clamp(48px, 6vh, 80px) !important;
  /* texto na metade vertical em telas grandes */
  justify-content: center !important;
}

/* Overlay mais sutil — foto domina mais, mas texto à esquerda ainda fica legível */
.hero-overlay {
  background:
    linear-gradient(90deg,
      rgba(4, 12, 26, .72) 0%,
      rgba(4, 12, 26, .55) 22%,
      rgba(4, 12, 26, .28) 45%,
      rgba(4, 12, 26, .10) 65%,
      rgba(4, 12, 26, 0)   100%),
    linear-gradient(180deg,
      rgba(4, 12, 26, .22) 0%,
      rgba(4, 12, 26, 0)   30%,
      rgba(4, 12, 26, 0)   65%,
      rgba(4, 12, 26, .42) 100%) !important;
}

/* Garante leitura do título sobre foto mais visível — text-shadow sutil */
.hero-fullbleed .hero-title,
.hero-fullbleed .hero-lead,
.hero-fullbleed .hero-rating-text {
  text-shadow: 0 2px 18px rgba(4, 12, 26, .45);
}

/* anchor scroll: evita que links #seção sumam atrás da nav fixa */
html { scroll-padding-top: 80px; }
@media (max-width: 720px) {
  .hero-fullbleed,
  .hero-fullbleed .hero-inner {
    min-height: 100vh !important;
    min-height: 100dvh !important;
    height: 100vh;
    height: 100dvh;
  }
  .hero-fullbleed .hero-inner { padding-top: 90px !important; }
  /* mobile: overlay mais escuro porque o texto ocupa toda a largura */
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(4, 12, 26, .28) 0%, rgba(4, 12, 26, .55) 45%, rgba(4, 12, 26, .82) 100%) !important;
  }
  html { scroll-padding-top: 68px; }
}
.nav::after { display: none !important; } /* remove a barra de progresso */
.nav-inner {
  pointer-events: auto;
  max-width: 1240px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .78) !important;
  backdrop-filter: blur(20px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
  border: 1px solid rgba(255, 255, 255, .65) !important;
  border-radius: 999px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 10px 32px -8px rgba(15, 31, 61, .12),
    0 2px 6px rgba(15, 31, 61, .04) !important;
  padding: 6px 8px 6px 18px !important;
  transition: background .35s cubic-bezier(.22,1,.36,1), box-shadow .35s cubic-bezier(.22,1,.36,1), padding .35s cubic-bezier(.22,1,.36,1);
}
.nav.is-scrolled .nav-inner {
  background: rgba(255, 255, 255, .92) !important;
  padding: 5px 7px 5px 16px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 14px 36px -10px rgba(15, 31, 61, .18),
    0 3px 8px rgba(15, 31, 61, .06) !important;
}

/* ─── Slim logo + brand inline ─── */
.nav-logo {
  gap: 10px !important;
}
.nav-logo .logo-img {
  height: 42px !important;
}
.nav.is-scrolled .nav-logo .logo-img { height: 36px !important; }
.nav-brand {
  flex-direction: row !important;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}
.nav-brand-1, .nav-brand-2 {
  font-size: 18px !important;
  letter-spacing: 0.04em;
}
.nav.is-scrolled .nav-brand-1,
.nav.is-scrolled .nav-brand-2 { font-size: 16px !important; }
.nav-cta .btn { padding: 10px 18px !important; font-size: 14px !important; }
.nav.is-scrolled .nav-cta .btn { padding: 9px 16px !important; font-size: 13.5px !important; }

/* Nav-links agora alinha à direita, junto do CTA */
.nav-links {
  margin-left: auto;
  margin-right: 14px;
  gap: 8px !important;
}

/* ─── Dropdown trigger · Nossos Serviços ─── */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown-trigger {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 9px 16px;
  margin: 0;
  font: inherit;
  color: var(--pn-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 999px;
  transition: background .2s ease, color .18s ease;
}
.nav-dropdown-trigger:hover {
  background: rgba(15, 39, 71, .06);
}
.nav-dropdown.is-open .nav-dropdown-trigger {
  background: rgba(15, 39, 71, .08);
  color: var(--pn-text);
}
.nav-dropdown-caret {
  transition: transform .25s cubic-bezier(.2,.7,.3,1);
  flex-shrink: 0;
  opacity: .65;
}
.nav-dropdown.is-open .nav-dropdown-caret { transform: rotate(180deg); opacity: 1; }

/* ─── Dropdown menu · cápsula orgânica ─── */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  min-width: 260px;
  padding: 10px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 24px 48px -16px rgba(15, 31, 61, .18),
    0 6px 16px rgba(15, 31, 61, .06);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(.97);
  transform-origin: top right;
  transition:
    opacity .2s ease,
    transform .26s cubic-bezier(.2,.85,.3,1),
    visibility 0s linear .26s;
  z-index: 60;
}
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 0s, 0s, 0s;
}
/* ponte invisível para o hover não se perder no gap */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 14px;
  color: var(--pn-text);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background .18s ease, color .15s ease, transform .2s cubic-bezier(.2,.85,.3,1);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: rgba(15, 39, 71, .06);
  color: var(--pn-green-deep);
  transform: translateX(2px);
}
.nav-dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--pn-bg-soft);
  color: var(--pn-green-deep);
  flex-shrink: 0;
  transition: background .18s ease, color .15s ease;
}
.nav-dropdown-icon svg {
  width: 19px;
  height: 19px;
  display: block;
}
.nav-dropdown-menu a:hover .nav-dropdown-icon {
  background: var(--pn-green-deep);
  color: #fff;
}
.nav-dropdown-label {
  line-height: 1.2;
}

/* esconde o dropdown desktop em mobile (usa overlay) */
@media (max-width: 980px) {
  .nav-dropdown { display: none; }
  .nav-inner {
    padding-left: 18px !important;
    padding-right: 8px !important;
  }
}

/* mobile: padding fora reduzido */
@media (max-width: 720px) {
  .nav { padding: 10px 12px 0 !important; }
  .nav-inner {
    padding-left: 14px !important;
    padding-right: 6px !important;
    border-radius: 999px !important;
  }
}

/* ─── Mobile menu · grupo "Nossos Serviços" ─── */
.nav-mobile-group-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pn-text-soft);
  opacity: .55;
  padding: 8px 0 4px;
  margin-top: 12px;
}
.nav-mobile-group-label:first-child { margin-top: 0; }
.nav-mobile-item {
  display: flex !important;
  align-items: center;
  gap: 14px;
}
.nav-mobile-item .nav-dropdown-icon {
  width: 40px;
  height: 40px;
}
.nav-mobile-item .nav-dropdown-icon svg {
  width: 22px;
  height: 22px;
}

/* ═══════════════════════════════════════════
   POLISH PASS · identidade + microdetalhes
═══════════════════════════════════════════ */

/* ─── CTAs padronizados · amarelo = ação principal ─── */
.btn-primary {
  background: var(--pn-yellow);
  color: var(--pn-navy, #0c2b52);
  box-shadow: 0 6px 18px rgba(244, 184, 42, .35);
}
.btn-primary:hover { background: #ffc63d; color: var(--pn-navy, #0c2b52); }

/* Ghost claro p/ fundos com foto (hero) */
.btn-ghost-light {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

/* ─── Hero home · tint mais forte na esquerda (legibilidade) ─── */
.hero-fullbleed .hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 30, 22, 0.62) 0%, rgba(8, 30, 22, 0.30) 48%, rgba(8, 30, 22, 0.10) 100%),
    linear-gradient(180deg, rgba(8, 30, 22, 0.18) 0%, rgba(8, 30, 22, 0.42) 100%);
}
.hero-ctas { gap: 14px; }

/* footer-logo-img handled above in footer-brand .logo block */

/* ─── Footer · respiro mais enxuto ─── */
.footer-grid { row-gap: 28px; }
.footer-help { padding-bottom: 28px; }

/* ─── Soluções · teaser nos cards fechados ─── */
.solution-mini {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.solution-mini .solution-mini-title { margin-top: 0; }
.solution-mini-teaser {
  display: none;
  margin: 0;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--pn-text-mute);
}
.solution:not(.open) .solution-mini-teaser { display: block; }
.solution:not(.open):hover .solution-mini-teaser { color: var(--pn-text-soft); }

/* ─── Coparticipação · header azul (conversa com a paleta) ─── */
.copart-table .head { background: var(--pn-blue); }

/* ─── Depoimentos · aspas decorativas ─── */
.testi-main { position: relative; }
.testi-main::before {
  content: "\201C";
  position: absolute;
  top: -28px;
  left: 14px;
  font-family: Georgia, serif;
  font-size: 150px;
  line-height: 1;
  color: var(--pn-blue-soft);
  pointer-events: none;
  z-index: 0;
}
.testi-main > * { position: relative; z-index: 1; }

/* ─── Anchors · não esconder atrás do nav sticky ─── */
section[id], [id="plano"], [id="copart"], [id="faq"], [id="como-funciona"], [id="porque"] {
  scroll-margin-top: 96px;
}

/* ─── Cookie banner · barra compacta inferior ─── */
.cookie-banner {
  left: 12px;
  right: 12px;
  bottom: 12px;
  max-width: none;
}
.cookie-banner-inner { padding: 14px 18px; }
.cookie-banner-copy p { font-size: 12px; line-height: 1.45; margin: 4px 0 10px; }
.cookie-banner-copy strong { font-size: 13px; }
.cookie-banner-actions { gap: 8px; }
.cookie-banner-actions button { padding: 8px 14px; font-size: 12.5px; }
@media (min-width: 760px) {
  .cookie-banner { left: auto; right: 20px; bottom: 20px; max-width: 480px; }
}

/* ═══════════════════════════════════════════
   IDENTIDADE VISUAL · Grain + Progressão de Cores (manual hekbay)
   Assinatura: blooms suaves nas bordas — amarelo à esquerda,
   teal à direita, azul no rodapé — sobre off-white, com granulado.
   Paleta: Navy #0c2b52 · Blue #0a4681 · Teal #1b8b73 · Offwhite #f7f4ef · Yellow #f2c52f
═══════════════════════════════════════════ */

/* ─── Grain overlay global (efeito granulado/chiado) ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.05;
  mix-blend-mode: overlay;
}
@media (prefers-reduced-motion: reduce) {
  body::after { display: none; }
}

/* ─── HOME · assinatura hekbay no hero (amarelo esq. · teal dir. · azul base) ─── */
.hero::before {
  background-image:
    radial-gradient(ellipse 46% 90% at -6% 12%, rgba(242, 197, 47, .20) 0%, transparent 62%),
    radial-gradient(ellipse 44% 85% at 106% 18%, rgba(27, 139, 115, .17) 0%, transparent 62%),
    radial-gradient(ellipse 70% 50% at 50% 112%, rgba(10, 70, 129, .12) 0%, transparent 65%);
}

/* Hero strip: transição entre hero e seções claras */
.hero-strip {
  background:
    radial-gradient(ellipse 80% 100% at 20% 0%, rgba(10, 70, 129, .09) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 85% 0%, rgba(27, 139, 115, .08) 0%, transparent 60%),
    linear-gradient(180deg, var(--pn-bg-darker) 0%, #fff 100%);
}

/* ─── HOME · progressão de cores por seção ─── */
#porque.section {
  background:
    radial-gradient(ellipse 90% 60% at 5% 100%, rgba(27, 139, 115, .14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 98% 5%, rgba(10, 70, 129, .10) 0%, transparent 50%),
    var(--pn-bg, #f7f4ef);
}
#plano.section {
  background:
    radial-gradient(ellipse 80% 55% at 95% 95%, rgba(10, 70, 129, .13) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 2% 5%, rgba(242, 197, 47, .10) 0%, transparent 50%),
    var(--pn-bg-soft, rgba(12, 43, 82, .05));
}
#copart.section {
  background:
    radial-gradient(ellipse 75% 55% at 0% 50%, rgba(242, 197, 47, .12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 100%, rgba(27, 139, 115, .11) 0%, transparent 55%),
    var(--pn-bg, #f7f4ef);
}
#como-funciona.section {
  background:
    radial-gradient(ellipse 70% 60% at 100% 10%, rgba(27, 139, 115, .13) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 0% 90%, rgba(10, 70, 129, .10) 0%, transparent 50%),
    var(--pn-bg-soft, rgba(12, 43, 82, .05));
}
.section.section-soft:has(.testi-shell) {
  background:
    radial-gradient(ellipse 80% 60% at 5% 20%, rgba(10, 70, 129, .11) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 98% 80%, rgba(27, 139, 115, .10) 0%, transparent 55%),
    var(--pn-bg-soft, rgba(12, 43, 82, .05));
}
#faq.section {
  background:
    radial-gradient(ellipse 80% 55% at 100% 100%, rgba(12, 43, 82, .11) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(27, 139, 115, .09) 0%, transparent 50%),
    var(--pn-bg, #f7f4ef);
}
#comparativo.section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(10, 70, 129, .11) 0%, transparent 55%),
    var(--pn-bg, #f7f4ef);
}

/* ─── NR-1 · blooms nas seções claras ───
   Prefixo `section.` garante prioridade sobre as folhas por página,
   que carregam depois deste arquivo */
section.nr1-features {
  background:
    radial-gradient(ellipse 50% 80% at -5% 30%, rgba(242, 197, 47, .12) 0%, transparent 60%),
    radial-gradient(ellipse 55% 70% at 105% 80%, rgba(27, 139, 115, .12) 0%, transparent 60%),
    var(--nr1-cream, #f7f4ef);
}
section.nr1-beneficios {
  background:
    radial-gradient(ellipse 70% 55% at 95% 5%, rgba(10, 70, 129, .10) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 0% 95%, rgba(27, 139, 115, .12) 0%, transparent 55%),
    var(--nr1-bg-soft, rgba(27, 139, 115, .12));
}
section.nr1-faq {
  background:
    radial-gradient(ellipse 60% 55% at 100% 100%, rgba(12, 43, 82, .10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at -4% 10%, rgba(242, 197, 47, .09) 0%, transparent 55%),
    var(--nr1-bg-cream, #f7f4ef);
}
section.nr1-closing {
  background:
    radial-gradient(ellipse 55% 70% at -5% 50%, rgba(27, 139, 115, .12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 105% 30%, rgba(10, 70, 129, .10) 0%, transparent 60%),
    var(--nr1-bg-cream, #f7f4ef);
}

/* ─── PLANTÃO 24h · blooms nas seções claras ─── */
section.p24-acionamento {
  background:
    radial-gradient(ellipse 50% 80% at -6% 25%, rgba(242, 197, 47, .12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 106% 75%, rgba(27, 139, 115, .12) 0%, transparent 60%),
    var(--p24-cream, #f7f4ef);
}
section.p24-video {
  background:
    radial-gradient(ellipse 60% 60% at 100% 10%, rgba(10, 70, 129, .10) 0%, transparent 58%),
    radial-gradient(ellipse 50% 50% at 0% 90%, rgba(27, 139, 115, .11) 0%, transparent 55%),
    var(--p24-cream, #f7f4ef);
}
section.p24-psi {
  background:
    radial-gradient(ellipse 55% 65% at -5% 60%, rgba(27, 139, 115, .12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 55% at 105% 15%, rgba(242, 197, 47, .10) 0%, transparent 58%),
    var(--p24-cream, #f7f4ef);
}
/* Seções sem fundo próprio · só o bloom, deixa o fundo do body aparecer */
section.p24-fluxo {
  background:
    radial-gradient(ellipse 55% 60% at 105% 45%, rgba(10, 70, 129, .10) 0%, transparent 58%),
    radial-gradient(ellipse 45% 50% at -5% 80%, rgba(242, 197, 47, .09) 0%, transparent 55%);
}
section.p24-presenca {
  background:
    radial-gradient(ellipse 55% 60% at -5% 30%, rgba(27, 139, 115, .11) 0%, transparent 58%),
    radial-gradient(ellipse 45% 50% at 105% 85%, rgba(10, 70, 129, .09) 0%, transparent 55%);
}
section.p24-prof {
  background:
    radial-gradient(ellipse 55% 60% at 105% 25%, rgba(27, 139, 115, .10) 0%, transparent 58%),
    radial-gradient(ellipse 45% 50% at -5% 90%, rgba(10, 70, 129, .09) 0%, transparent 55%);
}

/* ─── REDE · blooms nas seções claras ─── */
section.rede-unidades {
  background:
    radial-gradient(ellipse 50% 70% at -6% 30%, rgba(242, 197, 47, .11) 0%, transparent 60%),
    radial-gradient(ellipse 50% 65% at 106% 75%, rgba(27, 139, 115, .11) 0%, transparent 60%);
}
section.rede-mapa {
  background:
    radial-gradient(ellipse 60% 60% at 100% 5%, rgba(10, 70, 129, .10) 0%, transparent 58%),
    radial-gradient(ellipse 50% 50% at 0% 95%, rgba(27, 139, 115, .10) 0%, transparent 55%),
    var(--rede-bg, #f7f4ef);
}
section.rede-notfound {
  background:
    radial-gradient(ellipse 55% 65% at -5% 50%, rgba(27, 139, 115, .11) 0%, transparent 60%),
    radial-gradient(ellipse 50% 55% at 105% 40%, rgba(12, 43, 82, .09) 0%, transparent 58%),
    var(--rede-bg-soft, rgba(12, 43, 82, .05));
}

/* ─── Grain extra nas seções escuras (pontos estratégicos) ─── */
.cta-final::after,
.footer::after,
.nr1-prazo::after,
.p24-closing::after,
.rede-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.035;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

/* ─── Typography brand · títulos com gradient text em dark sections ─── */
.section-dark .display-xl em,
.cta-final h2 em,
.footer-help h2 em,
.nr1-hero-title em,
.p24-hero-title em {
  background: linear-gradient(135deg, var(--pn-yellow) 0%, #f2c52f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* ─── Separador visual entre seções claras e escuras ─── */
.section + .cta-final,
.section.section-soft + .cta-final {
  margin-top: 0;
  border-top: 1px solid rgba(12, 43, 82, .06);
}

/* Manchas de imagem aposentadas — os blooms de gradiente assumem o papel ─── */
span.p24-blob { display: none; }
img.nr1-features-blob { display: none; }

/* Blooms mais econômicos em mobile (menos camadas por seção) */
@media (max-width: 720px) {
  .hero::before {
    background-image:
      radial-gradient(ellipse 80% 60% at 0% 0%, rgba(242, 197, 47, .14) 0%, transparent 60%),
      radial-gradient(ellipse 80% 60% at 100% 100%, rgba(27, 139, 115, .12) 0%, transparent 60%);
  }
}

/* ═══════════════════════════════════════════
   POLISH MOBILE · correções de layout ≤720px
   Auditoria jul/2026: hero sem padding lateral, tabela de
   coparticipação espremida, cards de stats apertados,
   seções longas demais no Plantão/NR-1.
═══════════════════════════════════════════ */
@media (max-width: 720px) {

  /* 1 · Hero da home: o reset `padding: 28px 0 36px !important`
     zerava o respiro lateral — texto colava na borda da tela */
  .hero-fullbleed .hero-inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* 2 · Tabela de coparticipação: 4 colunas não cabem em 343px.
     Vira scroll horizontal suave, mantendo todas as informações */
  .copart-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .copart-table .head,
  .copart-table .row { min-width: 500px; }
  .copart-table .head { position: sticky; left: 0; }

  /* 3 · Labels de formulário legíveis (eram 10.5px) */
  .c-label { font-size: 12px !important; }

  /* 5 · Plantão: menos ar vertical — seções chegavam a 2200px de altura */
  .p24-acionamento, .p24-fluxo, .p24-presenca, .p24-psi, .p24-closing {
    padding-top: clamp(52px, 8vw, 72px) !important;
    padding-bottom: clamp(52px, 8vw, 72px) !important;
  }
  section .p24-section-head { margin-bottom: 28px; }
  section .p24-section-lead { font-size: 15px; }
  section .p24-ac-card { padding: 22px 18px; }

  /* NR-1: mesmo tratamento */
  .nr1-features, .nr1-beneficios, .nr1-faq, .nr1-closing, .nr1-prazo {
    padding-top: clamp(52px, 8vw, 72px) !important;
    padding-bottom: clamp(52px, 8vw, 72px) !important;
  }
}

/* 4 · Cards de estatística: 2 colunas de 164px não comportam
   parágrafos — abaixo de 560px vira coluna única */
@media (max-width: 560px) {
  .stat-grid { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════
   LEAD FORM · proposta em 3 campos (footer)
═══════════════════════════════════════════ */
.lead-form {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  padding: 22px;
  width: 100%;
  max-width: 420px;
}
.lead-form-fields { display: grid; gap: 12px; margin-bottom: 14px; }
.lead-field span {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 5px;
}
.lead-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .92);
  color: var(--pn-navy, #0c2b52);
  font-family: var(--font-body);
  font-size: 14.5px;
}
.lead-field input:focus {
  outline: 2px solid var(--pn-yellow, #f2c52f);
  outline-offset: 1px;
  border-color: transparent;
}
.lead-form-btn { width: 100%; justify-content: center; }
.lead-form-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  text-align: center;
}
@media (max-width: 720px) {
  .lead-form { max-width: none; padding: 18px; }
}

/* ═══════════════════════════════════════════
   POLISH MOBILE 2 · auditoria visual jul/2026
   Heros de serviço colavam na pílula de navegação fixa;
   título da NR-1 estourava a viewport.
═══════════════════════════════════════════ */
@media (max-width: 720px) {
  /* Respiro para a pílula de navegação flutuante (~90px de altura útil) */
  section.nr1-hero { padding-top: 112px !important; }
  section.p24-hero { padding-top: 112px !important; }

  /* Título NR-1: "Conformidade Legal" em itálico estourava a borda direita */
  [data-variant="nr1"] .nr1-hero-title {
    font-size: clamp(25px, 8vw, 32px) !important;
    line-height: 1.18 !important;
    overflow-wrap: break-word;
    padding-right: 8px;
  }
}

/* Lead form: labels alinhadas à esquerda (herdavam centralização do footer) */
.lead-form { text-align: left; }
.lead-field span { text-align: left; }

/* ═══════════════════════════════════════════
   MENU MOBILE · redesign minimalista (jul/2026)
   Antes: cards grandes com texto centralizado entre ícone e seta.
   Agora: lista limpa alinhada à esquerda, divisores hairline,
   tipografia de corpo, CTA discreto.
═══════════════════════════════════════════ */
.nav-mobile-list { gap: 0; padding: 20px 26px 30px; }

.nav-mobile-list a.nav-mobile-item {
  font-family: var(--font-body, Inter, system-ui, sans-serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  padding: 17px 2px;
  min-height: 0;
  justify-content: flex-start;
  gap: 14px;
  color: rgba(255, 255, 255, .92);
}
.nav-mobile-list a.nav-mobile-item:last-of-type { border-bottom: none; }

/* Ícone: sem chip, só o traço, discreto */
.nav-mobile-item .nav-dropdown-icon {
  width: 21px;
  height: 21px;
  min-width: 21px;
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  color: rgba(255, 255, 255, .45);
  display: inline-flex;
  align-items: center;
}
.nav-mobile-item .nav-dropdown-icon svg { width: 20px; height: 20px; }

/* Seta encostada à direita, neutra */
.nav-mobile-list a.nav-mobile-item::after {
  content: "→";
  margin-left: auto;
  font-size: 15px;
  font-style: normal;
  color: rgba(255, 255, 255, .30);
}

.nav-mobile-list a.nav-mobile-item:hover,
.nav-mobile-list a.nav-mobile-item:active,
.nav-mobile-list a.nav-mobile-item:focus {
  background: transparent;
  border-color: rgba(255, 255, 255, .09);
  transform: none;
  color: var(--pn-yellow, #f2c52f);
}
.nav-mobile-list a.nav-mobile-item:hover::after { color: var(--pn-yellow, #f2c52f); }

/* Label do grupo: menor e mais espaçado */
.nav-mobile-group-label {
  font-size: 11px !important;
  letter-spacing: .14em !important;
  color: rgba(255, 255, 255, .40) !important;
  margin-bottom: 4px !important;
}

/* CTA WhatsApp: pill mais contida, sem glow exagerado */
.nav-mobile-cta {
  margin-top: 26px !important;
  padding: 15px 22px !important;
  font-size: 15px !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, .22) !important;
}

/* Rodapé do drawer: sem itálico, mais discreto */
.nav-mobile-list::after {
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, .40);
}

/* ─── NR-1 · mockup do hero escondido no mobile (ficava esticado/cortado) ─── */
@media (max-width: 720px) {
  .nr1-hero-visual { display: none !important; }
  /* sem o mockup, o hero fecha mais cedo — compensa o respiro inferior */
  section.nr1-hero { padding-bottom: 40px !important; }
}

/* ═══════════════════════════════════════════
   MOBILE EDITORIAL · "um painel, uma ideia" (jul/2026)
   Desktop permanece completo; no celular cada seção vira um
   painel enxuto: eyebrow + título curto + 1 parágrafo reescrito
   + protagonista visual. Segue o manual hekbay (blooms + grain).
═══════════════════════════════════════════ */

/* Texto adaptativo (par com o componente <Txt/>) */
.t-short { display: none; }

@media (max-width: 720px) {
  /* utilitários */
  .m-hide { display: none !important; }
  .t-long { display: none; }
  .t-short { display: inline; }

  /* ─── Ritmo editorial: menos ar entre blocos, títulos dominantes ─── */
  .section-head { margin-bottom: 26px; }
  .section-head .lead { font-size: 15px; line-height: 1.5; }
  .display-lg { font-size: clamp(27px, 8.4vw, 34px); line-height: 1.12; }

  /* ─── KPIs do hero-strip: 2 lado a lado, números protagonistas ─── */
  .hero-strip-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px;
  }
  .hero-strip-grid li strong { font-size: 30px; }
  .hero-strip-grid li span { font-size: 12.5px; line-height: 1.35; }

  /* ─── Stats: números gigantes, painel de impacto ─── */
  .stat-card .num { font-size: 64px; letter-spacing: -0.03em; }
  .stat-card { text-align: left; }
  .stat-sources { display: none; } /* fontes ficam no desktop */

  /* ─── Timeline vira stepper fino: número + título + quando ─── */
  .timeline { gap: 0 !important; }
  .timeline .step {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 2px;
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(12, 43, 82, .10);
    box-shadow: none;
  }
  .timeline .step:last-child { border-bottom: none; }
  .timeline .step .num {
    font-size: 22px;
    margin: 0;
    color: var(--pn-blue, #0a4681);
    opacity: .55;
  }
  .timeline .step h3 { font-size: 16px; margin: 0; }
  .timeline .step p { display: none; }   /* descrição fica no desktop */
  .timeline .step .when {
    position: static;
    margin: 0;
    font-size: 11.5px;
    white-space: nowrap;
  }

  /* ─── Depoimentos: só o cartão, sem coluna introdutória ─── */
  .testi-side { display: none; }
  .testi-shell { grid-template-columns: 1fr !important; }

  /* ─── Footer enxuto: marca + formulário + legal (links no desktop) ─── */
  .footer-grid .footer-col { display: none; }
  .footer-grid { grid-template-columns: 1fr !important; }
}

/* ─── NR-1 · painéis mobile ─── */
@media (max-width: 720px) {
  /* Benefícios: pill + título + desc (fotos e listas ficam no desktop) */
  .nr1-beneficio-portrait { display: none; }
  .nr1-beneficio-list { display: none; }
  .nr1-beneficio-card { padding: 22px 20px; }

  /* Prazo: um card só — o de multas (o mais concreto) */
  .nr1-prazo-card:nth-child(1),
  .nr1-prazo-card:nth-child(3) { display: none; }

  /* Figuras 3D decorativas do header de features */
  .nr1-features-figures { display: none; }
}

/* ─── Plantão 24h · painéis mobile ─── */
@media (max-width: 720px) {
  /* Cards de acionamento: 2 bullets por card */
  .p24-ac-card-list li:nth-child(n+3) { display: none; }

  /* Fluxo vira stepper: número + título + timing (desc no desktop) */
  .p24-fluxo-step-desc { display: none; }
  .p24-fluxo-step { padding-bottom: 14px; }

  /* Presença: número + título como stepper */
  .p24-presenca-card-desc { display: none; }
  .p24-presenca-card { padding: 18px 16px; }
  .p24-presenca-note { display: none; }

  /* Citação secundária do hero fica no desktop */
  .p24-hero-lead--muted { display: none; }
}

/* ═══════════════════════════════════════════
   IDENTIDADE · SEM ITÁLICO (decisão de marca, jul/2026)
   As fontes da marca (Sora/Inter) não têm itálico verdadeiro —
   o navegador gerava oblíquo falso e sujo. Itálico banido do site.
═══════════════════════════════════════════ */
html body * { font-style: normal !important; }

/* ═══════════════════════════════════════════
   MOBILE v3 · minimalismo radical
═══════════════════════════════════════════ */
@media (max-width: 720px) {

  /* ─── Escala tipográfica única (consistência de tamanhos) ─── */
  .display-lg, .display-xl, .nr1-section-title, .p24-section-title,
  .nr1-features-title, .nr1-prazo-title, .nr1-closing-title {
    font-size: 27px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.015em;
  }
  .lead, .nr1-section-sub, .p24-section-lead { font-size: 14.5px !important; }
  h3 { font-size: 16.5px; }

  /* ─── Hero: 1 CTA só, sem setas de paginação ─── */
  .hero-ctas a:nth-child(2) { display: none; }
  .hero-pager { display: none !important; }

  /* ─── KPIs alinhados (números na mesma linha de base) ─── */
  .hero-strip-grid li {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .hero-strip-grid li strong {
    font-size: 28px;
    line-height: 1.05;
    min-height: 34px;
    display: flex;
    align-items: baseline;
    gap: 3px;
  }
  .hero-strip-grid li strong small { font-size: 13px; }

  /* ─── Coparticipação: SEM scroll lateral — vira cartões empilhados.
     Cada linha mostra o serviço e o que o colaborador paga. ─── */
  .copart-table { overflow: visible; }
  .copart-table .head { display: none; }
  .copart-table .head, .copart-table .row { min-width: 0; }
  .copart-table .row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "item total";
    align-items: center;
    gap: 4px 12px;
    padding: 15px 16px;
  }
  .copart-table .row .item  { grid-area: item; font-size: 14px; }
  .copart-table .row .total { grid-area: total; font-size: 19px; white-space: nowrap; }
  /* valor cheio e coluna Pantanal ficam no desktop */
  .copart-table .row .colab { display: none; }
  .copart-table .row .pn    { display: none; }
  .copart-table .row .total small { font-size: 11px; }
  /* nota longa de exemplos fica no desktop */
  .copart-footer { display: none; }

  /* ─── Ícone/etiqueta "exemplo" mais discreta ─── */
  .copart-example-tag { font-size: 9.5px; }
}

/* ═══════════════════════════════════════════
   MOBILE v4 · KPIs simétricos + menos ruído (jul/2026)
═══════════════════════════════════════════ */
@media (max-width: 720px) {
  /* KPIs do hero-strip: dois cartões idênticos e centrados —
     estrutura simétrica elimina qualquer desnível */
  .hero-strip { padding: 26px 0 !important; }
  .hero-strip .container { padding: 0 20px; }
  .hero-strip-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px;
    align-items: stretch;
  }
  .hero-strip-grid li {
    background: #fff;
    border: 1px solid rgba(12, 43, 82, .10);
    border-radius: 16px;
    padding: 18px 12px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 !important;
    border-right: 1px solid rgba(12, 43, 82, .10) !important;
  }
  .hero-strip-grid li strong {
    font-size: 27px !important;
    line-height: 1 !important;
    min-height: 0 !important;
    display: inline-flex !important;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    white-space: nowrap;
  }
  .hero-strip-grid li strong small { font-size: 12.5px !important; }
  .hero-strip-grid li span {
    font-size: 12px !important;
    line-height: 1.3 !important;
    color: var(--pn-text-soft, rgba(12, 43, 82, .68));
  }

  /* Hero ainda mais limpo: linha de estrelas/press fica no desktop */
  .hero-rating { display: none !important; }
  .hero-fullbleed .hero-lead { min-height: 0 !important; }
}

/* ═══════════════════════════════════════════
   MOBILE v5 · disciplina de cores + rede enxuta (jul/2026)
   Regra de cor no mobile: AMARELO só em CTA e sobre fundo escuro;
   AZUL é o único acento em fundo claro; chips/etiquetas neutros.
═══════════════════════════════════════════ */
@media (max-width: 720px) {
  /* Acentos de título em fundo claro: sempre azul (um acento só) */
  .section em, .section-soft em,
  .nr1-features em, .nr1-faq em, .nr1-closing em, .nr1-beneficios em,
  .p24-acionamento em, .p24-fluxo em, .p24-presenca em, .p24-psi em,
  .rede-unidades em, .rede-notfound em {
    color: var(--pn-blue, #0a4681) !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
  }

  /* Eyebrows/etiquetas: neutros (nada de pílulas coloridas em fundo claro) */
  .eyebrow {
    background: transparent !important;
    color: var(--pn-text-soft, rgba(12, 43, 82, .68)) !important;
    padding: 0 !important;
  }

  /* Rede: hero só com o título — mais baixo e centrado */
  .rede-hero {
    min-height: 300px !important;
    padding: 120px 0 56px !important;
  }
  .rede-hero-title { font-size: clamp(34px, 11vw, 44px) !important; }
}

/* ═══ LOOP PREMIUM · iteração 1 (correções de cascata) ═══ */
@media (max-width: 720px) {
  /* D4/D7 · acento AZUL em títulos de fundo claro nas páginas de serviço —
     o `html` no seletor vence os overrides por variant (--accent teal/amarelo) */
  /* NR-1 usa o Verde NR1 do manual (#1b8b73); Plantão usa azul em fundo
     claro (amarelo fica ilegível) e amarelo em CTAs/fundo escuro */
  html[data-variant="nr1"] .nr1-features-title em,
  html[data-variant="nr1"] .nr1-section-title em,
  html[data-variant="nr1"] .nr1-closing-title em,
  html[data-variant="nr1"] .nr1-feature-title em,
  html[data-variant="nr1"] .nr1-beneficio-title em {
    color: var(--pn-teal, #1b8b73) !important;
  }
  html[data-variant="plantao"] .p24-section-title em {
    color: var(--pn-blue, #0a4681) !important;
  }
  /* fundo escuro continua amarelo (contraste) */
  html[data-variant="nr1"] .nr1-hero-title em,
  html[data-variant="nr1"] .nr1-prazo-title em,
  html[data-variant="plantao"] .p24-hero-title em {
    color: var(--pn-yellow, #f2c52f) !important;
  }

  /* D6 · lista de bullets dos benefícios NR-1 fica no desktop
     (o `section` vence o empate com nr1.css, que carrega depois) */
  section .nr1-beneficio-list { display: none !important; }
  section .nr1-beneficio-portrait { display: none !important; }
}

/* ═══ LOOP PREMIUM · iteração 3 (feedback do usuário, jul/2026) ═══ */
@media (max-width: 720px) {
  /* Números com presença, sem gritar (eram 64px) */
  .stat-card .num { font-size: 40px; }
  .hero-strip-grid li strong { font-size: 23px !important; }

  /* Plantão: quadro/visual do hero fica no desktop */
  .p24-hero-visual { display: none !important; }
  section.p24-hero { padding-bottom: 44px !important; }

  /* Sem o lead do #porque, o título respira direto pros cards */
  #porque .section-head { margin-bottom: 20px; }
}

/* ═══════════════════════════════════════════
   MANUAL HEKBAY · R.2/R.3 tipografia (jul/2026)
   Escala fixa: Display 48/800 · H1 32/700 · H2 24/700 ·
   Body 15-18/400 · Caption 12/500. Alinhamento à esquerda
   como padrão; centralizado apenas em capas (heros).
═══════════════════════════════════════════ */

/* ─── Alinhamento à esquerda como padrão ─── */
.section-head,
.nr1-section-head,
.nr1-prazo-head,
.p24-section-head,
.p24-section-head--center,
.rede-unidades-head,
.rede-mapa-head {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}
.section-head .lead,
.nr1-section-head .nr1-section-sub,
.p24-section-head .p24-section-lead {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
/* Capas continuam centralizadas: hero da rede */
.rede-hero-inner { text-align: center; }

/* ─── Escala tipográfica fixa (desktop) ─── */
.display-xl,
.hero-fullbleed .hero-title {
  font-size: 48px !important;
  font-weight: 800 !important;
  line-height: 1.06 !important;
}
.display-lg,
.nr1-features-title,
.nr1-section-title,
.nr1-prazo-title,
.nr1-closing-title,
.p24-section-title,
.rede-unidades-head h2 {
  font-size: 32px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
}
.lead, .nr1-section-sub, .p24-section-lead { font-size: 17px; font-weight: 400; }
.eyebrow, .c-label { font-size: 12px !important; font-weight: 500 !important; }

/* ─── Mobile desce um degrau da MESMA escada (sem tamanhos inventados) ─── */
@media (max-width: 720px) {
  .display-xl,
  .hero-fullbleed .hero-title { font-size: 32px !important; }
  .display-lg,
  .nr1-features-title,
  .nr1-section-title,
  .nr1-prazo-title,
  .nr1-closing-title,
  .p24-section-title,
  .rede-unidades-head h2 { font-size: 24px !important; }
  .lead, .nr1-section-sub, .p24-section-lead { font-size: 15px !important; }
  [data-variant="nr1"] .nr1-hero-title { font-size: 32px !important; }
}

/* ═══ AJUSTE DO GIRO À ESQUERDA · pontos que não fecharam sozinhos ═══ */

/* NR-1 · seção de prazo: o container centralizava os filhos enquanto o
   título foi pra esquerda — agora o bloco inteiro alinha junto */
.nr1-prazo > .container { text-align: left !important; }
.nr1-prazo-countdown { text-align: left !important; margin-left: 0 !important; }
.nr1-prazo-sub {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  max-width: 58ch;
}

/* "em vigor": sai o chip de fundo escuro, fica só o amarelo do sistema */
.nr1-prazo-date {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* NR-1 · cabeçalho de features: título ganha coluna dominante e
   centraliza verticalmente com os bonecos (antes: 50/50 ancorado
   embaixo, título espremido em 5 linhas) */
.nr1-features-head {
  grid-template-columns: 1.35fr 1fr !important;
  align-items: center !important;
}
.nr1-features-title { max-width: none !important; }
.nr1-features-figures img { max-width: 380px; }

/* Leads que seguiam centralizados sob títulos à esquerda */
.section-head .lead { margin-left: 0 !important; }
.rede-unidades-head p { margin-left: 0 !important; text-align: left; }

/* ═══ COERÊNCIA DE ALINHAMENTO · auditoria full-site (jul/2026) ═══
   Regra: dentro de um bloco, título e filhos alinham JUNTOS.
   Ofensores encontrados: footer-help (todas as páginas) e cards
   do prazo NR-1 — título à esquerda com filhos centrados. */

/* Footer "Precisa de ajuda?": bloco inteiro à esquerda,
   como coluna de conteúdo ao lado do formulário */
.footer-help-copy { text-align: left !important; }
.footer-help-copy .help-phone {
  text-align: left;
  margin-left: 0 !important;
  margin-right: auto !important;
}
.footer-help-copy .help-sub {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 46ch;
}

/* Cards do prazo NR-1: conteúdo interno alinha à esquerda,
   coeso com o cabeçalho da seção */
.nr1-prazo-card { text-align: left !important; }
.nr1-prazo-card .nr1-prazo-card-icon,
.nr1-prazo-card svg { margin-left: 0 !important; margin-right: auto !important; }
.nr1-prazo-card-title { text-align: left !important; }
.nr1-prazo-card-desc { text-align: left !important; margin-left: 0 !important; }

/* Mobile: o footer empilha — mantém a esquerda também */
@media (max-width: 720px) {
  .footer-help { text-align: left !important; }
  .footer-help-copy .display-lg { text-align: left !important; }
}

/* Últimos órfãos de centralização (auditoria full-site) */
.stat-sources { text-align: left !important; }
.lead-form-note { text-align: left !important; }

/* NR-1 · acentos internos seguem o serviço (verde), amarelo só urgência */
html[data-variant="nr1"] .nr1-check { color: var(--pn-teal, #1b8b73) !important; background: rgba(27, 139, 115, .14) !important; }
html[data-variant="nr1"] .nr1-beneficio-portrait--warm {
  border-color: var(--pn-teal, #1b8b73) !important;
  box-shadow: 0 0 0 3px var(--pn-teal, #1b8b73), 0 6px 18px rgba(12, 43, 82, .12) !important;
}

/* ═══════════════════════════════════════════
   PALETA ESTRITA · fundos claros 100% off-white flat (jul/2026)
   As cores de serviço entram SÓLIDAS em detalhes (7% de uso do
   manual): texto, ícone, borda, chip. Nunca como campo pastel.
═══════════════════════════════════════════ */
#porque.section, #plano.section, #copart.section, #como-funciona.section,
.section.section-soft, #faq.section, #comparativo.section,
section.nr1-features, section.nr1-beneficios, section.nr1-faq, section.nr1-closing,
section.p24-acionamento, section.p24-video, section.p24-psi, section.p24-fluxo,
section.p24-presenca, section.p24-prof,
section.rede-unidades, section.rede-mapa, section.rede-notfound,
.hero-strip {
  background: var(--pn-offwhite, #f7f4ef) !important;
}

/* Chips/pills: fundo neutro, cor do serviço na borda e no texto */
.nr1-beneficio-pill {
  background: #fff !important;
  border: 1px solid rgba(27, 139, 115, .45) !important;
  color: var(--pn-teal, #1b8b73) !important;
}
.nr1-beneficio-pill svg { color: var(--pn-teal, #1b8b73) !important; }
