/* ==========================================================================
   Consignado CLT Brasil — Sprint 1 Index (v3: full-wide chonky)
   Container 1600px · Headlines sans-serif pesadas (Inter 900) · Scale PPT
   ========================================================================== */

:root {
  --c-primary:        #005CA9;
  --c-primary-dark:   #004580;
  --c-primary-darker: #002F5C;
  --c-accent:         #FFC627;
  --c-accent-dark:    #E2A800;
  --c-wpp:            #25D366;
  --c-wpp-dark:       #1EB955;
  --c-success:        #0F8A3D;
  --c-text:           #1A2433;
  --c-text-soft:      #4B5563;
  --c-muted:          #6B7280;
  --c-border:         #E5E7EB;
  --c-bg:             #FFFFFF;
  --c-bg-soft:        #F7F9FC;
  --c-bg-dark:        #0B2540;

  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ff-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.08);
  --shadow:    0 4px 10px -2px rgba(16, 24, 40, 0.08), 0 2px 6px -2px rgba(16, 24, 40, 0.06);
  --shadow-lg: 0 20px 40px -8px rgba(16, 24, 40, 0.15), 0 8px 16px -4px rgba(16, 24, 40, 0.08);

  --container: 1600px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ==========================================================================
   RESET / BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--c-primary-dark); text-decoration: underline; }

