/* ==========================================================================
   AERO LEX — Direitos do Passageiro Aéreo
   Design system e estilos globais
   ========================================================================== */

/* -------------------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------------------- */
:root {
  /* Cores */
  --bg: #0B0F14;
  --navy: #12253A;
  --navy-light: #1B3450;
  --navy-lighter: #23405f;
  --gold: #D8A83D;
  --gold-light: #F0C75E;
  --gold-dim: rgba(216, 168, 61, 0.28);
  --gold-faint: rgba(216, 168, 61, 0.12);
  --white: #F5F5F5;
  --text-secondary: #AEB4BC;
  --text-muted: #7C8794;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --error: #E2735A;
  --line: rgba(216, 168, 61, 0.18);
  --line-soft: rgba(245, 245, 245, 0.08);
  --success: #6FAE8C;

  /* Tipografia */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --container-narrow: 760px;
  --radius-sm: 3px;
  --radius-md: 6px;
  --gap-section: clamp(64px, 9vw, 112px);

  /* Transições */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------------------------------------------------------------------------
   2. RESET
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}

ul[class], ol[class] { list-style: none; padding: 0; }

img, picture, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

input, textarea { font: inherit; }

/* -------------------------------------------------------------------------
   3. BASE
   ------------------------------------------------------------------------- */
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.3rem; font-weight: 600; font-family: var(--font-body); }
h4 { font-size: 1.05rem; font-weight: 600; font-family: var(--font-body); }

p { color: var(--text-secondary); }
p + p { margin-top: 1em; }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 46ch;
}

strong { color: var(--white); font-weight: 600; }

a.text-link {
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 1px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
a.text-link:hover { border-color: var(--gold-light); }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding-block: var(--gap-section);
  position: relative;
}
.section--navy { background: var(--navy); }
.section--divider { border-top: 1px solid var(--line-soft); }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head p { margin-top: 14px; }
.section-head--center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--gold);
  color: var(--bg);
  padding: 10px 16px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 999;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* -------------------------------------------------------------------------
   4. BOTÕES
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: var(--radius-sm);
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
}
.btn svg, .btn img.wa-icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn--gold {
  background: var(--gold);
  color: #17222E;
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245,245,245,0.3);
}
.btn--outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn--sm { padding: 10px 18px; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* Botões que direcionam ao WhatsApp: sempre na cor oficial do WhatsApp */
.btn[data-whatsapp] {
  background: var(--whatsapp);
  color: #FFFFFF;
}
.btn[data-whatsapp]:hover {
  background: var(--whatsapp-dark);
  color: #FFFFFF;
}

/* -------------------------------------------------------------------------
   5. HEADER
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 20, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}
.logo__mark {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.wa-icon {
  display: block;
  object-fit: contain;
}
.logo__text-a { color: var(--gold-light); }
.logo__text-b { color: var(--white); font-weight: 400; }
.logo__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-desktop {
  display: none;
}
.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding-block: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--white);
  border-color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

@media (min-width: 960px) {
  .nav-desktop { display: block; }
}

/* -------------------------------------------------------------------------
   6. HERO
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(56px, 8vw, 96px) clamp(64px, 9vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 82% 8%, rgba(216,168,61,0.09), transparent 60%),
    var(--bg);
}

.hero__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  background: var(--gold-faint);
  border: 1px solid var(--gold-dim);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__eyebrow svg { width: 14px; height: 14px; }

.hero h1 { max-width: 15ch; }
.hero__lede {
  margin-top: 20px;
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  color: var(--text-secondary);
  max-width: 48ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
@media (max-width: 639px) {
  .hero__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 14px;
  }
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-secondary);
}
.hero__trust-item svg { width: 18px; height: 18px; color: var(--gold-light); flex-shrink: 0; }

.hero__art { position: relative; }

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; }
}

/* Ilustração do hero — Triagem inicial interativa */
.triage {
  border: 1px solid var(--gold-dim);
  background: linear-gradient(165deg, var(--navy) 0%, #0E1B2A 100%);
  border-radius: var(--radius-md);
  padding: 28px;
  max-width: 400px;
  margin-inline: auto;
}
.triage__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.triage__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-light);
}
.triage__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #FFFFFF;
  background: var(--whatsapp);
  padding: 5px 11px 5px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.triage__badge svg { width: 13px; height: 13px; flex-shrink: 0; }
