/* ===== LONGEVITA EDUCACAO — Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  color-scheme: light;

  /* Brand Palette — Esmeralda + Dourado */
  --green-950: #052e16;
  --green-900: #064e3b;
  --green-800: #065f46;
  --green-700: #047857;
  --green-600: #059669;
  --green-500: #10b981;
  --green-200: #a7f3d0;
  --green-100: #d1fae5;
  --green-50:  #ecfdf5;

  --gold:      #d97706;
  --gold-100:  #fef3c7;
  --gold-50:   #fffbeb;

  --red:    #dc2626;
  --purple: #7c3aed;

  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white:    #ffffff;
  --bg:       #ffffff;

  --radius:      16px;
  --radius-sm:   12px;
  --radius-pill: 999px;

  --shadow-sm: 0 6px 18px rgba(5, 46, 22, 0.08);
  --shadow-md: 0 12px 30px rgba(5, 46, 22, 0.12);
  --shadow-lg: 0 18px 48px rgba(5, 46, 22, 0.16);
  --transition: 0.25s ease;

  --brand-gradient: linear-gradient(135deg, #064e3b 0%, #047857 55%, #059669 100%);
  --gold-gradient:  linear-gradient(135deg, #b45309 0%, #d97706 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; min-height: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  background: var(--bg);
  color: var(--gray-900);
  line-height: 1.7;
  font-size: 16px;
}

a, button { font: inherit; }
button { cursor: pointer; }
img, svg { display: block; max-width: 100%; }

/* ── Skip link ── */
.skip-link {
  position: absolute; top: -999px; left: 1rem;
  background: var(--green-700); color: var(--white);
  padding: .75rem 1rem; border-radius: 999px; z-index: 999;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

/* ── Container ── */
.container { width: min(100%, calc(100% - 2rem)); margin: 0 auto; }

/* ── Topbar ── */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 38px; gap: 1rem;
  background: var(--brand-gradient);
  color: var(--white); padding: 0 1rem; font-size: .85rem;
}
.topbar-info { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: .35rem; }
.topbar-item svg { width: 16px; height: 16px; }
.topbar-item a { color: var(--white); text-decoration: none; }
.topbar-separator { color: rgba(255,255,255,.4); }
.topbar-social { display: flex; align-items: center; gap: .75rem; }
.social-link {
  width: 24px; height: 24px; color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
}

/* ── Header ── */
.header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(5, 46, 22, .08);
  transition: box-shadow .25s ease;
}
.header.sticky { box-shadow: 0 2px 12px rgba(0,0,0,.08); }

.navbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 96px;
}

/* ── Brand ── */
.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; }
.brand svg { width: 44px; height: 44px; }
.brand-title { display: grid; line-height: 1.1; }
.brand-title strong {
  font-size: 18px; font-weight: 700; letter-spacing: -.3px;
  background: var(--brand-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-title span { font-size: 10px; color: var(--gray-500); letter-spacing: .5px; }

/* ── Nav ── */
.main-nav { flex: 1; }
.nav-list {
  display: flex; align-items: center; gap: 24px;
  list-style: none; padding: 0; margin: 0;
}
.nav-link {
  color: var(--gray-700); text-decoration: none;
  font-size: 14px; font-weight: 500;
  position: relative; padding: .4rem 0;
}
.nav-link:hover { color: var(--green-600); }
.nav-link.active { color: var(--green-700); }
.nav-link.active::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--green-600); border-radius: 999px;
}

/* ── Buttons ── */
.nav-actions { display: flex; align-items: center; gap: .9rem; }