/* Headings — SANS SERIF MUITO PESADO, escala PPT */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--c-primary-darker);
  margin: 0 0 .5em;
  font-weight: 900;
}
h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 900;
  margin-bottom: 26px;
}
h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 900;
}
h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-primary-darker);
}
h4 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}
p  { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
abbr { text-decoration: none; border-bottom: 1px dotted currentColor; cursor: help; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* Eyebrow (kicker) — mais chamativo */
.eyebrow {
  display: inline-block;
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--c-primary);
  background: rgba(0, 92, 169, 0.10);
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.section-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 72px;
}
.section-head h2 { margin-bottom: 18px; }
.section-head p {
  color: var(--c-text-soft);
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.55;
  margin: 0;
  font-weight: 400;
}

.link-arrow {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  color: var(--c-primary);
  font-size: 1.05rem;
  transition: transform .15s ease;
}
.link-arrow:hover { transform: translateX(3px); text-decoration: none; }

/* Highlight — sublinhado amarelo atrás do texto */
.h1-hl {
  position: relative;
  display: inline-block;
  color: var(--c-primary);
}
.h1-hl::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  bottom: 0.06em;
  height: 0.3em;
  background: var(--c-accent);
  opacity: .6;
  z-index: -1;
  border-radius: 4px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  text-decoration: none !important;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn--primary { background: var(--c-primary); color: #fff; box-shadow: 0 2px 4px rgba(0,92,169,.2); }
.btn--primary:hover { background: var(--c-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,92,169,.3); }
.btn--ghost { background: #fff; color: var(--c-primary); border-color: var(--c-primary); }
.btn--ghost:hover { background: var(--c-primary); color: #fff; }
.btn--wpp { background: var(--c-wpp); color: #fff; box-shadow: 0 2px 4px rgba(37,211,102,.3); }
.btn--wpp:hover { background: var(--c-wpp-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(37,211,102,.4); }
.btn--accent { background: var(--c-accent); color: var(--c-primary-darker); box-shadow: 0 2px 4px rgba(226,168,0,.3); }
.btn--accent:hover { background: var(--c-accent-dark); color: var(--c-primary-darker); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(226,168,0,.4); }
.btn--lg { padding: 20px 42px; font-size: 1.15rem; }
.btn--sm { padding: 11px 20px; font-size: .94rem; }
.btn--xs { padding: 7px 14px; font-size: .84rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   TOPBAR GOV
   ========================================================================== */
.topbar {
  background: var(--c-primary-darker);
  color: #fff;
  font-size: .88rem;
  padding: 10px 0;
  text-align: center;
  letter-spacing: .01em;
  font-weight: 500;
}
.topbar__flag { margin-right: 8px; }
.topbar strong { color: var(--c-accent); font-weight: 700; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: saturate(180%) blur(10px);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 84px;
}

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 12px; color: inherit; text-decoration: none !important; flex-shrink: 0; }
.logo__mark { flex-shrink: 0; }
.logo__text { line-height: 1.05; }
.logo__text strong { font-family: var(--ff-display); font-size: 1.35rem; font-weight: 900; color: var(--c-primary-darker); letter-spacing: -0.03em; }
.logo--light .logo__text strong { color: #fff; }

/* Desktop nav */
.nav { flex: 1; display: flex; justify-content: center; }
.nav__list { list-style: none; padding: 0; margin: 0; display: flex; gap: 32px; }
.nav__list a { color: var(--c-text); font-weight: 600; font-size: .98rem; position: relative; text-decoration: none; }
.nav__list a::after { content:''; position: absolute; left: 0; right: 0; bottom: -8px; height: 3px; background: var(--c-accent); transform: scaleX(0); transform-origin: center; transition: transform .18s ease; border-radius: 2px; }
.nav__list a:hover { color: var(--c-primary); }
.nav__list a:hover::after { transform: scaleX(1); }

/* Header actions */
.header__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header__icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: none; background: none; color: var(--c-text); cursor: pointer; border-radius: 50%; transition: background .15s, color .15s; }
.header__icon-btn:hover { background: var(--c-bg-soft); color: var(--c-primary); }

/* Hamburger (mobile only) */
.hamburger { display: none; width: 44px; height: 44px; padding: 0; border: none; background: none; cursor: pointer; position: relative; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; position: absolute; left: 11px; transition: transform .25s ease, opacity .15s ease; }
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Search dropdown (inside header) */
.search-drop { height: 0; overflow: hidden; background: var(--c-bg-soft); border-bottom: 1px solid transparent; transition: height .3s ease, border-color .3s ease; }
.search-drop.is-open { height: 68px; border-bottom-color: var(--c-border); }
.search-drop .wrap { height: 100%; display: flex; align-items: center; }
.search-drop form { display: flex; gap: 10px; width: 100%; max-width: 640px; margin: 0 auto; }
.search-drop input[type="search"] { flex: 1; padding: 12px 18px; border: 1.5px solid var(--c-border); border-radius: var(--radius); font-family: var(--ff-body); font-size: 1rem; font-weight: 500; color: var(--c-text); background: #fff; }
.search-drop input[type="search"]:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(0,92,169,.12); }
.search-drop button { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border: none; background: var(--c-primary); color: #fff; border-radius: var(--radius); cursor: pointer; flex-shrink: 0; }
.search-drop button:hover { background: var(--c-primary-dark); }

/* ---- Overlay (always in DOM, invisible by default) ---- */
.overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(0,0,0,.45);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.overlay.is-open { opacity: 1; pointer-events: auto; }

/* ---- Drawer (always in DOM, off-screen right) ---- */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 340px; max-width: 85vw;
  background: #fff; z-index: 91;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: -10px 0 30px rgba(16,24,40,.15);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--c-border); }
.drawer__head .logo__text strong { font-size: 1.1rem; }
.drawer__close { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: none; background: var(--c-bg-soft); color: var(--c-text); border-radius: 50%; cursor: pointer; transition: background .15s, color .15s; }
.drawer__close:hover { background: var(--c-primary); color: #fff; }
.drawer__search { display: flex; gap: 8px; }
.drawer__search input { flex: 1; padding: 12px 16px; border: 1.5px solid var(--c-border); border-radius: var(--radius); font-family: var(--ff-body); font-size: .98rem; color: var(--c-text); }
.drawer__search input:focus { outline: none; border-color: var(--c-primary); }
.drawer__search button { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: none; background: var(--c-primary); color: #fff; border-radius: var(--radius); cursor: pointer; flex-shrink: 0; }
.drawer__nav { display: flex; flex-direction: column; gap: 2px; }
.drawer__nav a { padding: 14px 16px; color: var(--c-text); font-weight: 600; font-size: 1.08rem; border-radius: var(--radius-sm); text-decoration: none; transition: background .12s; }
.drawer__nav a:hover { background: var(--c-bg-soft); color: var(--c-primary); }
.drawer__cta { margin-top: auto; }

@media (max-width: 960px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .hamburger { display: block; }
  .header__inner { height: 64px; }
  .logo__text strong { font-size: 1.12rem; }
}
@media (min-width: 961px) {
  .hamburger { display: none !important; }
  .drawer, .overlay { display: none !important; }
}

/* ==========================================================================
   HERO — escala apresentação
   ========================================================================== */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(0,92,169,.02) 0%, rgba(0,92,169,.06) 100%),
    radial-gradient(ellipse at top right, rgba(255,198,39,.14), transparent 55%),
    var(--c-bg);
  padding: 120px 0 128px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -140px; right: -140px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(0,92,169,.08), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,198,39,.06), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--c-success);
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  font-size: .96rem;
  font-weight: 600;
  margin-bottom: 28px;
  box-shadow: 0 4px 12px rgba(15,138,61,.12);
  border: 1px solid rgba(15,138,61,.18);
}
.hero__badge::before {
  content: '';
  display: inline-block;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-success) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'><path d='M13.854 3.646a.5.5 0 010 .708l-7 7a.5.5 0 01-.708 0l-3.5-3.5a.5.5 0 11.708-.708L6.5 10.293l6.646-6.647a.5.5 0 01.708 0z'/></svg>") center/13px no-repeat;
  flex-shrink: 0;
}
.hero__badge strong { font-weight: 900; color: var(--c-primary-darker); }
.hero__copy h1 { margin-bottom: 28px; }
.hero__lead {
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  line-height: 1.5;
  color: var(--c-text-soft);
  margin-bottom: 34px;
  font-weight: 400;
}
.hero__lead strong { color: var(--c-text); font-weight: 700; }
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.hero__bullets li {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--c-text);
}

/* Simulator card — sticky dentro do grid do hero */
.simulator {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: sticky;
  top: 50px;
  align-self: start;
}
@media (max-width: 960px) {
  .simulator { position: static; }
}
.simulator__head {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-darker) 100%);
  color: #fff;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.simulator__head h2 {
  color: #fff;
  margin: 0;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.simulator__head span {
  font-size: .78rem;
  color: var(--c-accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.simulator__form { padding: 26px 28px 28px; }
.simulator__form label { display: block; margin-bottom: 16px; font-size: .82rem; font-weight: 800; color: var(--c-text-soft); text-transform: uppercase; letter-spacing: .1em; }
.simulator__form label span { display: block; margin-bottom: 8px; }
.simulator__form input,
.simulator__form select {
  width: 100%;
  padding: 15px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--c-text);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.simulator__form input:focus,
.simulator__form select:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(0,92,169,.14); }
.simulator__result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: linear-gradient(135deg, rgba(0,92,169,.05) 0%, rgba(255,198,39,.10) 100%);
  border: 1px solid rgba(0,92,169,.12);
  border-radius: var(--radius);
  padding: 18px;
  margin: 20px 0 22px;
}
.simulator__result small {
  display: block;
  font-size: .72rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
  margin-bottom: 7px;
}
.simulator__result strong {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--c-primary-darker);
  letter-spacing: -0.03em;
  line-height: 1;
}
.simulator__note { font-size: .78rem; color: var(--c-muted); margin: 14px 0 0; line-height: 1.45; }
.simulator__warning {
  background: #FFF4E0;
  border: 1px solid var(--c-accent-dark);
  color: #8A4F00;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: .85rem;
  line-height: 1.5;
  margin: -4px 0 16px;
  font-weight: 500;
}
.simulator__warning strong { font-weight: 800; color: #6B3D00; }

@media (max-width: 960px) {
  .hero { padding: 64px 0 72px; }
  .hero__inner { grid-template-columns: 1fr; gap: 52px; }
}

/* ==========================================================================
   TRUST STRIP — números XXL
   ========================================================================== */
.trust {
  background: var(--c-primary-darker);
  background-image: linear-gradient(135deg, var(--c-primary-darker) 0%, #001F3F 100%);
  color: #fff;
  padding: 56px 0;
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  text-align: center;
}
.trust strong {
  display: block;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  color: var(--c-accent);
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.trust span {
  font-size: .98rem;
  color: rgba(255,255,255,.82);
  font-weight: 500;
  letter-spacing: -0.005em;
}
@media (max-width: 720px) {
  .trust { padding: 40px 0; }
  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .trust__inner > div:last-child { grid-column: span 2; }
}

/* ==========================================================================
   STEPS — cards generosos, números enormes
   ========================================================================== */
.steps { padding: 128px 0; }
.steps__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.steps__list li {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 44px 36px 38px;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.steps__list li:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-accent);
}
.steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
  color: var(--c-primary-darker);
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 26px;
  box-shadow: 0 6px 16px rgba(226,168,0,.3);
  letter-spacing: -0.03em;
}
.steps__list h3 {
  margin-bottom: 12px;
  color: var(--c-primary-darker);
  font-size: 1.55rem;
  font-weight: 800;
}
.steps__list p {
  color: var(--c-text-soft);
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.6;
}

@media (max-width: 900px) { .steps__list { grid-template-columns: 1fr; } .steps { padding: 80px 0; } }

/* ==========================================================================
   BANKS TABLE
   ========================================================================== */
.banks { padding: 128px 0; background: var(--c-bg-soft); }
.banks__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: #fff;
}
.banks__table { width: 100%; border-collapse: collapse; min-width: 860px; }
.banks__table thead { background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-darker) 100%); color: #fff; }
.banks__table th, .banks__table td {
  padding: 24px 24px;
  text-align: left;
  font-size: 1.04rem;
  vertical-align: middle;
}
.banks__table thead th {
  font-weight: 800;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.95);
  padding-top: 22px;
  padding-bottom: 22px;
}
.banks__table tbody tr { border-bottom: 1px solid var(--c-border); transition: background .15s; }
.banks__table tbody tr:last-child { border-bottom: none; }
.banks__table tbody tr:hover { background: rgba(0,92,169,.04); }
.banks__table tbody th {
  font-weight: 700;
  color: var(--c-text);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
}
.banks__table tbody td { font-weight: 600; color: var(--c-text); }
.bank-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.banks__disclaimer {
  max-width: 900px;
  margin: 28px auto 0;
  padding: 18px 22px;
  background: #FFF8E7;
  border-left: 4px solid var(--c-accent);
  border-radius: var(--radius-sm);
  font-size: .86rem;
  line-height: 1.6;
  color: var(--c-text-soft);
}
.banks__disclaimer strong { color: var(--c-text); }
.banks__cta { text-align: center; margin-top: 28px; }

