/* ===== GELONEZE TREINAMENTOS — Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Palette — Verde Floresta + Dourado */
  --forest-950: #052014;
  --forest-900: #073a20;
  --forest-800: #0a5230;
  --forest-700: #0e6b3d;
  --forest-600: #128a4e;
  --forest-500: #16a960;
  --forest-400: #34c97a;
  --forest-200: #a7f3d0;
  --forest-100: #d1fae5;
  --forest-50:  #ecfdf5;

  --gold:       #d4a843;
  --gold-600:   #b8891f;
  --gold-300:   #f0cc7a;
  --gold-100:   #fef3c7;
  --gold-50:    #fffbeb;

  --coral:      #f26d51;
  --teal:       #0f766e;

  --gray-950: #030712;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50:  #f9fafb;
  --white:    #ffffff;
  --bg:       #ffffff;

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

  --shadow-sm: 0 2px 12px rgba(5, 32, 20, 0.06);
  --shadow-md: 0 8px 28px rgba(5, 32, 20, 0.10);
  --shadow-lg: 0 20px 56px rgba(5, 32, 20, 0.15);
  --shadow-xl: 0 32px 80px rgba(5, 32, 20, 0.20);
  --transition: 0.24s ease;

  --brand-gradient: linear-gradient(135deg, #052014 0%, #0a5230 55%, #128a4e 100%);
  --gold-gradient:  linear-gradient(135deg, #b8891f 0%, #d4a843 50%, #f0cc7a 100%);
  --hero-gradient:  linear-gradient(160deg, #030f09 0%, #052014 45%, #073a20 100%);
  --section-alt:    #f7fcf9;
}

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

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 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(--forest-600); 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%, 1180px); margin: 0 auto; padding: 0 1.5rem; }

/* ── Topbar ── */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 42px; gap: 1rem;
  background: var(--forest-950);
  color: var(--white); padding: 0 1.5rem; font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.topbar-info { display: flex; align-items: center; gap: .85rem; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar-item svg { width: 13px; height: 13px; opacity: .6; }
.topbar-item a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; }
.topbar-item a:hover { color: var(--gold-300); }
.topbar-separator { color: rgba(255,255,255,.15); }
.topbar-social { display: flex; align-items: center; gap: .6rem; }
.social-link {
  width: 28px; height: 28px; color: rgba(255,255,255,.45);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 6px; transition: color .2s, background .2s;
}
.social-link svg { width: 15px; height: 15px; }
.social-link:hover { color: var(--gold-300); background: rgba(255,255,255,.06); }

/* ── Header ── */
.header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .25s ease;
}
.header.sticky { box-shadow: 0 4px 24px rgba(5,32,20,.08); }

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

/* ── Brand / Logo ── */
.brand { display: flex; align-items: center; gap: .9rem; text-decoration: none; }
.brand-logo {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--brand-gradient);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(10,82,48,.35);
  flex-shrink: 0;
}
.brand-logo-inner {
  display: flex; flex-direction: column; align-items: center; line-height: 1;
}
.brand-logo-letter {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: -1px;
}
.brand-logo-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); margin-top: 1px;
}
.brand-title { display: grid; line-height: 1.1; gap: 2px; }
.brand-title strong {
  font-size: 15px; font-weight: 800; letter-spacing: -.3px;
  color: var(--forest-900); text-transform: uppercase; letter-spacing: .5px;
}
.brand-title span { font-size: 9.5px; color: var(--gray-400); letter-spacing: 1.2px; text-transform: uppercase; }

