﻿/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --red:        #CC2B2B;
  --red-on-dark:#FF5757;          /* WCAG AA: 6:1 em fundo dark */
  --red-pale:   #fdf0f0;
  --red-dim:    rgba(204,43,43,0.10);
  --dark:       #111111;
  --dark2:      #1e1e1e;
  --bg:         #ffffff;
  --bg2:        #f7f7f5;
  --gray:       #4a4a4a;          /* contraste AA em texto secundário */
  --gray-lt:    #6b6b6b;
  --white:      #ffffff;
  --green:      #25D366;          /* brand - usar em ícones/decorativo */
  --green-cta:  #0E775A;          /* CTAs: branco passa AA (5.5:1) */
  --r:          8px;
  --r-lg:       16px;

  /* layout fluido - sem trava de largura no body
     conteúdo centraliza além de 1440px via gutter
     padding fluido entre mobile e desktop com clamp()
     PADRÃO REGRA DOS 8: tudo em múltiplos de 8 */
  --content-max: 1440px;
  --pad-y: clamp(48px, 6vw, 88px);    /* reduzido - dobras mais compactas */
  --pad-x: clamp(24px, 5vw, 72px);
  --gutter: max(var(--pad-x), calc((100vw - var(--content-max)) / 2));
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--dark);
  width: 100%;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   UTILITÁRIOS
═══════════════════════════════════════════ */
.wp-icon { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.eyebrow-line { width: 32px; height: 2px; background: var(--red); flex-shrink: 0; }
.eyebrow-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}
.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;                          /* maior para público 50+ */
  color: var(--gray);                       /* #4a4a4a → 9.7:1 WCAG */
  line-height: 1.7;
  font-weight: 400;
  max-width: 560px;
  margin-bottom: 8px;
}
.section-title--white { color: #fff; }
.section-sub--white { color: rgba(255,255,255,0.78); }

/* ═══════════════════════════════════════════
   BOTÕES WHATSAPP - tap target ≥ 48px (acessível para 50+)
═══════════════════════════════════════════ */
.btn-wp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--green-cta);             /* darker → branco passa AA */
  color: #fff;
  font-weight: 700;                         /* mais bold para legibilidade */
  border-radius: 8px;
  text-decoration: none;
  min-height: 48px;                         /* WCAG 2.5.5 - área mínima de toque */
  transition: background .2s, transform .2s;
}
.btn-wp:hover { background: #0a5d46; transform: translateY(-2px); }
.btn-wp:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.btn-wp--hero  { padding: 16px 32px; font-size: 16px; box-shadow: 0 8px 24px rgba(37,211,102,.32); }
.btn-wp--mid   { padding: 16px 32px; font-size: 16px; box-shadow: 0 4px 24px rgba(0,0,0,.24); }
.btn-wp--nav   { padding: 10px 20px; font-size: 14px; min-height: 40px; }
.btn-wp--nav .wp-icon { width: 16px; height: 16px; }
.btn-wp--final { padding: 18px 40px; font-size: 16px; box-shadow: 0 8px 32px rgba(0,0,0,.16); }

/* ═══════════════════════════════════════════
   FADE-IN ANIMATION
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Esconde apenas se JS estiver disponível - fallback acessível para crawlers,
   leitores de tela com JS off e usuários com prefers-reduced-motion */
html.js .reveal { opacity: 0; }
html.js .reveal.visible { animation: fadeUp .6s ease forwards; }
.reveal-delay-1 { animation-delay: .1s; }
.reveal-delay-2 { animation-delay: .2s; }
.reveal-delay-3 { animation-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; }
  html.js .reveal.visible { animation: none; }
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.nav-wrapper {
  width: 100%;
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s;
}

nav {
  max-width: var(--content-max);
  margin: 0 auto;
  height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--pad-x);
  gap: 24px;
}