@media (max-width: 820px) { .banks { padding: 80px 0; } }

/* ==========================================================================
   ELIGIBLE
   ========================================================================== */
.eligible { padding: 128px 0; }
.eligible__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}
.eligible__text h2 { margin-bottom: 18px; }
.eligible__text > p {
  font-size: clamp(1.1rem, 1.3vw, 1.2rem);
  color: var(--c-text-soft);
  line-height: 1.6;
}
.check-list { list-style: none; padding: 0; margin: 24px 0 8px; display: grid; gap: 14px; }
.check-list li {
  position: relative;
  padding-left: 38px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--c-text);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 2px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--c-success);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 900;
}
.eligible__card {
  background: #FFF8E7;
  border: 2px solid var(--c-accent);
  border-radius: var(--radius-lg);
  padding: 38px;
}
.eligible__card h3 {
  color: var(--c-accent-dark);
  margin-bottom: 18px;
  font-weight: 900;
  font-size: 1.4rem;
}
.eligible__card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.eligible__card li {
  padding-left: 24px;
  position: relative;
  color: var(--c-text-soft);
  font-size: 1.06rem;
  font-weight: 500;
}
.eligible__card li::before {
  content: '•';
  position: absolute;
  left: 6px;
  color: var(--c-accent-dark);
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1;
}