.cta-button, .button-primary, .button-secondary,
.button-outline, .button-link {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; border-radius: 50px; border: none;
  font-weight: 600; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.cta-button {
  background: var(--brand-gradient);
  color: var(--white); padding: 10px 20px;
}
.cta-button svg { width: 18px; height: 18px; }
.button-primary {
  background: var(--brand-gradient); color: var(--white);
  padding: 0 32px; min-height: 52px;
  box-shadow: 0 4px 16px rgba(4,120,87,.28);
}
.button-secondary {
  background: transparent; color: var(--green-700);
  border: 2px solid var(--green-700); min-height: 52px; padding: 0 24px;
}
.button-outline {
  background: transparent; color: var(--green-700);
  border: 2px solid rgba(255,255,255,.2);
}
.button-link { background: transparent; color: var(--green-700); }
.button-primary:hover, .button-secondary:hover,
.cta-button:hover, .button-outline:hover { transform: translateY(-2px); }

/* ── Mobile toggle ── */
.mobile-toggle {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--gray-200); border-radius: 14px; background: transparent;
}

/* ── Drawer ── */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(5,46,22,.45); opacity: 0; visibility: hidden;
  transition: opacity var(--transition);
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; left: 0;
  width: min(88vw, 320px); height: 100%;
  background: var(--white); padding: 1.5rem;
  transform: translateX(-110%);
  transition: transform var(--transition);
  z-index: 90; overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer nav { display: grid; gap: 1rem; margin-top: 1rem; }
.drawer a, .drawer .drawer-cta { color: var(--green-700); text-decoration: none; }
.drawer-cta {
  margin-top: 1.5rem; display: inline-flex; width: 100%;
  padding: .95rem 1rem; background: var(--brand-gradient); color: var(--white);
  border-radius: 12px;
}
.drawer-social { margin-top: 1.5rem; color: var(--gray-700); }
.drawer-social-links { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .75rem; }

/* ── Hero ── */
.hero {
  position: relative; padding: 100px 0 80px; overflow: hidden;
  background: linear-gradient(160deg, #ecfdf5 0%, #d1fae5 40%, #f0fdf4 100%);
}
.hero::after {
  content: ''; position: absolute; right: -7rem; bottom: -7rem;
  width: 28rem; height: 28rem;
  background: rgba(5, 150, 105, .12); border-radius: 50%; filter: blur(10px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  gap: 2.5rem; align-items: start;
}
.hero-headline { display: grid; gap: 1.4rem; max-width: 620px; }

.section-tag {
  display: inline-block; color: var(--green-700);
  letter-spacing: 2px; font-size: 11px; font-weight: 700; text-transform: uppercase;
}
.hero-badge-row { display: flex; }
.badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .55rem 1rem; border-radius: 999px; font-size: .9rem; font-weight: 600;
}
.badge-soft { background: var(--green-100); color: var(--green-700); }
.badge-warning { background: var(--gold); color: var(--white); }
.badge-secondary { background: rgba(5,46,22,.06); color: var(--gray-700); }

.decorative-line {
  width: 48px; height: 3px;
  background: var(--gold-gradient); border-radius: 999px;
}

.hero-headline h1 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.02; color: var(--green-950);
}
.lead {
  margin: 0; max-width: 42rem;
  font-size: 1.125rem; font-weight: 300; line-height: 1.8; color: var(--gray-700);
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: .8rem;
  font-size: .95rem; color: var(--gray-700);
}
.hero-stats li { display: inline-flex; align-items: center; }
.hero-stats li + li::before {
  content: '|'; margin: 0 .8rem; color: var(--gray-400);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-disclaimer {
  display: inline-flex; align-items: center; gap: .75rem;
  margin: 0; color: var(--gray-600); font-size: .95rem;
}
.info-icon svg { width: 18px; height: 18px; }

/* ── Hero card ── */
.hero-card {
  position: relative; max-width: 340px; padding: 28px;
  border-radius: 20px;
  background: linear-gradient(145deg, #064e3b 0%, #047857 100%);
  color: var(--white); box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg); transition: transform .3s ease; z-index: 1;
}
.hero-card:hover { transform: rotate(0deg); }
.hero-card-header {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem;
}
.hero-card h2 { margin: 0; font-size: 1.6rem; }
.hero-card-pill {
  display: inline-flex; align-items: center;
  padding: .4rem .7rem; border-radius: 999px;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.95);
  font-size: .75rem; text-transform: uppercase; letter-spacing: .08em;
}
.hero-card-list {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem;
}
.hero-card-list li {
  display: grid; grid-template-columns: auto 1fr;
  gap: 1rem; align-items: flex-start;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-card-list li:last-child { border-bottom: none; }
.hero-card-icon {
  width: 34px; height: 34px; display: grid; place-items: center;
  background: rgba(255,255,255,.16); border-radius: 12px;
}
.hero-card-icon svg { width: 16px; height: 16px; color: var(--white); }
.hero-card-title-row {
  display: flex; justify-content: space-between; align-items: center; gap: .75rem;
}
.hero-card-title-row strong { font-size: 14px; color: var(--white); }
.hero-card-text {
  margin-top: .35rem; display: block;
  color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.7;
}
.hero-card-note {
  margin-top: 1.5rem; font-size: .85rem;
  color: rgba(255,255,255,.65); font-style: italic;
}

/* ── Stats bar ── */
.stats-bar { background: var(--green-900); padding: 56px 0; }
.stats-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; overflow: hidden;
}
.stats-item {
  padding: 2rem 1.5rem; display: grid; gap: .75rem;
  align-items: start; position: relative;
}
.stats-item:not(:last-child)::after {
  content: ''; position: absolute; top: 1.5rem; right: 0;
  height: calc(100% - 3rem); width: 1px;
  background: rgba(255,255,255,.12);
}
.stats-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem; line-height: 1; color: var(--white);
}
.stats-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 2.5px; color: rgba(255,255,255,.7);
}