.nav-brand { display: flex; flex-direction: column; gap: 2px; }
.nav-logo {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .2px;
}
.nav-sub {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,.65);             /* WCAG: 7.5:1 */
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.78);             /* WCAG: 10:1 */
  letter-spacing: .2px;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 24px 24px 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 16px; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero-wrapper {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.hero-ring-1 {
  position: absolute; top: -280px; right: -180px;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(204,43,43,.12);
  pointer-events: none; z-index: 0;
}
.hero-ring-2 {
  position: absolute; top: -160px; right: -60px;
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(204,43,43,.07);
  pointer-events: none; z-index: 0;
}

.hero-body {
  display: flex;
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 800px;                        /* altura mínima do hero em desktop/tablet */
}

.hero-left {
  width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;                  /* conteúdo flutua centralizado dentro dos 800px */
  padding-top: clamp(48px, 5vw, 80px);
  padding-bottom: clamp(48px, 5vw, 64px);
  padding-left: var(--gutter);
  padding-right: clamp(24px, 4vw, 64px);
  gap: 48px;                                /* gap controlado entre main e stats */
}
.hero-main { display: flex; flex-direction: column; }
.hero-stats { padding-top: 32px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0;                                   /* dot removido visualmente no Figma v4 */
  background: var(--red);                   /* pill sólida vermelha - Figma v4 */
  color: #ffffff;                           /* AA em vermelho */
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  margin-bottom: 24px;
  width: fit-content;
  border-radius: 6px;                       /* sutil - não totalmente pill */
}
.hero-tag-dot { display: none; }            /* removido no v4 */

.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--red-on-dark); }   /* AA em dark */

.hero-sub {
  font-size: 17px;                          /* maior - público 50+ */
  color: rgba(255,255,255,.75);             /* WCAG: 9.5:1 contraste */
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  border-top: 1px solid rgba(255,255,255,.12);
  /* padding-top + margin-top: auto definidos na regra de .hero-stats acima */
}
.hero-stat {
  flex: 1;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.hero-stat:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.hero-stat:not(:first-child):not(:last-child) { padding-left: 24px; }
.hero-stat-number {
  font-family: 'Lora', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--red-on-dark);                /* AA em dark */
  font-weight: 700;
  margin-bottom: 8px;
}
.hero-stat p {
  font-size: 11px;
  color: rgba(255,255,255,.65);             /* WCAG: 7.5:1 */
  letter-spacing: 1.6px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-right {
  width: 48%;
  position: relative;
  overflow: hidden;
}
.hero-right img {
  position: absolute;                       /* tira a foto do fluxo - não dita mais altura */
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 36%);
  z-index: 1;
}
.hero-accent-line {
  position: absolute;
  bottom: 0; left: 52%; right: 0;
  height: 4px;
  background: var(--red);
  z-index: 3;
}

/* ═══════════════════════════════════════════
   SEÇÕES BASE - full width bg, conteúdo centralizado via gutter
═══════════════════════════════════════════ */
section { width: 100%; padding: var(--pad-y) var(--gutter); }

/* ═══════════════════════════════════════════
   SOBRE - grid balanceado (não mais flex 1+fixo)
═══════════════════════════════════════════ */
#sobre { background: var(--bg2); }
.sobre-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: clamp(40px, 4.5vw, 64px);
  align-items: start;
  max-width: var(--content-max);
  margin: 0 auto;
}
.sobre-content { min-width: 0; }

.sobre-quote {
  border-left: 4px solid var(--red);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-family: 'Lora', serif;
  font-size: clamp(18px, 1.6vw, 20px);
  font-style: italic;
  color: var(--dark2);
  line-height: 1.6;
}
.sobre-bio {
  color: var(--gray);
  line-height: 1.8;
  font-weight: 400;
  font-size: 16px;
}