@media (max-width: 900px) { .eligible { padding: 80px 0; } .eligible__inner { grid-template-columns: 1fr; gap: 44px; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 128px 0; background: var(--c-bg-soft); }
.faq__list { max-width: 960px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .18s ease, border-color .18s ease;
}
.faq details[open] { box-shadow: var(--shadow); border-color: var(--c-primary); }
/* FAQ title in div (frees up h2 for questions) */
.section-head__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--c-primary-darker);
  margin-bottom: 18px;
}

.faq summary {
  padding: 26px 28px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq summary h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-primary-darker);
  letter-spacing: -0.02em;
  margin: 0;
  font-family: var(--ff-body);
  line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--c-primary);
  transition: transform .22s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 28px 24px;
  margin: 0;
  color: var(--c-text-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}
.faq__cta { text-align: center; margin-top: 48px; }

@media (max-width: 820px) { .faq { padding: 80px 0; } }

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta-final {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-darker) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,198,39,.24), transparent 70%);
  pointer-events: none;
}
.cta-final__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
}
.cta-final h2 {
  color: #fff;
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1;
}
.cta-final p {
  color: rgba(255,255,255,.92);
  margin: 0;
  max-width: 640px;
  font-size: 1.2rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .cta-final { padding: 80px 0; }
  .cta-final__inner { flex-direction: column; text-align: center; gap: 32px; }
  .cta-final p { margin: 0 auto; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--c-bg-dark);
  color: rgba(255,255,255,.78);
  padding: 88px 0 100px;
  font-size: .96rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__brand p { margin-bottom: 12px; line-height: 1.65; }
.footer__brand .logo { margin-bottom: 24px; }
.footer__tiny { font-size: .8rem; color: rgba(255,255,255,.55); }
.footer h4 {
  color: var(--c-accent);
  margin-bottom: 18px;
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.footer nav { display: flex; flex-direction: column; gap: 12px; }
.footer nav a { color: rgba(255,255,255,.78); font-weight: 500; }
.footer nav a:hover { color: #fff; text-decoration: none; }
.footer__legal {
  padding-top: 36px;
  font-size: .84rem;
  color: rgba(255,255,255,.58);
  display: grid;
  gap: 12px;
  line-height: 1.6;
}
.footer__legal p { margin: 0; }

@media (max-width: 960px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}

/* ==========================================================================
   EXPERTS / ARTICLE
   ========================================================================== */
/* Experts — discreto, colapsado, fonte menor */
.experts { padding: 0 0 64px; }
.experts__card { background: var(--c-bg-soft); border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden; }
.experts__summary { padding: 20px 28px; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.experts__summary::-webkit-details-marker { display: none; }
.experts__summary::after { content: '+'; font-size: 1.6rem; font-weight: 300; color: var(--c-muted); transition: transform .22s ease; flex-shrink: 0; line-height: 1; }
.experts__card[open] .experts__summary::after { transform: rotate(45deg); color: var(--c-primary); }
.experts__summary h2 { margin: 0; font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; color: var(--c-muted); font-family: var(--ff-body); line-height: 1.3; }
.experts__card[open] .experts__summary h2 { color: var(--c-primary-darker); }
.experts__body { padding: 0 28px 28px; font-size: .9rem; line-height: 1.7; }
.experts__author { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; padding: 14px 16px; background: #fff; border-radius: var(--radius); border: 1px solid var(--c-border); }
.experts__avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--c-border); flex-shrink: 0; }
.experts__avatar img { width: 100%; height: 100%; object-fit: cover; }
.experts__author-info { display: flex; flex-direction: column; gap: 1px; }
.experts__author-info strong { font-size: .92rem; font-weight: 700; color: var(--c-text); }
.experts__author-info span { font-size: .82rem; color: var(--c-muted); font-weight: 500; }
.experts__date { display: inline-block; font-size: .82rem; color: var(--c-muted); margin-bottom: 20px; }
.experts__date strong { color: var(--c-text-soft); }
.experts__body h3 { font-size: .98rem; font-weight: 800; color: var(--c-text); margin: 20px 0 6px; text-transform: uppercase; letter-spacing: .06em; }
.experts__body h3:first-of-type { margin-top: 0; }
.experts__body p { color: var(--c-text-soft); line-height: 1.7; margin-bottom: .8em; font-size: .9rem; }

@media (max-width: 600px) {
  .experts__summary { padding: 16px 18px; }
  .experts__body { padding: 0 18px 20px; }
  .experts__author { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   FOOTER SOCIAL ICONS
   ========================================================================== */
.footer__social { display: flex; gap: 14px; margin-top: 16px; }
.footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); transition: background .15s, color .15s, transform .15s; }
.footer__social a:hover { background: var(--c-accent); color: var(--c-primary-darker); transform: translateY(-2px); text-decoration: none; }
.footer__social svg { width: 18px; height: 18px; }

/* ==========================================================================
   WHATSAPP FAB — flutuante, aparece após 2x viewport
   ========================================================================== */
.wpp-fab {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, calc(100% + 40px));
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px 14px 18px;
  background: var(--c-wpp);
  color: #fff !important;
  border-radius: 999px;
  font-family: var(--ff-body);
  text-decoration: none !important;
  box-shadow: 0 14px 32px rgba(37,211,102,.45), 0 4px 10px rgba(16,24,40,.18);
  opacity: 0;
  visibility: hidden;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .35s ease, visibility 0s linear .35s, box-shadow .2s ease;
  z-index: 100;
  max-width: calc(100vw - 24px);
}
.wpp-fab.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .35s ease, visibility 0s, box-shadow .2s ease;
  animation: wppPulse 2.4s ease-in-out 1s infinite;
}
.wpp-fab:hover {
  background: var(--c-wpp-dark);
  transform: translate(-50%, -4px);
  box-shadow: 0 20px 40px rgba(37,211,102,.55), 0 6px 12px rgba(16,24,40,.2);
  animation: none;
}
.wpp-fab__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}
.wpp-fab__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}
.wpp-fab__text strong {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.wpp-fab__text small {
  font-size: .78rem;
  opacity: .9;
  font-weight: 500;
}

@keyframes wppPulse {
  0%, 100% { box-shadow: 0 14px 32px rgba(37,211,102,.45), 0 4px 10px rgba(16,24,40,.18), 0 0 0 0 rgba(37,211,102,.5); }
  50%       { box-shadow: 0 14px 32px rgba(37,211,102,.45), 0 4px 10px rgba(16,24,40,.18), 0 0 0 14px rgba(37,211,102,0); }
}

@media (max-width: 600px) {
  .wpp-fab { padding: 13px 20px 13px 16px; gap: 12px; bottom: 14px; width: 90vw; max-width: none; justify-content: center; }
  .wpp-fab.is-visible { transform: translate(-50%, 0); }
  .wpp-fab:hover { transform: translate(-50%, -3px); }
  .wpp-fab__icon { width: 42px; height: 42px; }
  .wpp-fab__icon svg { width: 22px; height: 22px; }
  .wpp-fab__text strong { font-size: .96rem; }
  .wpp-fab__text small { font-size: .74rem; }
}

@media (prefers-reduced-motion: reduce) {
  .wpp-fab, .wpp-fab.is-visible { animation: none !important; transition: opacity .2s ease; }
}

/* ============================================================================
   TEMPLATES — páginas internas (body.page-inner)
   Escala aliviada vs home + componentes (breadcrumb, TOC, article, related)
   ============================================================================ */

/* Alivia escala global de headings quando body.page-inner */
.page-inner h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); letter-spacing: -0.03em; margin-bottom: 20px; }
.page-inner h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); letter-spacing: -0.025em; }
.page-inner h3 { font-size: clamp(1.15rem, 1.5vw, 1.3rem); font-weight: 800; }
.page-inner .section-head { margin-bottom: 48px; }
.page-inner .section-head--compact { margin-bottom: 32px; }
.page-inner .section-head--compact .section-head__title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }

/* Breadcrumb */
.breadcrumb { background: var(--c-bg-soft); border-bottom: 1px solid var(--c-border); padding: 14px 0; font-size: .88rem; }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0; }
.breadcrumb li { color: var(--c-muted); }
.breadcrumb li + li::before { content: '›'; margin: 0 10px; color: var(--c-border); }
.breadcrumb a { color: var(--c-text-soft); font-weight: 500; }
.breadcrumb a:hover { color: var(--c-primary); text-decoration: none; }
.breadcrumb li[aria-current] { color: var(--c-primary-darker); font-weight: 700; }

/* Page Hero compacto */
.page-hero { padding: 56px 0 48px; background: linear-gradient(180deg, #fff 0%, var(--c-bg-soft) 100%); }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.page-hero__copy h1 { margin-bottom: 16px; }
.page-hero__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.page-hero__kicker { font-size: .88rem; font-weight: 700; color: var(--c-muted); text-transform: uppercase; letter-spacing: .1em; }
.page-hero__lead { font-size: 1.15rem; color: var(--c-text-soft); line-height: 1.55; margin-bottom: 24px; }
.page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.page-hero__byline { display: flex; gap: 10px; align-items: center; color: var(--c-muted); font-size: .92rem; }
.page-hero__byline .dot { opacity: .5; }
.page-hero--evergreen .page-hero__lead { font-size: 1.2rem; max-width: 780px; }
.page-hero--faq { padding: 48px 0 32px; }

/* Ficha resumo (sidecard banco) */
.page-hero__card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.page-hero__card h2 { font-size: 1.15rem; margin-bottom: 16px; color: var(--c-primary-darker); }
.page-hero__card dl { margin: 0; display: grid; gap: 12px; }
.page-hero__card dl > div { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 10px; border-bottom: 1px dashed var(--c-border); }
.page-hero__card dl > div:last-child { border-bottom: none; padding-bottom: 0; }
.page-hero__card dt { color: var(--c-muted); font-size: .88rem; font-weight: 600; }
.page-hero__card dd { margin: 0; color: var(--c-text); font-size: .94rem; font-weight: 700; text-align: right; }
.page-hero__card-note { font-size: .76rem; color: var(--c-muted); margin: 14px 0 0; font-style: italic; }

.bank-pill--lg { width: 48px; height: 48px; font-size: .85rem; border-radius: 12px; }

/* TL;DR box (FAQ) */
.tldr { background: linear-gradient(135deg, rgba(255,198,39,.15) 0%, rgba(255,198,39,.05) 100%); border-left: 4px solid var(--c-accent); border-radius: var(--radius); padding: 20px 24px; margin: 24px 0; }
.tldr__label { display: inline-block; font-size: .76rem; font-weight: 800; color: var(--c-accent-dark); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.tldr p { margin: 0; font-size: 1.12rem; line-height: 1.55; color: var(--c-text); font-weight: 500; }

/* Article Layout com TOC lateral */
.article-layout { padding: 48px 0 64px; }
.article-layout__inner { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }
.toc { position: sticky; top: 100px; background: var(--c-bg-soft); border-radius: var(--radius); padding: 20px; font-size: .9rem; }
.toc__title { font-size: .76rem; font-weight: 800; color: var(--c-muted); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px; font-family: var(--ff-body); }
.toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; display: grid; gap: 6px; }
.toc li { counter-increment: toc; }
.toc a { display: block; padding: 8px 12px; color: var(--c-text-soft); border-radius: var(--radius-sm); font-weight: 500; text-decoration: none; line-height: 1.4; transition: background .12s, color .12s; position: relative; padding-left: 34px; }
.toc a::before { content: counter(toc, decimal-leading-zero); position: absolute; left: 8px; top: 8px; font-size: .75rem; color: var(--c-muted); font-weight: 700; }
.toc a:hover { background: #fff; color: var(--c-primary); }
.toc a.is-active { background: #fff; color: var(--c-primary-darker); font-weight: 700; box-shadow: var(--shadow-sm); }
.toc a.is-active::before { color: var(--c-primary); }

/* Article Body + Prose */
.article-body { padding: 48px 0 64px; }
.article-body__inner { max-width: 820px; margin: 0 auto; }
.article-body--evergreen .article-body__inner, .article-body--faq .article-body__inner { max-width: none; margin: 0; }

.prose { font-size: 1.06rem; line-height: 1.75; color: var(--c-text); }
.prose h2 { margin: 48px 0 18px; color: var(--c-primary-darker); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 32px 0 10px; color: var(--c-text); font-family: var(--ff-body); letter-spacing: -0.015em; }
.prose p { margin: 0 0 1em; color: var(--c-text-soft); }
.prose p strong { color: var(--c-text); }
.prose ul, .prose ol { margin: 0 0 1.3em; padding-left: 1.4em; color: var(--c-text-soft); }
.prose ul li, .prose ol li { margin-bottom: 8px; }
.prose a { color: var(--c-primary); font-weight: 600; border-bottom: 1px dotted var(--c-primary); }
.prose a:hover { border-bottom-style: solid; text-decoration: none; }

/* Numbered list estilizada */
.numbered-list { list-style: none; padding-left: 0 !important; counter-reset: n; }
.numbered-list li { position: relative; padding-left: 44px; counter-increment: n; margin-bottom: 14px !important; }
.numbered-list li::before { content: counter(n); position: absolute; left: 0; top: 2px; width: 30px; height: 30px; border-radius: 50%; background: var(--c-accent); color: var(--c-primary-darker); font-weight: 800; font-size: .92rem; display: flex; align-items: center; justify-content: center; }

/* Callouts */
.callout { border-radius: var(--radius); padding: 18px 22px; margin: 24px 0; font-size: 1rem; line-height: 1.6; }
.callout--info { background: rgba(0,92,169,.06); border-left: 4px solid var(--c-primary); color: var(--c-text); }
.callout--warn { background: #FFF4E0; border-left: 4px solid var(--c-accent-dark); color: #6B3D00; }
.callout--warn strong { color: #4A2B00; }

/* Info tables */
.info-table { margin: 24px 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.info-table table { width: 100%; border-collapse: collapse; font-size: .96rem; background: #fff; }
.info-table th, .info-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--c-border); }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.info-table th { background: var(--c-bg-soft); color: var(--c-primary-darker); font-weight: 700; font-size: .88rem; width: 40%; }
.info-table td { color: var(--c-text-soft); font-weight: 500; }
.inline-disclaimer { font-size: .84rem; color: var(--c-muted); font-style: italic; margin: 12px 0 0; line-height: 1.5; }

/* Pros/Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 28px 0; }
.pros-cons__col { background: var(--c-bg-soft); border-radius: var(--radius); padding: 22px; }
.pros-cons__col h3 { margin: 0 0 14px; font-size: 1.08rem; }
.pros-cons__col:first-child { border-left: 4px solid var(--c-success); }
.pros-cons__col:last-child { border-left: 4px solid var(--c-accent-dark); }
.pros-cons__col ul { margin: 0; padding-left: 1.3em; }
.pros-cons__col li { font-size: .94rem; line-height: 1.55; }

/* FAQ compacta dentro de artigos */
.faq__list--compact { margin-top: 20px; }
.faq__list--compact summary h3 { font-size: 1.04rem; font-weight: 700; color: var(--c-primary-darker); letter-spacing: -0.015em; margin: 0; font-family: var(--ff-body); line-height: 1.4; }

/* Simulador embutido dentro de artigo */
.simulator-embed { margin: 48px 0; }
.simulator-embed .simulator { position: static; max-width: 560px; margin: 0 auto; }

/* CTA inline */
.article-cta { margin: 40px 0 0; padding: 32px 36px; background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-darker) 100%); color: #fff; border-radius: var(--radius-lg); text-align: center; }
.article-cta h2 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,.88); margin-bottom: 18px; font-size: 1rem; }

/* Related */
.related { padding: 72px 0; background: var(--c-bg-soft); }
.related__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.related__card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); padding: 22px; text-decoration: none !important; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; display: flex; flex-direction: column; gap: 8px; }
.related__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--c-primary); }
.related__label { font-size: .72rem; font-weight: 800; color: var(--c-accent-dark); text-transform: uppercase; letter-spacing: .12em; }
.related__card h3 { font-size: 1.08rem; font-weight: 800; color: var(--c-primary-darker); margin: 0; line-height: 1.3; }
.related__card p { font-size: .92rem; color: var(--c-text-soft); margin: 0; line-height: 1.55; }
.related__grid--questions { grid-template-columns: repeat(3, 1fr); }
.related__card--q h3 { font-size: 1rem; }
.related__cta { text-align: center; margin-top: 32px; }

@media (max-width: 1024px) {
  .article-layout__inner { grid-template-columns: 1fr; gap: 32px; }
  .toc { position: static; }
  .page-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .related__grid { grid-template-columns: repeat(2, 1fr); }
  .related__grid--questions { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pros-cons { grid-template-columns: 1fr; }
  .related__grid, .related__grid--questions { grid-template-columns: 1fr; }
  .breadcrumb ol { font-size: .82rem; }
  .article-cta { padding: 24px 22px; }
}