/* ── Generic sections ── */
.section { padding: 3rem 0; }
.section-header { display: grid; gap: 1rem; margin-bottom: 2rem; }
.section-header h2 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 2.4vw, 2.5rem);
  line-height: 1.08; color: var(--green-900);
}
.section-row { display: grid; grid-template-columns: 60% 40%; gap: 2rem; }
.section-content p {
  margin-top: 1.25rem; font-size: 1.0625rem;
  line-height: 1.85; color: var(--gray-700);
}
.section-link a, .action-link {
  color: var(--green-700); text-decoration: none; font-weight: 600;
}
.section-link a:hover, .action-link:hover { text-decoration: underline; }

/* ── Sidebar card ── */
.sidebar-card {
  background: var(--green-50);
  border-left: 4px solid var(--green-600);
  border-radius: 0 12px 12px 0; padding: 24px;
}
.sidebar-card h3 { margin-top: 0; color: var(--green-900); }

/* ── Generic card ── */
.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 24px; padding: 1.75rem; box-shadow: var(--shadow-sm);
}
.card-list {
  list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .85rem;
}
.card-list li { display: flex; gap: .85rem; align-items: flex-start; color: var(--gray-700); }

/* ── Timeline ── */
.timeline {
  position: relative; display: grid; gap: 1.25rem; padding-left: 3rem;
}
.timeline::before {
  content: ''; position: absolute; left: 19px; top: 0; bottom: 0;
  width: 2px; background: var(--green-200);
}
.timeline-item {
  position: relative; display: grid;
  grid-template-columns: auto 1fr; gap: 1rem;
}
.timeline-marker {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-gradient); color: #fff;
  display: grid; place-items: center; font-weight: 700;
  box-shadow: 0 6px 18px rgba(4,120,87,.22);
}
.timeline-card {
  padding: 20px 24px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.timeline-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.timeline-card-top {
  display: flex; gap: .75rem; align-items: center; margin-bottom: .9rem;
}
.timeline-icon {
  width: 28px; height: 28px; display: inline-grid; place-items: center;
  background: var(--green-100); border-radius: 999px;
}
.timeline-card h3 { margin: 0; font-size: 1rem; }

.alert-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.25rem; border-radius: 8px;
  background: var(--gold-50); border-left: 4px solid var(--gold);
  margin-top: 1.5rem;
}
.alert-icon { display: grid; place-items: center; }
.alert-card strong { display: block; color: #92400e; }

/* ── Status grid ── */
.status-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.status-card {
  border-radius: 16px; padding: 24px;
  background: var(--white); border: 1px solid var(--gray-200);
  position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.status-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.status-top-border {
  position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: currentColor;
}
.status-card--success { color: var(--green-600); }
.status-card--danger  { color: var(--red); }
.status-card--warning { color: var(--gold); }
.status-icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 24px; background: var(--green-100);
  font-size: 1.3rem; margin-bottom: 1rem;
}
.status-card h3 { margin-top: 0; font-size: 1.05rem; }
.status-list {
  list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .65rem;
}
.status-list li { display: flex; gap: .6rem; color: var(--gray-700); }
.status-emoji { min-width: 22px; display: inline-flex; align-items: center; justify-content: center; }
.status-note {
  margin-top: 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
  background: var(--green-50); border-left: 4px solid var(--green-600);
  padding: 1rem 1.25rem; border-radius: 12px;
}
.note-icon { width: 34px; height: 34px; display: grid; place-items: center; color: var(--green-700); }
.note-icon svg { width: 20px; height: 20px; }

/* ── Tabs ── */
.tab-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .75rem; background: var(--gray-100); padding: 6px; border-radius: 12px;
}
.tab-button {
  border: none; background: transparent; color: var(--gray-500);
  font-weight: 600; padding: .9rem 1rem; border-radius: 12px;
  text-align: left; display: inline-flex; justify-content: space-between;
  align-items: center; gap: .75rem;
}
.tab-button.active {
  background: var(--white); box-shadow: var(--shadow-sm);
  color: var(--green-700); border-bottom: 3px solid var(--green-700);
}
.tab-button:hover { color: var(--gray-900); }
.tab-badge {
  background: var(--green-100); color: var(--green-700);
  padding: .2rem .55rem; border-radius: 999px; font-size: .75rem;
}
.tab-panels { margin-top: 1.5rem; }
.tab-panel {
  display: none; opacity: 0; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.tab-panel.active { display: block; opacity: 1; transform: translateY(0); }
.tab-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.tab-grid article {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 14px; padding: 1rem 1.15rem;
}
.tab-grid article strong { display: block; margin-bottom: .45rem; font-size: 1rem; }
.tab-grid article p { margin: 0; color: var(--gray-500); font-size: .95rem; line-height: 1.7; }

/* ── Redação ── */
.redacao-layout { display: grid; gap: 2rem; grid-template-columns: 1.5fr .9fr; }
.redacao-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.redacao-card {
  position: relative; padding: 1.6rem; border-radius: 18px;
  background: var(--white); border-left: 3px solid var(--green-700);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.redacao-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-number {
  position: absolute; top: 1rem; right: 1rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem; color: var(--green-100); line-height: 1;
}
.card-badge {
  display: inline-flex; align-items: center;
  padding: .35rem .75rem; border-radius: 999px;
  background: var(--green-100); color: var(--green-700);
  font-size: .8rem; margin-bottom: 1rem;
}
.redacao-card h3 { margin-top: 0; font-size: 1rem; color: var(--green-900); }
.redacao-card p { margin: .65rem 0 0; color: var(--gray-600); }
.redacao-sidebar {
  background: var(--brand-gradient); padding: 24px;
  border-radius: 24px; color: var(--white);
}
.redacao-sidebar h3 { margin-top: 0; }
.check-list {
  list-style: none; padding: 0; margin: 1.25rem 0 1.75rem; display: grid; gap: .75rem;
}
.check-list li { display: flex; gap: .75rem; align-items: flex-start; }
.check-icon {
  width: 24px; line-height: 1; display: inline-flex; align-items: center;
  justify-content: center; background: rgba(255,255,255,.14); border-radius: 50%;
}
.button-small { padding: .85rem 1.2rem; font-size: .95rem; }

/* ── Benefit grid ── */
.benefit-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.benefit-card {
  padding: 1.75rem; border-radius: 20px;
  background: var(--white); border: 1px solid var(--gray-200);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.benefit-card:hover { background: var(--green-50); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.benefit-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 16px; margin-bottom: 1rem; font-size: 1.4rem;
}
.benefit-card--blue   .benefit-icon { background: var(--green-100); }
.benefit-card--green  .benefit-icon { background: var(--green-100); }
.benefit-card--yellow .benefit-icon { background: var(--gold-100); }
.benefit-card--purple .benefit-icon { background: rgba(124,58,237,.1); }
.benefit-card h3 { margin-top: 0; font-size: 1.25rem; }
.benefit-card p { color: var(--gray-600); font-size: .94rem; line-height: 1.7; margin: .85rem 0 1rem; }

/* ── Articles ── */
.articles-layout { display: grid; gap: 1.5rem; grid-template-columns: 55% 45%; }
.article-feature {
  padding: 2rem; border-radius: 24px;
  background: var(--white); box-shadow: var(--shadow-sm); display: grid; gap: 1rem;
}
.article-image {
  min-height: 240px; border-radius: 20px; overflow: hidden;
  background: linear-gradient(180deg, var(--green-100) 0%, var(--green-50) 100%);
  display: grid; place-items: center;
}
.article-thumb {
  width: 80px; min-width: 80px; aspect-ratio: 1/1;
  border-radius: 18px; overflow: hidden;
  display: grid; place-items: center; background: var(--green-100);
}
.article-image svg, .article-thumb svg { width: 100%; height: auto; }
.article-category {
  display: inline-flex; align-items: center;
  padding: .45rem .85rem; border-radius: 999px;
  background: var(--green-100); color: var(--green-700); font-size: .82rem;
}
.article-feature h3 { margin: 0; font-size: 1.75rem; line-height: 1.2; }
.article-feature p  { margin: 0; color: var(--gray-600); max-width: 42rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 1rem; color: var(--gray-500); font-size: .95rem; }
.article-list { display: grid; gap: 1rem; }
.article-small {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 1rem; align-items: center; padding: 1rem;
  border-radius: 18px; background: var(--white); border: 1px solid var(--gray-200);
}
.article-small h4 { margin: 0 0 .45rem; font-size: 1rem; line-height: 1.3; }
.article-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .35rem .75rem; border-radius: 999px;
  background: var(--green-100); color: var(--green-700); font-size: .78rem;
}
.article-actions { display: flex; justify-content: center; margin-top: 1rem; }
.breadcrumb { margin: 0 0 1rem; color: var(--gray-500); font-size: .95rem; }

/* ── Info list ── */
.info-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .85rem; }
.info-list li { display: flex; gap: .75rem; color: var(--gray-700); }
.info-icon { width: 20px; min-width: 20px; height: 20px; display: inline-grid; place-items: center; color: var(--green-600); }

/* ── FAQ ── */
.faq-list { display: grid; gap: .9rem; }
.faq-item {
  border-radius: 12px; border: 1px solid var(--gray-200);
  background: var(--white); overflow: hidden;
  transition: box-shadow .25s ease;
}
.faq-item.open {
  background: #f0fdf4; border-left: 3px solid var(--green-600);
  box-shadow: var(--shadow-sm);
}
.faq-summary {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 18px 20px; background: transparent; border: none;
  text-align: left; color: var(--gray-900);
}
.faq-badge {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-600); color: var(--white);
  display: inline-grid; place-items: center; font-size: 11px; flex-shrink: 0;
}
.faq-summary span:nth-child(2) { flex: 1; }
.chevron {
  width: 18px; height: 18px; display: inline-flex;
  transition: transform .3s ease; color: var(--gray-500);
}
.faq-item.open .chevron { transform: rotate(180deg); }
.faq-content {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease; padding: 0 20px;
}
.faq-item.open .faq-content { max-height: 24rem; padding: 0 20px 18px; }
.faq-content p { margin: 0; color: var(--gray-600); font-size: .95rem; line-height: 1.75; }