.triage__meta {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}
.triage__step {
  font-size: 0.76rem;
  color: var(--text-muted);
}
.triage__progress {
  height: 4px;
  border-radius: 999px;
  background: var(--line-soft);
  overflow: hidden;
  margin-top: 8px;
  margin-bottom: 24px;
}
.triage__progress span {
  display: block;
  height: 100%;
  background: var(--gold);
  border-radius: 999px;
  transition: width 0.35s var(--ease);
}

.triage__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 18px;
  transition: color 0.2s var(--ease);
}
.triage__back svg { width: 14px; height: 14px; }
.triage__back:hover { color: var(--gold-light); }

.triage__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.triage__question {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
}
.triage__question--sm {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.triage__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.triage__option {
  text-align: left;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.02);
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.3;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.triage__option:hover { border-color: var(--gold-dim); }
.triage__option[aria-pressed="true"] {
  border-color: var(--gold);
  background: var(--gold-faint);
  color: var(--gold-light);
}
.triage__option--highlight {
  border-color: var(--gold-dim);
  background: var(--gold-faint);
}
.triage__option-hint {
  display: block;
  margin-top: 3px;
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--gold-light);
}

.triage__field { display: block; margin-bottom: 20px; }
.triage__field-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.triage__field input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  color: var(--white);
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
}
.triage__field input::placeholder { color: var(--text-muted); }
.triage__field input:focus { outline: none; border-color: var(--gold-dim); }
.triage__field input[aria-invalid="true"] { border-color: var(--error); }
.triage__field-error {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--error);
}

.triage__continue:disabled,
.triage__continue[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}
.triage__continue:disabled:hover,
.triage__continue[disabled]:hover {
  background: var(--gold);
}

.triage__panel--final { text-align: center; }
.triage__panel--final .triage__title,
.triage__panel--final .triage__question { text-align: center; }
.triage__final-icon {
  width: 40px; height: 40px;
  color: var(--gold-light);
  margin-inline: auto;
  margin-bottom: 14px;
}

.triage__panel--notice { text-align: center; }
.triage__notice-icon {
  width: 34px; height: 34px;
  color: var(--error);
  margin-inline: auto;
  margin-bottom: 14px;
}
.triage__notice-text {
  color: var(--error);
  font-size: 0.96rem;
  line-height: 1.5;
  margin-bottom: 6px;
}
.triage__restart {
  display: block;
  margin: 16px auto 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}
.triage__restart:hover { color: var(--gold-light); }

/* -------------------------------------------------------------------------
   7. FLOATING WHATSAPP
   ------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #FFFFFF;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.whatsapp-float:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }
.whatsapp-float svg, .whatsapp-float img.wa-icon { width: 20px; height: 20px; flex-shrink: 0; }
.whatsapp-float__text { display: none; }

@media (min-width: 640px) {
  .whatsapp-float__text { display: inline; }
}

/* -------------------------------------------------------------------------
   8. CARDS — Problemas / Direitos
   ------------------------------------------------------------------------- */
.grid-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .grid-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .grid-cards { grid-template-columns: repeat(4, 1fr); } }

.problem-card {
  border: 1px solid var(--line);
  border-bottom: 2px solid var(--line);
  background: var(--navy);
  padding: 26px 24px;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.problem-card:hover {
  border-color: var(--gold-dim);
  border-bottom-color: var(--gold);
  background: var(--navy-light);
}
.problem-card__icon {
  width: 40px; height: 40px;
  color: var(--gold-light);
}
.problem-card__icon svg { width: 100%; height: 100%; }
.problem-card h3 { font-size: 1.05rem; }
.problem-card p.problem-card__question {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 0;
}
.problem-card p { font-size: 0.9rem; margin-top: 0; }
.problem-card__go {
  margin-top: auto;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.problem-card__go svg { width: 14px; height: 14px; transition: transform 0.2s var(--ease); }
.problem-card:hover .problem-card__go svg { transform: translateX(3px); }

/* -------------------------------------------------------------------------
   9. DIFERENCIAIS
   ------------------------------------------------------------------------- */
.grid-diff {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .grid-diff { grid-template-columns: 1fr 1fr; } }

.diff-item { display: flex; gap: 16px; }
.diff-item__icon {
  width: 22px; height: 22px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 3px;
}
.diff-item h3 { font-size: 1rem; margin-bottom: 6px; }
.diff-item p { font-size: 0.92rem; }

/* -------------------------------------------------------------------------
   10. STEPS
   ------------------------------------------------------------------------- */
.steps {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps::before {
    content: "";
    position: absolute;
    top: 23px;
    left: calc(100%/6);
    right: calc(100%/6);
    height: 1px;
    background: var(--line);
  }
}
.step { position: relative; }
.step__num {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-light);
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; }

/* -------------------------------------------------------------------------
   11. SOBRE
   ------------------------------------------------------------------------- */
.about-highlight {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-top: 1.6em;
}

/* -------------------------------------------------------------------------
   12. DEPOIMENTOS
   ------------------------------------------------------------------------- */
.grid-testimonials {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .grid-testimonials { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  border: 1px solid var(--line-soft);
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card__quote-mark { color: var(--gold); width: 26px; height: 20px; }
.testimonial-card p { font-size: 0.94rem; font-style: italic; color: var(--text-secondary); }
.testimonial-card__author { font-size: 0.85rem; color: var(--text-muted); margin-top: auto; }
.testimonial-card__author strong { display: block; color: var(--white); font-style: normal; font-size: 0.9rem; }
.testimonial-card--placeholder {
  border-style: dashed;
  border-color: var(--line);
}
.testimonial-card--placeholder p { color: var(--text-muted); }

.testimonials-note {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* -------------------------------------------------------------------------
   13. FAQ / ACCORDION
   ------------------------------------------------------------------------- */
.faq-list { border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
}
.faq-item__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: relative;
  color: var(--gold-light);
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
}
.faq-item__icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-item__icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); transition: transform 0.25s var(--ease), opacity 0.2s var(--ease); }
.faq-item__question[aria-expanded="true"] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s var(--ease);
}
.faq-item__answer-inner { padding: 0 4px 22px; max-width: 68ch; }
.faq-item__answer-inner p { font-size: 0.95rem; }