.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cred-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
  transition: transform .2s, box-shadow .2s;
}
.cred-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.cred-icon {
  width: 48px; height: 48px;
  background: var(--red-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.cred-icon svg { width: 24px; height: 24px; fill: var(--red); }
.cred-title {
  font-family: 'Lora', serif;
  font-size: 16px; font-weight: 600;
  color: var(--dark); line-height: 1.35;
}
.cred-text { font-size: 14px; color: var(--gray); line-height: 1.6; font-weight: 400; }

/* ═══════════════════════════════════════════
   CTA MID - fotografia + conteúdo equilibrados
   (proporção 48/52 - antes 42/58 deixava texto perdido)
═══════════════════════════════════════════ */
.cta-mid {
  width: 100%;
  display: flex;
  min-height: clamp(280px, 30vw, 360px);   /* foto não domina mais a tela */
  overflow: hidden;
}
.cta-mid-photo {
  width: 48%; flex-shrink: 0;
  position: relative; overflow: hidden;
}
.cta-mid-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
/* Dark CTA */
.cta-dark .cta-mid-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 58%, var(--dark) 100%);
}
.cta-dark .cta-mid-content { background: var(--dark); }
.cta-dark .cta-label  { color: var(--red-on-dark); }
.cta-dark .l-line     { background: var(--red-on-dark); }
.cta-dark h3 {
  font-family: 'Lora', serif;
  font-size: clamp(26px, 3.4vw, 36px); font-weight: 700;
  color: #fff; line-height: 1.2;
  margin-bottom: 16px;
}
.cta-dark h3 em { font-style: italic; color: var(--red-on-dark); }   /* AA em dark */
.cta-dark .cta-body {
  font-size: 16px; color: rgba(255,255,255,.78);     /* WCAG: 9:1 contraste */
  line-height: 1.6; font-weight: 400;
  max-width: 480px; margin-bottom: 24px;
}
/* Red CTA */
.cta-red { flex-direction: row-reverse; }
.cta-red .cta-mid-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to left, transparent 58%, var(--red) 100%);
}
.cta-red .cta-mid-content { background: var(--red); }
.cta-red .cta-label { color: #ffffff; }              /* máximo contraste no vermelho */
.cta-red .l-line    { background: rgba(255,255,255,.7); }
.cta-red h3 {
  font-family: 'Lora', serif;
  font-size: clamp(26px, 3.4vw, 36px); font-weight: 700;
  color: #fff; line-height: 1.2;
  margin-bottom: 16px;
}
.cta-red h3 em { font-style: italic; color: rgba(255,255,255,.78); }
.cta-red .cta-body {
  font-size: 16px; color: rgba(255,255,255,.92);     /* WCAG: contraste alto em vermelho */
  line-height: 1.6; font-weight: 400;
  max-width: 480px; margin-bottom: 24px;
}

.cta-mid-content {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(32px, 4vw, 56px) clamp(32px, 5vw, 72px);
}
.cta-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 24px;
}
.l-line { width: 24px; height: 2px; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   PARA QUEM
═══════════════════════════════════════════ */
#para-quem { background: var(--bg); }
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}
.card-item {
  background: var(--white);
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.card-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.card-img-wrap { position: relative; overflow: hidden; height: 200px; }
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .4s;
}
.card-item:hover .card-img-wrap img { transform: scale(1.04); }
.card-img-wrap::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.3));
}
.card-body { padding: 32px 24px; position: relative; }
.card-body::before {
  content: attr(data-num);
  position: absolute; top: -32px; right: 16px;
  font-family: 'Lora', serif;
  font-size: 64px; color: var(--red-dim);
  font-weight: 700; line-height: 1;
  user-select: none;
  pointer-events: none;
}
.card-tag {
  display: inline-block;
  background: var(--red-pale);
  color: var(--red);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
  margin-bottom: 16px;
}
.card-body h3 {
  font-family: 'Lora', serif;
  font-size: clamp(18px, 1.6vw, 22px); margin-bottom: 12px;
  color: var(--dark); font-weight: 600;
  line-height: 1.3;
}
.card-body p {
  font-size: 15px; color: var(--gray);
  line-height: 1.65; font-weight: 400;
}

/* ═══════════════════════════════════════════
   COMPARATIVO (fundo claro)
═══════════════════════════════════════════ */
#comparativo { background: var(--bg2); }

.comp-table {
  margin-top: 48px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}