/* ── Notice box ── */
.notice-box {
  border-radius: 16px; padding: 32px;
  background: var(--green-50); border: 1px solid var(--green-200);
  display: grid; grid-template-columns: auto 1fr;
  align-items: center; gap: 1.25rem;
}
.notice-icon {
  width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-100); border-radius: 18px; flex-shrink: 0;
}
.notice-icon svg { width: 24px; height: 24px; color: var(--green-700); }
.notice-box h3 {
  margin: 0; font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem; color: var(--green-900);
}
.notice-box p { margin: 0; color: var(--gray-600); line-height: 1.8; }
.notice-link { display: inline-flex; }

/* ── Newsletter ── */
.newsletter-section {
  background: var(--brand-gradient); position: relative;
}
.newsletter-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at top left, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .35;
}
.newsletter-card {
  position: relative; display: grid; gap: 2rem;
  padding: 3rem 2rem; border-radius: 28px; overflow: hidden;
}
.newsletter-card > * { position: relative; z-index: 1; }
.newsletter-copy h2 { margin: 0; font-size: clamp(2rem, 3vw, 2.8rem); color: var(--white); }
.newsletter-copy p  { margin: .75rem 0 0; color: rgba(255,255,255,.75); font-size: 1.05rem; }
.newsletter-form { display: grid; gap: 1rem; }
.newsletter-fields { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.newsletter input {
  width: 100%; border: 1px solid rgba(255,255,255,.2); border-radius: 12px;
  padding: .95rem 1rem; background: rgba(255,255,255,.1); color: var(--white);
}
.newsletter input::placeholder { color: rgba(255,255,255,.65); }
.checkbox-field {
  display: flex; gap: .75rem; align-items: flex-start;
  color: rgba(255,255,255,.8); font-size: .9rem;
}
.checkbox-field input { width: 18px; height: 18px; margin-top: .15rem; }
.checkbox-field a { color: rgba(255,255,255,.95); text-decoration: underline; }
.newsletter-actions { display: flex; justify-content: flex-start; }
.newsletter-note { margin: 0; color: rgba(255,255,255,.75); font-size: .95rem; }
.form-feedback {
  display: none; padding: 1rem; border-radius: 14px;
  font-weight: 600; margin-top: .5rem;
}

/* ── Footer ── */
.footer {
  background: linear-gradient(160deg, #052e16 0%, #064e3b 60%, #065f46 100%);
  color: var(--white); padding: 64px 0 32px;
}
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.footer-brand strong { display: block; font-size: 1.4rem; margin-bottom: .75rem; }
.footer-seals { display: flex; flex-wrap: wrap; gap: .65rem; }
.seal {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem .85rem; border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px; font-size: .82rem;
}
.footer-column h4 {
  margin: 0 0 1rem; color: rgba(255,255,255,.35);
  text-transform: uppercase; letter-spacing: 2px; font-size: 11px;
}
.footer-list, .contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.footer-list li a, .contact-list li span, .contact-list li a {
  color: rgba(255,255,255,.55); font-size: .95rem; text-decoration: none;
}
.footer-list li a:hover, .contact-list li a:hover { color: rgba(255,255,255,.9); }
.contact-list li { display: flex; align-items: center; gap: .75rem; }
.contact-list svg { width: 14px; height: 14px; color: var(--white); flex-shrink: 0; }
.footer-divider { height: 1px; background: rgba(255,255,255,.08); margin: 2rem 0; }
.footer-bottom { display: grid; gap: 1rem; }
.footer-company-card { background: rgba(255,255,255,.04); padding: 12px; border-radius: 8px; }
.footer-note { margin: 0; font-size: 11px; color: rgba(255,255,255,.5); font-style: italic; }

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed; inset: auto 0 0 0; z-index: 100;
  background: var(--white); padding: 1.25rem 1rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,.08);
  display: grid; gap: 1rem; max-width: 1200px; margin: 0 auto;
}
.cookie-brand { display: grid; gap: 1rem; grid-template-columns: auto 1fr; align-items: center; }
.cookie-logo { width: 40px; height: 40px; border-radius: 12px; overflow: hidden; }
.cookie-buttons { display: flex; flex-wrap: wrap; gap: .75rem; }
.cookie-banner button, .cookie-banner a { min-width: 140px; padding: .85rem 1rem; border-radius: 999px; border: none; }
.cookie-banner .accept-all { background: var(--brand-gradient); color: var(--white); }
.cookie-banner .button-outline { border: 1px solid rgba(5,46,22,.12); background: transparent; color: var(--gray-900); }
.cookie-banner .button-link   { background: transparent; color: var(--green-700); }