/* ── 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-600); text-decoration: none;
  font-size: 13.5px; font-weight: 600;
  position: relative; padding: .4rem 0;
  transition: color .2s ease; letter-spacing: .2px;
}
.nav-link:hover { color: var(--forest-700); }
.nav-link.active { color: var(--forest-800); }
.nav-link.active::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2.5px;
  background: var(--gold-gradient); border-radius: 999px;
}

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

.cta-button, .button-primary, .button-secondary,
.button-outline, .button-link, .button-small {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; border-radius: 10px; border: none;
  font-weight: 700; text-decoration: none; letter-spacing: .1px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.cta-button {
  background: var(--gold-gradient);
  color: var(--forest-950); padding: 10px 20px; font-size: 13px;
  box-shadow: 0 3px 12px rgba(212,168,67,.3);
}
.cta-button svg { width: 16px; height: 16px; }
.button-primary {
  background: var(--gold-gradient); color: var(--forest-950);
  padding: 0 32px; min-height: 52px; font-size: 15px;
  box-shadow: 0 4px 20px rgba(212,168,67,.35);
}
.button-secondary {
  background: transparent; color: var(--forest-800);
  border: 2px solid var(--forest-200); min-height: 52px; padding: 0 24px;
}
.button-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.22);
}
.button-small { padding: .65rem 1.4rem; font-size: 13.5px; min-height: auto; }
.button-ghost { background: transparent; color: var(--gray-500); border: 1px solid var(--gray-200); }
.button-link { background: transparent; color: var(--forest-600); padding: 0; }

.button-primary:hover, .button-secondary:hover,
.cta-button:hover, .button-outline:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ── Mobile toggle ── */
.mobile-toggle {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1.5px solid var(--gray-200); border-radius: 10px; background: transparent;
  font-size: 18px; color: var(--gray-700);
}

/* ── Drawer ── */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(3,15,9,.65); 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.75rem 1.5rem;
  transform: translateX(-110%);
  transition: transform var(--transition);
  z-index: 90; overflow-y: auto;
  border-right: 1px solid var(--gray-100);
}
.drawer.open { transform: translateX(0); }
.drawer nav { display: grid; gap: .25rem; margin-top: 1.5rem; }
.drawer a {
  color: var(--gray-700); text-decoration: none;
  font-weight: 600; font-size: 14.5px; padding: .7rem .6rem;
  border-radius: 10px; transition: color .2s, background .2s;
}
.drawer a:hover { color: var(--forest-700); background: var(--forest-50); }
.drawer-cta {
  margin-top: 1.75rem; display: inline-flex; width: 100%;
  padding: 1rem 1rem; background: var(--gold-gradient); color: var(--forest-950);
  border-radius: 12px; font-weight: 700; font-size: 14px; text-decoration: none;
  justify-content: center; box-shadow: 0 4px 16px rgba(212,168,67,.3);
}
.drawer-social { margin-top: 1.5rem; color: var(--gray-600); font-size: 13px; }
.drawer-social-links { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.drawer-social-links a {
  font-size: 13px; background: var(--gray-100);
  padding: .4rem .9rem; border-radius: 999px;
}

/* ── Section shared ── */
.section { padding: 88px 0; }
.section-header { margin-bottom: 3rem; }
.section-header h2 {
  margin: .5rem 0 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700; line-height: 1.15; color: var(--gray-900);
}
.section-tag {
  display: inline-block; color: var(--forest-600);
  letter-spacing: 2.5px; font-size: 11px; font-weight: 800; text-transform: uppercase;
}

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .5rem 1rem; border-radius: 999px; font-size: .85rem; font-weight: 700;
}
.badge-soft { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.14); }
.badge-warning { background: var(--gold); color: var(--forest-950); }
.badge-secondary { background: rgba(255,255,255,.09); color: rgba(255,255,255,.7); }

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

/* ── HERO ── */
.hero {
  position: relative; padding: 110px 0 90px; overflow: hidden;
  background: var(--hero-gradient);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 60%, rgba(18,138,78,.4) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(212,168,67,.12) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(10,82,48,.5) 0%, transparent 50%);
  pointer-events: none;
}
/* Decorative grid pattern */
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 1fr);
  gap: 3rem; align-items: start; position: relative; z-index: 1;
}
.hero-headline { display: grid; gap: 1.5rem; max-width: 640px; }

.hero-badge-row { display: flex; gap: .75rem; flex-wrap: wrap; }

.hero-headline h1 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.08; color: var(--white); font-weight: 700;
}
.hero-headline h1 em {
  font-style: italic; color: var(--gold-300);
}
.lead {
  margin: 0; max-width: 44rem;
  font-size: 1.05rem; font-weight: 400; line-height: 1.9; color: rgba(255,255,255,.68);
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-stat-item { display: flex; flex-direction: column; }
.hero-stat-value {
  font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700;
  color: var(--gold-300); line-height: 1;
}
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,.1); align-self: stretch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-disclaimer {
  display: inline-flex; align-items: flex-start; gap: .65rem;
  margin: 0; color: rgba(255,255,255,.45); font-size: .84rem; line-height: 1.5;
}
.info-icon svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }

/* ── Hero card ── */
.hero-card {
  position: relative; padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  color: var(--white); box-shadow: 0 24px 64px rgba(3,15,9,.4);
  z-index: 1;
}
/* Gold accent top border */
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px;
  height: 2px; background: var(--gold-gradient); border-radius: 0 0 4px 4px;
}
.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-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem; font-weight: 700;
}
.hero-card-pill {
  display: inline-flex; align-items: center;
  padding: .35rem .75rem; border-radius: 999px;
  background: var(--gold-gradient); color: var(--forest-950);
  font-size: .78rem; font-weight: 800; white-space: nowrap;
}
.hero-card-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1px; }
.hero-card-list li {
  display: flex; align-items: flex-start; gap: .85rem; padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-card-list li:last-child { border-bottom: none; }
.hero-card-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon svg { width: 16px; height: 16px; color: var(--gold-300); }
.hero-card-title-row {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
}
.hero-card-title-row strong { font-size: .92rem; font-weight: 700; }
.hero-card-text { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 1px; display: block; }
.hero-card-note {
  margin: 1rem 0 0; font-size: .78rem; color: rgba(255,255,255,.35);
  text-align: center; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.06);
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--forest-900); padding: 48px 0;
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,.04), transparent);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.stats-item {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  padding: 1.25rem;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stats-item:last-child { border-right: none; }
.stats-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700; color: var(--gold-300); line-height: 1;
  display: block;
}
.stats-label {
  font-size: .8rem; color: rgba(255,255,255,.5); text-align: center;
  letter-spacing: .3px; font-weight: 500;
}

/* ── Section overview ── */
.section-overview { padding: 100px 0; }
.section-row { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }
.section-content { display: grid; gap: 1.1rem; }
.section-content p { color: var(--gray-600); line-height: 1.85; margin: 0; }
.section-link a {
  color: var(--forest-700); font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
}
.section-link a:hover { color: var(--forest-500); }

.sidebar-card {
  background: var(--forest-50); border-radius: var(--radius);
  padding: 1.75rem; border: 1px solid var(--forest-100);
  border-left: 4px solid var(--forest-500);
}
.sidebar-card h3 { margin: 0 0 1rem; font-size: 1.05rem; color: var(--forest-900); }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.info-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .92rem; color: var(--gray-700); }
.info-list .info-icon { color: var(--forest-500); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Timeline ── */
.section-timeline { background: var(--section-alt); }
.timeline {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem; margin-bottom: 2rem;
}
.timeline-item { position: relative; }
.timeline-marker {
  position: absolute; top: -14px; left: 20px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold-gradient); color: var(--forest-950);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; z-index: 1;
  box-shadow: 0 2px 8px rgba(212,168,67,.4);
}
.timeline-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem 1.25rem 1.25rem; padding-top: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.timeline-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.timeline-card-top { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin-bottom: .5rem; }
.timeline-icon { font-size: 1.25rem; }
.timeline-card h3 { margin: 0; font-size: .97rem; font-weight: 700; color: var(--gray-800); }
.timeline-card p { margin: .3rem 0 0; font-size: .85rem; color: var(--gray-500); line-height: 1.5; }

/* ── Alert / Notice ── */
.alert-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--gold-50); border: 1px solid var(--gold-100);
  border-left: 4px solid var(--gold); border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem; margin: 1.75rem 0 1.25rem;
  font-size: .9rem; color: var(--gray-700);
}
.alert-card strong { color: var(--gray-900); }
.alert-icon svg { width: 20px; height: 20px; flex-shrink: 0; }

.action-link {
  color: var(--forest-700); font-weight: 700; text-decoration: none; font-size: .92rem;
  display: inline-flex; align-items: center; gap: .35rem;
  transition: color .2s;
}
.action-link:hover { color: var(--forest-500); }

/* ── Status / Eligibility cards ── */
.status-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.status-card {
  border-radius: var(--radius); padding: 1.75rem;
  border: 1px solid var(--gray-200); position: relative; overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.status-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.status-top-border {
  position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 3px 3px 0 0;
}
.status-card--success .status-top-border { background: var(--forest-500); }
.status-card--danger .status-top-border { background: var(--coral); }
.status-card--warning .status-top-border { background: var(--gold); }
.status-icon { font-size: 1.8rem; margin-bottom: .85rem; }
.status-card h3 { margin: 0 0 1rem; font-size: 1rem; font-weight: 700; color: var(--gray-800); }
.status-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.status-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .88rem; color: var(--gray-600); line-height: 1.5; }
.status-emoji { flex-shrink: 0; }
.status-note {
  display: flex; align-items: flex-start; gap: .75rem;
  background: var(--gray-50); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; font-size: .88rem; color: var(--gray-600); border: 1px solid var(--gray-200);
}
.status-note svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--gray-400); }
.status-note p { margin: 0; }