.comp-head {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.comp-head-cell {
  padding: 24px;
  font-size: 12px; font-weight: 700;        /* maior */
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray);
  border-right: 1px solid rgba(0,0,0,.06);
  text-align: center;
}
.comp-head-cell:first-child { text-align: left; }
.comp-head-cell:last-child  { border-right: none; }
.comp-head-cell.hl { background: var(--red); color: #fff; letter-spacing: 2px; }

.comp-row {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.comp-row:last-child { border-bottom: none; }
.comp-cell {
  padding: 20px 24px;
  font-size: 15px; color: var(--gray);      /* maior + contraste */
  border-right: 1px solid rgba(0,0,0,.05);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.comp-cell:first-child {
  justify-content: flex-start;
  color: var(--dark2);
  font-weight: 700; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(0,0,0,.02);
}
.comp-cell:last-child { border-right: none; }
.comp-cell.hl { color: var(--red); font-weight: 600; background: rgba(204,43,43,.05); }
.ok  { color: #1e7e34; font-weight: 700; margin-right: 8px; }     /* AA */
.bad { color: #b3261e; font-weight: 700; margin-right: 8px; }     /* AA */
.na  { color: rgba(0,0,0,.4); font-size: 18px; }

.comp-quote {
  margin-top: 32px;
  padding: 24px 32px;
  background: var(--white);
  display: flex; align-items: center; gap: 24px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.06);
  border-left: 4px solid var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,.03);
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}
.comp-quote-icon { font-size: 24px; flex-shrink: 0; }
.comp-quote p {
  font-family: 'Lora', serif;
  font-size: 17px; font-style: italic;
  color: var(--dark2);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   DEPOIMENTOS
═══════════════════════════════════════════ */
#depoimentos { background: var(--bg2); }
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}
.dep-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
  display: flex; flex-direction: column;
  transition: transform .2s;
}
.dep-card:hover { transform: translateY(-4px); }
.dep-card::before {
  content: '"';
  display: block;
  font-family: Georgia, serif;
  font-size: 56px;
  color: var(--red-dim);
  line-height: .6;
  margin-bottom: 16px;
  font-weight: 700;
  pointer-events: none;
}
.dep-stars { color: var(--red); font-size: 14px; margin-bottom: 16px; letter-spacing: 3px; }
.dep-text {
  font-family: 'Lora', serif;
  font-size: 16px; color: var(--dark2);
  line-height: 1.7; font-style: italic;
  margin-bottom: 24px; flex: 1;
}
.dep-footer {
  display: flex; align-items: center; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.dep-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--red);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red-pale);
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
}
.dep-author { font-size: 15px; font-weight: 600; color: var(--dark); }
.dep-role   { font-size: 14px; color: var(--gray); margin-top: 4px; font-weight: 400; }