/* -------------------------------------------------------------------------
   14. CTA BANDS
   ------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, #0E1B2A 100%);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-md);
  padding: clamp(32px, 5vw, 52px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); max-width: 20ch; }
.cta-band p { margin-top: 8px; max-width: 42ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.cta-inline {
  margin-block: 40px;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  background: var(--navy);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cta-inline p { color: var(--white); font-size: 0.98rem; max-width: 40ch; }

/* -------------------------------------------------------------------------
   15. ARTIGOS — cards e listagem
   ------------------------------------------------------------------------- */
.grid-articles {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .grid-articles { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .grid-articles { grid-template-columns: repeat(3, 1fr); } }

.article-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.article-card[hidden] { display: none; }
.article-card:hover { border-color: var(--gold-dim); }
.article-card__media {
  aspect-ratio: 16/9;
  background:
    linear-gradient(160deg, var(--navy-light), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dim);
  position: relative;
}
.article-card__media svg { width: 36px; height: 36px; }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.article-card h3 { font-size: 1.08rem; line-height: 1.3; }
.article-card p { font-size: 0.9rem; }
.article-card__meta {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--line-soft);
}
.article-card__read {
  color: var(--gold-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-chip {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.2s var(--ease);
}
.filter-chip:hover { border-color: var(--gold-dim); color: var(--white); }
.filter-chip[aria-pressed="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: #17222E;
  font-weight: 600;
}

.search-box {
  position: relative;
  max-width: 380px;
  margin-bottom: 28px;
}
.search-box input {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--line);
  color: var(--white);
  padding: 13px 16px 13px 42px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}
.search-box input::placeholder { color: var(--text-muted); }
.search-box input:focus { border-color: var(--gold-dim); outline: none; }
.search-box svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; color: var(--text-muted);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  display: none;
}
.empty-state.is-visible { display: block; }

/* -------------------------------------------------------------------------
   16. BREADCRUMBS
   ------------------------------------------------------------------------- */
.breadcrumbs {
  padding-block: 20px;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs a { color: var(--text-muted); transition: color 0.2s var(--ease); }
.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs li:last-child { color: var(--text-secondary); }
.breadcrumbs svg { width: 12px; height: 12px; }

/* -------------------------------------------------------------------------
   17. ARTIGO — página individual
   ------------------------------------------------------------------------- */
.article-header { padding-block: 12px 44px; }
.article-header__cat {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
  display: block;
}
.article-header h1 { max-width: 22ch; }
.article-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  font-size: 0.87rem;
  color: var(--text-muted);
}
.article-header__meta span { display: flex; align-items: center; gap: 7px; }
.article-header__meta svg { width: 15px; height: 15px; }