/* ── Tabs ── */
.section-tabs { background: var(--section-alt); }
.tabs { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.tab-list {
  display: flex; border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50); overflow-x: auto; scrollbar-width: none;
}
.tab-list::-webkit-scrollbar { display: none; }
.tab-button {
  padding: 1rem 1.35rem; border: none; background: transparent;
  font-size: .88rem; font-weight: 700; color: var(--gray-500);
  cursor: pointer; white-space: nowrap; transition: color .2s, background .2s;
  position: relative; display: flex; align-items: center; gap: .5rem;
}
.tab-button:hover { color: var(--forest-700); background: var(--white); }
.tab-button.active {
  color: var(--forest-800); background: var(--white);
}
.tab-button.active::after {
  content: ''; position: absolute; left: 0; bottom: -1px; right: 0;
  height: 2px; background: var(--gold-gradient);
}
.tab-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .2rem .55rem; border-radius: 999px;
  background: var(--forest-100); color: var(--forest-800);
  font-size: .7rem; font-weight: 800;
}
.tab-button.active .tab-badge { background: var(--gold-100); color: var(--gold-600); }
.tab-panels { padding: 2rem; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem; margin-bottom: 1.5rem;
}
.tab-grid article {
  background: var(--gray-50); border-radius: var(--radius-sm);
  padding: 1.25rem; border: 1px solid var(--gray-200);
  transition: border-color .2s, box-shadow .2s;
}
.tab-grid article:hover { border-color: var(--forest-300); box-shadow: var(--shadow-sm); }
.tab-grid strong { display: block; font-size: .95rem; font-weight: 700; color: var(--gray-800); margin-bottom: .35rem; }
.tab-grid p { margin: 0; font-size: .83rem; color: var(--gray-500); line-height: 1.5; }

/* ── Redação ── */
.redacao-layout { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: start; }
.redacao-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.redacao-card {
  background: var(--forest-50); border: 1px solid var(--forest-100);
  border-radius: var(--radius); padding: 1.5rem;
  display: grid; gap: .4rem; position: relative;
  transition: box-shadow .2s, transform .2s;
}
.redacao-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--forest-200); line-height: 1;
}
.card-badge {
  display: inline-flex; align-items: center;
  padding: .25rem .65rem; background: var(--gold-gradient);
  color: var(--forest-950); border-radius: 999px; font-size: .72rem; font-weight: 800;
  width: fit-content;
}
.redacao-card h3 { margin: .25rem 0 0; font-size: .95rem; font-weight: 700; color: var(--forest-900); }
.redacao-card p { margin: .2rem 0 0; font-size: .83rem; color: var(--gray-600); line-height: 1.5; }
.redacao-sidebar {
  background: var(--forest-900); border-radius: var(--radius);
  padding: 1.75rem; color: var(--white);
}
.redacao-sidebar h3 { margin: 0 0 1.25rem; font-size: 1rem; color: var(--gold-300); }
.check-list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .7rem; }
.check-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .88rem; color: rgba(255,255,255,.75); }
.check-icon { color: var(--gold-300); font-weight: 800; flex-shrink: 0; }