/* ═══════════════════════════════════════════
   ONDE ATENDO
═══════════════════════════════════════════ */
#onde-atendo { background: var(--bg); }
.units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}
.unit-card {
  background: var(--bg2);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid rgba(0,0,0,.06);
  display: flex; flex-direction: column;
  transition: transform .2s;
}
.unit-card:hover { transform: translateY(-4px); }
.unit-card.dark { background: var(--dark); border-color: transparent; }
.unit-icon {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: var(--red-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.unit-card.dark .unit-icon { background: rgba(204,43,43,.2); }
.unit-icon svg { width: 24px; height: 24px; fill: var(--red); }
.unit-region {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.unit-card.dark .unit-region { color: var(--red-on-dark); }     /* AA em dark */
.unit-name {
  font-family: 'Lora', serif;
  font-size: clamp(20px, 1.8vw, 24px); font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px; line-height: 1.3;
}
.unit-card.dark .unit-name { color: #fff; }
.unit-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.unit-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--gray);
  font-weight: 400; line-height: 1.5;
}
.unit-card.dark .unit-row { color: rgba(255,255,255,.78); }   /* WCAG: 9.6:1 */
.unit-row svg { width: 16px; height: 16px; fill: var(--red); flex-shrink: 0; margin-top: 4px; }
.unit-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px;
  width: fit-content; margin-top: auto;
}
.badge-presencial     { background: var(--red-pale); color: var(--red); }
.badge-online         { background: rgba(37,211,102,.12); color: #117A38; } /* AA 4.7:1 */
.unit-card.dark .badge-presencial { background: rgba(204,43,43,.25); color: #ffaaaa; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
#faq { background: var(--bg2); }
.faq-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
  overflow: hidden;
}
.faq-btn {
  width: 100%; padding: 24px;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  text-align: left;
  min-height: 64px;                         /* tap target acessível */
}
.faq-q {
  font-size: 16px; font-weight: 600;        /* maior para 50+ */
  color: var(--dark); line-height: 1.4;
}
.faq-icon {
  color: var(--red);
  font-size: 24px; font-weight: 400;
  flex-shrink: 0; line-height: 1;
  transition: transform .3s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s;
}
.faq-body.open { max-height: 280px; }
.faq-a {
  padding: 0 24px 24px;
  font-size: 15px; color: var(--gray);      /* maior + alto contraste */
  line-height: 1.65; font-weight: 400;
}

/* ═══════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════ */
#cta-final {
  width: 100%;
  background: var(--red);
  text-align: center;
  padding: clamp(64px, 8vw, 96px) var(--gutter);
  position: relative; overflow: hidden;
}
.cta-ring-1 {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 720px; height: 720px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  pointer-events: none;
}
.cta-ring-2 {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
#cta-final h2 {
  font-family: 'Lora', serif;
  font-size: clamp(32px, 4.5vw, 48px); line-height: 1.15;
  margin-bottom: 16px;
  color: #fff; font-weight: 700;
}
#cta-final h2 em { font-style: italic; color: rgba(255,255,255,.88); }
#cta-final p {
  color: rgba(255,255,255,.92);             /* WCAG: alto contraste em vermelho */
  font-size: 17px; margin-bottom: 40px; font-weight: 400;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: #0a0a0a;
  padding: 32px var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  border-top: 3px solid var(--red);
}
.footer-logo {
  font-family: 'Lora', serif;
  font-size: 16px; color: #fff;
  letter-spacing: .5px; font-weight: 600;
}
.footer-center { text-align: center; }
.footer-text {
  font-size: 13px; color: rgba(255,255,255,.65);    /* WCAG: 6:1 contraste */
  letter-spacing: .3px; font-weight: 400;
  display: block;
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
.wp-float {
  position: fixed; bottom: 32px; right: 32px;
  background: var(--green);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  z-index: 999;
  transition: transform .2s;
}
.wp-float:hover { transform: scale(1.1); }
.wp-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wp-float { animation: pulse 2.5s infinite; }

/* ═══════════════════════════════════════════
   RESPONSIVE - TABLET (≤ 1024px)
   Tipografia e padding já são fluidos via clamp().
   Aqui só ajustes de layout (proporções, grids).
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cred-grid { width: 360px; }
  .sobre-inner { gap: 40px; }
  .nav-links { gap: 24px; }
  .nav-sub { display: none; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE - MOBILE (≤ 820px)
   Quebra para layout em coluna única.
═══════════════════════════════════════════ */
@media (max-width: 820px) {
  .nav-links, .btn-wp--nav:not(.mobile-menu .btn-wp--nav) { display: none; }
  nav > .btn-wp--nav { display: none; }
  .hamburger { display: flex; }

  .hero-body { flex-direction: column-reverse; min-height: unset; }
  .hero-right { width: 100%; height: clamp(280px, 50vw, 420px); }
  .hero-right::before { background: linear-gradient(to top, var(--dark) 0%, transparent 55%); }
  .hero-accent-line { left: 0; }
  .hero-left {
    width: 100%;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
    padding-top: clamp(40px, 8vw, 56px);
    padding-bottom: clamp(48px, 8vw, 64px);
  }
  .hero-stats { flex-wrap: wrap; gap: 24px; margin-top: 40px; padding-top: 32px; }
  .hero-stat { flex: 0 0 calc(50% - 12px); border-right: none; padding: 0 !important; }

  .sobre-inner { flex-direction: column; gap: 40px; }
  .cred-grid { width: 100%; }

  .cta-mid, .cta-red { flex-direction: column; }
  .cta-mid-photo { width: 100%; height: clamp(220px, 40vw, 320px); }
  .cta-dark .cta-mid-photo::after {
    background: linear-gradient(to top, var(--dark) 0%, transparent 50%);
  }
  .cta-red .cta-mid-photo::after {
    background: linear-gradient(to top, var(--red) 0%, transparent 50%);
  }

  .cards-row, .dep-grid, .units-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  .comp-head, .comp-row { grid-template-columns: 110px 1fr 1fr; }
  .comp-head-cell, .comp-cell { padding: 14px 12px; font-size: 12px; }
  .comp-head-cell:last-child, .comp-cell:last-child { display: none; }
  .comp-quote { padding: 20px 24px; flex-direction: column; gap: 12px; align-items: flex-start; }

  .cta-ring-1, .cta-ring-2 { width: 120vw; height: 120vw; }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer-center { text-align: center; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE - SMALL (≤ 480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .cred-grid { grid-template-columns: 1fr; }
  .hero-stat { flex: 0 0 100%; }
  .comp-head, .comp-row { grid-template-columns: 90px 1fr 1fr; }
  .comp-head-cell, .comp-cell { padding: 12px 8px; font-size: 11px; letter-spacing: 1px; }
  .wp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .wp-float svg { width: 24px; height: 24px; }
}

/* ═══════════════════════════════════════════
   ULTRA-WIDE (≥ 1600px) - centralização fica natural pelo --gutter
   nada a fazer; o gutter já compensa
═══════════════════════════════════════════ */
/* Duplicate responsive rules below keep the final mobile tuning. */
@media (max-width: 1024px) {
  .nav-links { gap: 24px; }
  .nav-sub { display: none; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE - MOBILE (≤ 820px)
   Quebra para layout em coluna única.
═══════════════════════════════════════════ */
@media (max-width: 820px) {
  .nav-links { display: none; }
  nav .btn-wp--nav { display: none; }
  .hamburger { display: flex; }

  .hero-body { flex-direction: column-reverse; min-height: unset; }
  .hero-right { width: 100%; height: clamp(280px, 50vw, 420px); }
  .hero-right::before { background: linear-gradient(to top, var(--dark) 0%, transparent 55%); }
  .hero-accent-line { left: 0; }
  .hero-left {
    width: 100%;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
    padding-top: clamp(40px, 8vw, 56px);
    padding-bottom: clamp(40px, 8vw, 56px);
    gap: 32px;
  }
  .hero-stats { flex-wrap: wrap; gap: 24px; padding-top: 24px; }
  .hero-stat { flex: 0 0 calc(50% - 12px); border-right: none; padding: 0 !important; }

  .sobre-inner { grid-template-columns: 1fr; gap: 40px; }

  .cta-mid, .cta-red { flex-direction: column; }
  .cta-mid-photo { width: 100%; height: clamp(240px, 45vw, 320px); }
  .cta-dark .cta-mid-photo::after {
    background: linear-gradient(to top, var(--dark) 0%, transparent 50%);
  }
  .cta-red .cta-mid-photo::after {
    background: linear-gradient(to top, var(--red) 0%, transparent 50%);
  }

  .cards-row, .dep-grid, .units-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  .comp-head, .comp-row { grid-template-columns: 110px 1fr 1fr; }
  .comp-head-cell, .comp-cell { padding: 14px 12px; font-size: 13px; }
  .comp-cell:first-child { font-size: 11px; }
  .comp-head-cell:last-child, .comp-cell:last-child { display: none; }
  .comp-quote { padding: 20px 24px; flex-direction: column; gap: 12px; align-items: flex-start; }

  .cta-ring-1, .cta-ring-2 { width: 120vw; height: 120vw; }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer-center { text-align: center; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE - SMALL (≤ 480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .cred-grid { grid-template-columns: 1fr; }
  .hero-stat { flex: 0 0 100%; }
  .comp-head, .comp-row { grid-template-columns: 90px 1fr 1fr; }
  .comp-head-cell, .comp-cell { padding: 12px 8px; font-size: 12px; letter-spacing: 1px; }
  .comp-cell:first-child { font-size: 10px; }
  .wp-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
  .wp-float svg { width: 24px; height: 24px; }
}