/* ── Modal ── */
.modal {
  position: fixed; inset: 0; display: grid; place-items: center;
  background: rgba(5,46,22,.55); opacity: 0; visibility: hidden;
  transition: opacity .25s ease; z-index: 110;
}
.modal.open { opacity: 1; visibility: visible; }
.modal-content {
  width: min(100%, 560px); background: var(--white);
  border-radius: 24px; padding: 2rem; box-shadow: var(--shadow-lg); position: relative;
}
.modal-content h3 { margin-top: 0; }
.modal-content p  { margin: .75rem 0 1.25rem; color: var(--gray-700); line-height: 1.7; }
.close-modal {
  position: absolute; top: 1rem; right: 1rem;
  width: 40px; height: 40px; border: none; background: transparent; font-size: 1.15rem;
}
.toggle-group { display: grid; gap: 1rem; }
.toggle-item {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1rem; border: 1px solid var(--gray-200); border-radius: 16px;
}
.toggle-item strong { display: block; margin-bottom: .35rem; }
.toggle-item p { margin: 0; color: var(--gray-600); font-size: .95rem; }
.modal-actions { display: flex; justify-content: flex-end; gap: 1rem; margin-top: 1.5rem; }
.button-ghost {
  background: transparent; color: var(--gray-700);
  border: 1px solid var(--gray-200); padding: .75rem 1.5rem; border-radius: 999px;
}
.save-preferences {
  background: var(--brand-gradient); color: var(--white);
  border: none; padding: .75rem 1.5rem; border-radius: 999px; font-weight: 600;
}