/* ── Benefits ── */
.section-benefits { background: var(--forest-950); padding: 88px 0; }
.section-benefits .section-header h2 { color: var(--white); }
.section-benefits .section-tag { color: var(--gold-300); }
.benefit-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.benefit-card {
  border-radius: var(--radius); padding: 1.75rem;
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  opacity: 0; transition: opacity .2s;
}
.benefit-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.14); }
.benefit-card:hover::before { opacity: 1; }
.benefit-card--blue { background: rgba(16,102,204,.12); }
.benefit-card--blue::before { background: #3b82f6; }
.benefit-card--green { background: rgba(22,169,96,.1); }
.benefit-card--green::before { background: var(--gold-gradient); }
.benefit-card--yellow { background: rgba(212,168,67,.1); }
.benefit-card--yellow::before { background: var(--gold-gradient); }
.benefit-card--purple { background: rgba(139,92,246,.1); }
.benefit-card--purple::before { background: #a78bfa; }
.benefit-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.benefit-card h3 { margin: 0 0 .5rem; font-size: 1.05rem; font-weight: 700; color: var(--white); }
.benefit-card p { margin: 0 0 1rem; font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.benefit-card .action-link { color: var(--gold-300); }

/* ── Articles ── */
.articles-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.article-feature {
  background: var(--forest-50); border: 1px solid var(--forest-100);
  border-radius: var(--radius); padding: 2rem;
  display: grid; gap: .75rem;
}
.article-image {
  width: 100%; height: 140px; border-radius: var(--radius-sm);
  background: var(--forest-100); display: flex; align-items: center;
  justify-content: center; overflow: hidden; margin-bottom: .25rem;
}
.article-image svg { width: 80px; height: 80px; }
.article-category {
  display: inline-block; padding: .3rem .8rem; background: var(--forest-600);
  color: var(--white); border-radius: 999px; font-size: .72rem; font-weight: 800;
  letter-spacing: .5px; text-transform: uppercase; width: fit-content;
}
.article-feature h3 { margin: 0; font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gray-900); line-height: 1.3; }
.article-feature p { margin: 0; font-size: .88rem; color: var(--gray-500); line-height: 1.6; }
.article-meta { display: flex; gap: 1rem; font-size: .78rem; color: var(--gray-400); flex-wrap: wrap; }
.article-list { display: grid; gap: 1rem; align-content: start; }
.article-small {
  display: flex; gap: 1rem; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  padding: 1.1rem; transition: box-shadow .2s, transform .2s;
}
.article-small:hover { box-shadow: var(--shadow-sm); transform: translateX(3px); }
.article-thumb {
  width: 60px; height: 60px; border-radius: 10px;
  background: var(--gray-100); flex-shrink: 0; overflow: hidden;
}
.article-thumb svg { width: 100%; height: 100%; }
.article-small h4 { margin: 0 0 .25rem; font-size: .92rem; font-weight: 700; color: var(--gray-800); line-height: 1.35; }
.article-small p { margin: 0 0 .4rem; font-size: .8rem; color: var(--gray-500); line-height: 1.5; }
.article-pill {
  display: inline-block; padding: .2rem .65rem;
  background: var(--forest-100); color: var(--forest-800);
  border-radius: 999px; font-size: .7rem; font-weight: 700; margin-bottom: .35rem;
}
.article-actions { margin-top: 1.5rem; display: flex; }

/* ── FAQ ── */
.faq-list { display: grid; gap: .75rem; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  overflow: hidden; background: var(--white);
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--forest-200); }
.faq-summary {
  width: 100%; display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem; background: transparent; border: none;
  text-align: left; cursor: pointer;
  font-size: .95rem; font-weight: 600; color: var(--gray-800);
  transition: background .2s;
}
.faq-summary:hover { background: var(--gray-50); }
.faq-badge {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--forest-100); color: var(--forest-800);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; flex-shrink: 0;
}
.faq-item.open .faq-badge { background: var(--gold-gradient); color: var(--forest-950); }
.faq-summary span:nth-child(2) { flex: 1; }
.chevron { margin-left: auto; flex-shrink: 0; transition: transform .25s; }
.chevron svg { width: 20px; height: 20px; color: var(--gray-400); }
.faq-item.open .chevron { transform: rotate(180deg); }
.faq-content { display: none; padding: 0 1.25rem 1.25rem 3.75rem; }
.faq-item.open .faq-content { display: block; }
.faq-content p { margin: 0; font-size: .9rem; color: var(--gray-600); line-height: 1.75; }

/* ── Notice legal ── */
.notice-box {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.75rem; border-radius: var(--radius);
}
.notice-legal {
  background: var(--forest-50); border: 1px solid var(--forest-200);
  border-left: 5px solid var(--forest-600);
}
.notice-icon svg { width: 22px; height: 22px; color: var(--forest-600); flex-shrink: 0; margin-top: 2px; }
.notice-box h3 { margin: 0 0 .6rem; font-size: 1rem; font-weight: 800; color: var(--forest-900); }
.notice-box p { margin: 0 0 1rem; font-size: .88rem; color: var(--gray-600); line-height: 1.7; }
.notice-link { margin-top: .25rem; }