.article-body {
  max-width: 72ch;
}
.article-body h2 {
  font-size: 1.45rem;
  margin-top: 2.2em;
  margin-bottom: 0.7em;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 1.12rem;
  margin-top: 1.8em;
  margin-bottom: 0.6em;
}
.article-body p { font-size: 1rem; color: var(--text-secondary); }
.article-body ul, .article-body ol {
  margin-top: 1em;
  padding-left: 1.4em;
  list-style: disc;
  color: var(--text-secondary);
}
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 0.5em; padding-left: 0.3em; }
.article-body li::marker { color: var(--gold); }
.article-body strong { color: var(--white); }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 1.6em 0;
  font-style: italic;
  color: var(--white);
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8em 0;
  font-size: 0.92rem;
}
.article-body th, .article-body td {
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
  color: var(--text-secondary);
}
.article-body th {
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.article-body td:first-child { color: var(--white); font-weight: 500; }

.article-cover {
  margin-top: 28px;
  margin-bottom: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--line-soft);
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-cta-final {
  margin-top: 3em;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, var(--navy) 0%, #0E1B2A 100%);
}
.article-cta-final h2 { font-size: 1.4rem; margin-top: 0; }
.article-cta-final p { max-width: 48ch; margin-inline: auto; }
.article-cta-final .btn { margin-top: 0; }

.article-callout {
  display: flex;
  gap: 16px;
  margin: 1.8em 0;
  padding: 20px 22px;
  border: 1px solid var(--gold-dim);
  background: var(--gold-faint);
  border-radius: var(--radius-sm);
}
.article-callout__icon {
  width: 24px; height: 24px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.article-callout p { color: var(--white); font-size: 0.96rem; }
.article-callout p + p { margin-top: 0.6em; color: var(--text-secondary); }

.article-disclaimer {
  margin-top: 2.4em;
  padding: 18px 20px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  color: var(--text-muted);
}

.article-layout {
  display: grid;
  gap: 56px;
}
@media (min-width: 980px) {
  .article-layout { grid-template-columns: 1fr 280px; align-items: start; }
}

.article-aside {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.aside-card {
  border: 1px solid var(--line-soft);
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 22px;
}
.aside-card h4 { font-size: 0.95rem; margin-bottom: 14px; }
.aside-card ul { display: flex; flex-direction: column; gap: 10px; }
.aside-card a { font-size: 0.88rem; color: var(--text-secondary); transition: color 0.2s var(--ease); }
.aside-card a:hover { color: var(--gold-light); }
.aside-card--cta { border-color: var(--gold-dim); text-align: center; }
.aside-card--cta p { font-size: 0.88rem; margin-bottom: 16px; }

.related-articles { padding-block: 8px 0; }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag {
  font-size: 0.76rem;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-muted);
}

/* -------------------------------------------------------------------------
   18. PÁGINAS DE DIREITOS (serviço)
   ------------------------------------------------------------------------- */
.right-hero {
  padding-block: 20px 48px;
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) { .right-hero { grid-template-columns: 1.3fr 0.7fr; align-items: start; } }

.summary-card {
  border: 1px solid var(--gold-dim);
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 26px;
}
.summary-card h4 { font-size: 0.9rem; margin-bottom: 16px; color: var(--gold-light); }
.summary-card ul { display: flex; flex-direction: column; gap: 12px; }
.summary-card li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.summary-card li svg { width: 16px; height: 16px; color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.summary-card .btn { margin-top: 18px; }

.checklist { display: flex; flex-direction: column; gap: 14px; margin-top: 1.2em; }
.checklist li {
  display: flex;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text-secondary);
  align-items: flex-start;
}
.checklist li svg { width: 19px; height: 19px; color: var(--gold-light); flex-shrink: 0; margin-top: 3px; }

/* -------------------------------------------------------------------------
   19. FOOTER
   ------------------------------------------------------------------------- */
.site-footer {
  background: #080B0E;
  border-top: 1px solid var(--line-soft);
  padding-block: 64px 32px;
}
.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; }
}
.footer-brand p { font-size: 0.9rem; margin-top: 16px; max-width: 32ch; }
.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.9rem; color: var(--text-secondary); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--gold-light); }

.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
  color: var(--text-secondary);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-social svg, .footer-social img.wa-icon { width: 17px; height: 17px; }
.footer-social a[data-whatsapp] { background: var(--whatsapp); border-color: var(--whatsapp); }
.footer-social a[data-whatsapp]:hover { background: var(--whatsapp-dark); border-color: var(--whatsapp-dark); }

.footer-bottom {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-legal {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 82ch;
  line-height: 1.6;
}

/* -------------------------------------------------------------------------
   20. UTILITÁRIOS
   ------------------------------------------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.stack { display: flex; flex-direction: column; }
.hide-mobile { display: none; }
@media (min-width: 760px) { .hide-mobile { display: block; } }