/* ── Depoimentos ── */
.testimonial-section { background: var(--green-50); padding: 4rem 0; }
.testimonial-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.testimonial-card {
  background: var(--white); border-radius: 20px;
  padding: 2rem; box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green-500);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text { color: var(--gray-700); font-size: .97rem; line-height: 1.75; margin: 0 0 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-gradient); display: grid; place-items: center;
  color: white; font-weight: 700; font-size: 1rem;
}
.testimonial-name { font-weight: 700; font-size: .95rem; }
.testimonial-role { font-size: .82rem; color: var(--gray-500); }

/* ── Diferenciais ── */
.diferencial-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.diferencial-card {
  border-radius: 18px; padding: 1.75rem;
  background: var(--white); border: 1px solid var(--gray-200);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .25s, box-shadow .25s;
}
.diferencial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.diferencial-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--green-100); display: grid; place-items: center; font-size: 1.5rem;
}
.diferencial-card h3 { margin: 0; font-size: 1.1rem; color: var(--green-900); }
.diferencial-card p  { margin: 0; color: var(--gray-600); font-size: .94rem; line-height: 1.7; }

/* ── Fade-up animation ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid, .section-row, .articles-layout,
  .tab-grid, .benefit-grid, .status-grid,
  .redacao-layout, .redacao-grid, .testimonial-grid, .diferencial-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-fields { grid-template-columns: 1fr; }
  .notice-box { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar { flex-direction: column; align-items: flex-start; padding: .75rem 1rem; }
  .navbar { min-height: 76px; }
  .nav-list { display: none; }
  .hero { padding: 60px 0 50px; }
  .hero-headline h1 { font-size: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .hero-headline h1 { font-size: 1.85rem; }
  .hero-card { max-width: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .cookie-banner { max-width: 100%; }
  .footer-company-card { font-size: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