/* ── Diferenciais ── */
.diferencial-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.diferencial-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.diferencial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--forest-200); }
.diferencial-icon { font-size: 1.9rem; margin-bottom: .85rem; display: block; }
.diferencial-card h3 { margin: 0 0 .5rem; font-size: 1rem; font-weight: 700; color: var(--gray-900); }
.diferencial-card p { margin: 0; font-size: .87rem; color: var(--gray-500); line-height: 1.65; }

/* ── Testimonials ── */
.testimonial-section { background: var(--section-alt); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow-sm); display: grid; gap: .85rem;
  transition: box-shadow .2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; }
.testimonial-text { margin: 0; font-size: .9rem; color: var(--gray-600); line-height: 1.75; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--forest-gradient, var(--brand-gradient));
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 800; color: var(--white); flex-shrink: 0;
}
.testimonial-name { font-size: .88rem; font-weight: 700; color: var(--gray-800); }
.testimonial-role { font-size: .78rem; color: var(--gray-400); margin-top: 1px; }

/* ── Newsletter ── */
.newsletter-section { padding: 88px 0; }
.newsletter-card {
  background: var(--forest-900); border-radius: 20px; padding: 3.5rem;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center;
  position: relative; overflow: hidden;
}
.newsletter-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,.12), transparent 70%);
  pointer-events: none;
}
.newsletter-copy { position: relative; }
.newsletter-copy .section-tag { color: var(--gold-300); }
.newsletter-copy h2 {
  color: var(--white); margin: .5rem 0 .75rem;
  font-family: 'Playfair Display', serif; font-size: 1.75rem;
}
.newsletter-copy p { color: rgba(255,255,255,.55); font-size: .92rem; margin: 0; line-height: 1.7; }
.newsletter-form { display: grid; gap: .85rem; position: relative; }
.newsletter-fields { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.newsletter-form label {
  display: grid; gap: .4rem;
  font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.55); letter-spacing: .3px;
}
.newsletter-form input {
  width: 100%; padding: .8rem 1rem; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.12); background: rgba(255,255,255,.07);
  color: var(--white); font-family: inherit; font-size: .92rem;
  transition: border-color .2s; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-form input:focus { border-color: var(--gold); }
.checkbox-field {
  display: flex !important; flex-direction: row !important; align-items: flex-start;
  gap: .65rem; font-size: .82rem; font-weight: 400 !important;
  color: rgba(255,255,255,.5) !important;
}
.checkbox-field input { width: auto; margin-top: 2px; }
.checkbox-field a { color: var(--gold-300); }
.newsletter-actions { display: flex; }
.newsletter-note { margin: 0; font-size: .78rem; color: rgba(255,255,255,.3); }
.form-feedback { font-size: .88rem; color: var(--forest-400); }

/* ── Footer ── */
.footer {
  background: var(--gray-950); color: rgba(255,255,255,.65);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem; padding-bottom: 2.5rem;
}
.footer-brand strong {
  display: block; font-size: 1.05rem; font-weight: 800;
  color: var(--white); margin-bottom: .6rem; text-transform: uppercase; letter-spacing: .5px;
}
.footer-brand p { font-size: .85rem; line-height: 1.65; margin: 0 0 1.25rem; max-width: 240px; }
.footer-seals { display: flex; flex-direction: column; gap: .4rem; }
.seal { font-size: .75rem; color: rgba(255,255,255,.35); display: flex; align-items: center; gap: .4rem; }
.footer-column h4 {
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,.35); margin: 0 0 1.1rem;
}
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-list a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .87rem; transition: color .2s; }
.footer-list a:hover { color: var(--gold-300); }
.footer-contact h4 {
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,.35); margin: 0 0 1.1rem;
}
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.contact-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; }
.contact-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--forest-400); }
.contact-list a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.contact-list a:hover { color: var(--gold-300); }
.contact-list span { color: rgba(255,255,255,.4); }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.05); margin: 0; }
.footer-bottom {
  display: flex; flex-direction: column; gap: .5rem;
  padding: 1.75rem 0; font-size: .78rem; color: rgba(255,255,255,.3);
}
.footer-company-card { font-size: .78rem; color: rgba(255,255,255,.25); }
.footer-legal-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,.35); font-size: .78rem; text-decoration: none; transition: color .2s; }
.footer-legal-links a:hover { color: var(--gold-300); }
.footer-note { margin: .25rem 0 0; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  width: min(calc(100% - 2rem), 760px); z-index: 200;
  background: var(--gray-900); border-radius: 16px;
  padding: 1.35rem 1.5rem; border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  display: flex; flex-direction: column; gap: .85rem;
}
.cookie-banner[hidden] { display: none; }
.cookie-brand { display: flex; align-items: flex-start; gap: 1rem; }
.cookie-logo { width: 36px; height: 36px; border-radius: 9px; background: var(--brand-gradient); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cookie-brand p { margin: 0; font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.6; }
.cookie-brand strong { color: var(--white); }
.cookie-buttons { display: flex; gap: .65rem; flex-wrap: wrap; }
.accept-all {
  padding: .65rem 1.4rem; background: var(--gold-gradient); border: none;
  border-radius: 10px; font-weight: 700; font-size: .85rem;
  color: var(--forest-950); cursor: pointer; transition: transform .2s;
}
.accept-all:hover { transform: translateY(-1px); }
.open-preferences {
  padding: .65rem 1.2rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; font-weight: 600; font-size: .85rem; color: rgba(255,255,255,.7); cursor: pointer;
}
.essential-only {
  background: transparent; border: none; font-size: .82rem;
  color: rgba(255,255,255,.4); cursor: pointer; padding: .3rem;
}
.cookie-banner > p { margin: 0; font-size: .78rem; color: rgba(255,255,255,.3); }
.cookie-banner > p a { color: rgba(255,255,255,.45); }

/* ── Cookie Modal ── */
.modal { display: none; position: fixed; inset: 0; z-index: 300; align-items: center; justify-content: center; }
.modal.open { display: flex; }
.modal-content {
  background: var(--white); border-radius: 16px; padding: 2rem;
  width: min(calc(100% - 2rem), 500px); position: relative;
  box-shadow: var(--shadow-xl); max-height: 85vh; overflow-y: auto;
}
.modal-content h3 { margin: 0 0 .5rem; font-size: 1.15rem; font-weight: 800; color: var(--gray-900); }
.modal-content p { margin: 0 0 1.5rem; font-size: .9rem; color: var(--gray-500); }
.close-modal {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gray-100); border: none; width: 32px; height: 32px;
  border-radius: 8px; cursor: pointer; font-size: .9rem; color: var(--gray-500);
}
.toggle-group { display: grid; gap: .75rem; margin-bottom: 1.5rem; }
.toggle-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1rem;
  background: var(--gray-50); border-radius: 10px; border: 1px solid var(--gray-200);
  cursor: pointer;
}
.toggle-item strong { display: block; font-size: .9rem; color: var(--gray-800); margin-bottom: .2rem; }
.toggle-item p { margin: 0; font-size: .8rem; color: var(--gray-500); }
.toggle-item input { margin-left: auto; flex-shrink: 0; width: 18px; height: 18px; cursor: pointer; }
.modal-actions { display: flex; justify-content: flex-end; gap: .75rem; }
.save-preferences {
  padding: .7rem 1.4rem; background: var(--forest-600); border: none;
  border-radius: 10px; font-weight: 700; font-size: .88rem; color: var(--white); cursor: pointer;
}

/* ── 404 / utility ── */
.breadcrumb { font-size: .82rem; color: var(--gray-400); margin-bottom: .5rem; }
.card-list { display: grid; gap: .75rem; }
.card {
  background: var(--forest-50); border: 1px solid var(--forest-100);
  border-radius: var(--radius-sm); padding: 1.25rem;
}
.card h3 { margin: 0 0 .35rem; font-size: .95rem; font-weight: 700; color: var(--forest-900); }
.card p { margin: 0; font-size: .85rem; color: var(--gray-600); }
.grid-two { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; margin-top: 2rem; }

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .newsletter-card { grid-template-columns: 1fr; }
  .newsletter-fields { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-row { grid-template-columns: 1fr; }
  .status-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .redacao-layout { grid-template-columns: 1fr; }
  .articles-layout { grid-template-columns: 1fr; }
  .hero-stat-divider { display: none; }
  .main-nav, .nav-actions .cta-button { display: none; }
  .mobile-toggle { display: grid; }
  .topbar-social { display: none; }
  .hero { padding: 72px 0 60px; }
  .stats-bar { padding: 32px 0; }
  .newsletter-card { padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .grid-two { grid-template-columns: 1fr; }
  .diferencial-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) {
  .mobile-toggle { display: none; }
}
