/* =========================================================
   IZEQUIEL FERREIRA — Design System
   Identidade Método Família Restaurada
   Creme & Branco · Azul-marinho · Dourado
   ========================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Base — creme e branco */
  --cream-000: #fdfaf4;
  --cream-100: #f9f4e9;
  --cream-200: #f2ebdb;
  --cream-300: #eae0cb;
  --white: #ffffff;

  /* Azul-marinho institucional */
  --navy: #12294a;
  --navy-2: #1c3c69;
  --navy-3: #244d84;
  --navy-deep: #0a1728;

  /* Dourado */
  --gold: #c1901f;
  --gold-2: #dfae44;
  --gold-3: #f0d18a;
  --gold-soft: rgba(193, 144, 31, 0.12);

  /* Apoio (dos módulos) */
  --green: #3f6b47;
  --wine: #8e2230;

  /* Texto */
  --txt-100: #0d1f39;
  --txt-200: #2b3f5e;
  --txt-300: #56698a;
  --txt-400: #7e8ea6;
  --txt-inv: #f6f1e6;

  /* Linhas e superfícies */
  --line: rgba(18, 41, 74, 0.12);
  --line-strong: rgba(18, 41, 74, 0.22);
  --line-gold: rgba(193, 144, 31, 0.38);
  --surface: #ffffff;
  --surface-2: rgba(255, 255, 255, 0.72);

  /* Sombras suaves */
  --sh-sm: 0 2px 10px rgba(13, 31, 57, 0.06);
  --sh-md: 0 10px 30px rgba(13, 31, 57, 0.09);
  --sh-lg: 0 24px 60px rgba(13, 31, 57, 0.14);

  /* Gradientes */
  --grad-navy: linear-gradient(120deg, var(--navy) 0%, var(--navy-3) 100%);
  --grad-gold: linear-gradient(120deg, var(--gold) 0%, var(--gold-2) 100%);
  --grad-mix: linear-gradient(110deg, var(--navy) 0%, var(--navy-3) 45%, var(--gold) 100%);

  /* Tipografia fluida */
  --f-display: clamp(2.5rem, 1.4rem + 4.8vw, 5rem);
  --f-h1: clamp(2.1rem, 1.3rem + 3.8vw, 4rem);
  --f-h2: clamp(1.8rem, 1.2rem + 2.5vw, 3rem);
  --f-h3: clamp(1.32rem, 1.05rem + 1.15vw, 1.85rem);
  --f-lead: clamp(1.15rem, 1.02rem + 0.62vw, 1.5rem);
  --f-body: clamp(1.05rem, 0.99rem + 0.32vw, 1.22rem);
  --f-small: clamp(0.94rem, 0.9rem + 0.2vw, 1.04rem);

  /* Espaço */
  --sp-section: clamp(4.5rem, 3rem + 7vw, 9rem);
  --radius: 18px;
  --radius-lg: 26px;

  --wrap: 1200px;
  --gutter: clamp(1.15rem, 0.6rem + 2.4vw, 2.5rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Fontes */
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: clip;
}

body {
  background: var(--cream-000);
  color: var(--txt-200);
  font-family: var(--font-body);
  font-size: var(--f-body);
  line-height: 1.74;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  color: var(--txt-100);
  font-family: var(--font-display);
  line-height: 1.16;
  letter-spacing: -0.015em;
  font-weight: 800;
  text-wrap: balance;
}

p { text-wrap: pretty; }

::selection { background: var(--gold-3); color: var(--navy-deep); }

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

/* ---------- 3. LAYOUT ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--sp-section); position: relative; }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }

/* Seção creme (alternância suave) */
.section--cream { background: var(--cream-100); border-block: 1px solid var(--line); }

/* Seção escura institucional */
.section--navy {
  background:
    radial-gradient(900px 460px at 50% -10%, rgba(193, 144, 31, 0.18), transparent 65%),
    var(--navy);
  color: var(--txt-inv);
}
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(246, 241, 230, 0.82); }

/* Fundo geral */
.stage {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(880px 600px at 10% -6%, rgba(193, 144, 31, 0.13), transparent 62%),
    radial-gradient(760px 540px at 94% 4%, rgba(18, 41, 74, 0.09), transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--cream-000) 45%, var(--cream-100) 100%);
}

.stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 41, 74, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 41, 74, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 88% 62% at 50% 22%, #000 18%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 88% 62% at 50% 22%, #000 18%, transparent 76%);
  opacity: 0.85;
}

/* ---------- 4. HEADER / NAV ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s;
  border-bottom: 1px solid transparent;
}

.header.is-stuck {
  background: rgba(253, 250, 244, 0.92);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: var(--sh-sm);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(1.05rem, 0.96rem + 0.4vw, 1.24rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.brand__mark {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--grad-navy);
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), var(--sh-sm);
}

.brand__txt small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links {
  display: none;
  align-items: center;
  gap: clamp(0.2rem, 0rem + 0.8vw, 0.7rem);
}

.nav__link {
  position: relative;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--txt-300);
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}

.nav__link:hover { color: var(--navy); background: var(--cream-200); }
.nav__link.is-active { color: var(--navy); font-weight: 700; }

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.22rem;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-gold);
}

.nav__cta { display: none; }

/* Hambúrguer */
.burger {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--sh-sm);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

.burger:hover { border-color: var(--gold); }

.burger span {
  grid-area: 1 / 1;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.35s var(--ease), opacity 0.2s;
}

.burger span:nth-child(1) { transform: translateY(-7px); }
.burger span:nth-child(3) { transform: translateY(7px); }

body.menu-open .burger span:nth-child(1) { transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: rotate(-45deg); }

/* Drawer mobile */
.drawer {
  position: fixed;
  inset: 82px 0 0;
  z-index: 99;
  background: rgba(253, 250, 244, 0.985);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: clamp(1.5rem, 4vw, 2.5rem) var(--gutter) 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease), visibility 0.3s;
}

body.menu-open .drawer { opacity: 1; visibility: visible; transform: none; }
body.menu-open { overflow: hidden; }

.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  box-shadow: var(--sh-sm);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.7vw, 1.3rem);
  font-weight: 700;
  color: var(--navy);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.drawer__link:hover,
.drawer__link.is-active { border-color: var(--gold); box-shadow: var(--sh-md); }
.drawer__link span:last-child { color: var(--gold); font-size: 1.2rem; }
.drawer .btn { margin-top: 0.8rem; justify-content: center; }

/* ---------- 5. BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: clamp(0.98rem, 0.85rem + 0.4vw, 1.16rem) clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
  border: none;
  border-radius: 999px;
  background: var(--grad-navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--f-small);
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  box-shadow: 0 8px 24px rgba(18, 41, 74, 0.22);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.3) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.75s var(--ease);
}

.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(18, 41, 74, 0.28); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(-1px); }

.btn--gold {
  background: var(--grad-gold);
  color: var(--navy-deep);
  box-shadow: 0 8px 24px rgba(193, 144, 31, 0.3);
}
.btn--gold:hover { box-shadow: 0 16px 36px rgba(193, 144, 31, 0.4); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--gold); background: var(--gold-soft); box-shadow: var(--sh-sm); }

/* Botão claro sobre fundo escuro */
.btn--light {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.btn--light:hover { box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
}
.btn--outline-light:hover { border-color: var(--gold-2); background: rgba(255, 255, 255, 0.08); }

.btn--block { width: 100%; }
.btn--lg { font-size: var(--f-body); padding: 1.12rem 2.15rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: clamp(1.8rem, 1.2rem + 1.6vw, 2.6rem);
}

/* ---------- 6. COMPONENTES ---------- */

/* Pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.52rem 1.05rem;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: var(--gold-soft);
  font-size: clamp(0.78rem, 0.74rem + 0.2vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
}

.section--navy .pill,
.cta .pill {
  border-color: rgba(223, 174, 68, 0.55);
  background: rgba(193, 144, 31, 0.18);
  color: var(--gold-3);
}

.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(63, 107, 71, 0.16);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(63, 107, 71, 0.16); }
  50% { box-shadow: 0 0 0 8px rgba(63, 107, 71, 0.03); }
}

/* Cabeçalho de seção */
.head { max-width: 800px; margin-bottom: clamp(2.4rem, 1.6rem + 2.6vw, 4rem); }
.head--center { margin-inline: auto; text-align: center; }

.head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: clamp(0.76rem, 0.72rem + 0.2vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.head__eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-gold);
}

.head--center .head__eyebrow::before { display: none; }
.section--navy .head__eyebrow { color: var(--gold-2); }

.head h2 { font-size: var(--f-h2); margin-bottom: 1.1rem; }
.head p { font-size: var(--f-lead); color: var(--txt-300); }

/* Texto com destaque */
.grad { color: var(--navy-3); }
.grad-neon { color: var(--navy); }
.grad-gold { color: var(--gold); }

.section--navy .grad,
.section--navy .grad-gold,
.cta .grad,
.cta .grad-gold { color: var(--gold-2); }

/* Card */
.card {
  position: relative;
  padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--sh-sm);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.35s;
}

.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--line-gold); }
.card:hover::before { opacity: 1; }

.card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  font-size: 1.6rem;
  margin-bottom: 1.3rem;
  box-shadow: var(--sh-sm);
}

.card h3 { font-size: var(--f-h3); margin-bottom: 0.7rem; }
.card p { color: var(--txt-300); font-size: var(--f-small); line-height: 1.72; }

.section--navy .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}
.section--navy .card p { color: rgba(246, 241, 230, 0.8); }
.section--navy .card__icon { background: rgba(193, 144, 31, 0.2); }

/* Grid */
.grid { display: grid; gap: clamp(1rem, 0.7rem + 1.2vw, 1.6rem); }
.grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }

/* Divisor ornamental */
.glow-line {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--line) 18%, var(--gold) 50%, var(--line) 82%, transparent);
  opacity: 0.75;
}

/* ---------- 7. HERO ---------- */
.hero {
  position: relative;
  padding-top: clamp(2.6rem, 1.8rem + 4.5vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 2.5rem + 5vw, 7rem);
}

.hero__grid { display: grid; gap: clamp(2.5rem, 2rem + 3vw, 4rem); align-items: center; }

.hero h1 {
  font-size: var(--f-display);
  margin: 1.35rem 0 1.4rem;
  letter-spacing: -0.02em;
}

.hero__lead { font-size: var(--f-lead); color: var(--txt-300); max-width: 62ch; }
.hero__lead strong { color: var(--txt-100); font-weight: 700; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 0.9rem;
  margin-top: clamp(2.2rem, 1.6rem + 2vw, 3.2rem);
}

.stat {
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  box-shadow: var(--sh-sm);
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.stat:hover { border-color: var(--line-gold); transform: translateY(-4px); box-shadow: var(--sh-md); }

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.35rem + 1.8vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.stat__lbl {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--txt-400);
  line-height: 1.45;
}

/* Retrato */
.portrait {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 10px;
  background: linear-gradient(150deg, var(--gold-3), var(--cream-300) 40%, var(--gold-2));
  box-shadow: var(--sh-lg);
  isolation: isolate;
}

.portrait::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border-radius: var(--radius-lg);
  background: var(--gold);
  filter: blur(42px);
  opacity: 0.22;
}

.portrait__frame {
  position: relative;
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
  background: var(--cream-200);
  aspect-ratio: 4 / 5;
}

.portrait__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.portrait__ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.7rem;
  text-align: center;
  padding: 2rem;
  background:
    repeating-linear-gradient(45deg, rgba(18, 41, 74, 0.035) 0 12px, transparent 12px 24px),
    var(--cream-200);
  color: var(--txt-400);
  font-size: 0.92rem;
}

.portrait__ph b { color: var(--navy); font-size: 1.05rem; display: block; font-weight: 700; }
.portrait__ph i { font-size: 2.6rem; font-style: normal; opacity: 0.55; }

.portrait__badge {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--line-gold);
  background: var(--navy);
  box-shadow: var(--sh-md);
  white-space: nowrap;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--gold-3);
}

.portrait__badge i { font-style: normal; font-size: 1.1rem; }

/* ---------- 8. FAIXA / MARQUEE ---------- */
.strip {
  border-block: 1px solid var(--line);
  background: var(--navy);
  padding-block: 1.05rem;
  overflow: hidden;
}

.marquee { display: flex; width: max-content; animation: slide 36s linear infinite; }
.marquee:hover { animation-play-state: paused; }

@keyframes slide { to { transform: translateX(-50%); } }

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding-inline: clamp(1.2rem, 0.8rem + 1.4vw, 2.2rem);
  font-size: clamp(0.88rem, 0.84rem + 0.28vw, 1.02rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream-100);
  white-space: nowrap;
}

.marquee__item::after {
  content: "◆";
  color: var(--gold-2);
  font-size: 0.55rem;
  margin-left: 1.4rem;
}

/* ---------- 9. BLOCO DE DOR ---------- */
.pain {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--sh-sm);
  font-size: var(--f-small);
  color: var(--txt-200);
  line-height: 1.68;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.pain:hover { transform: translateX(6px); box-shadow: var(--sh-md); }
.pain i { font-style: normal; font-size: 1.3rem; flex: none; line-height: 1.3; }

/* ---------- 10. CAMINHOS ---------- */
.path {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--sh-md);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

.path::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: var(--accent-bar, var(--grad-navy));
}

.path:hover { transform: translateY(-8px); border-color: var(--line-gold); box-shadow: var(--sh-lg); }

.path__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.path__lvl {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent, var(--navy));
  padding: 0.42rem 0.85rem;
  border: 1.5px solid currentColor;
  border-radius: 999px;
}

.path__icon { font-size: 2.1rem; line-height: 1; }

.path h3 { font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.05rem); margin-bottom: 0.85rem; }
.path__desc { color: var(--txt-300); font-size: var(--f-small); margin-bottom: 1.5rem; }
.path__desc strong { color: var(--txt-100); }

.path__list { display: grid; gap: 0.7rem; margin-bottom: 2rem; }

.path__list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: var(--f-small);
  color: var(--txt-200);
  line-height: 1.62;
}

.path__list li::before {
  content: "✓";
  color: var(--accent, var(--navy));
  font-weight: 900;
  flex: none;
}

.path .btn { margin-top: auto; }

/* Barra de progresso */
.xp {
  height: 8px;
  border-radius: 999px;
  background: var(--cream-200);
  overflow: hidden;
  margin-bottom: 1.6rem;
}

.xp__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--accent, var(--navy));
  transition: width 1.4s var(--ease);
}

/* ---------- 11. CITAÇÃO ---------- */
.quote {
  position: relative;
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(2.2rem, 1.6rem + 2.6vw, 3.8rem) clamp(1.4rem, 1rem + 2.4vw, 3.5rem);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  background: var(--cream-100);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: -2.4rem;
  left: 1.4rem;
  font-size: 11rem;
  line-height: 1;
  font-family: var(--font-display);
  color: var(--gold);
  opacity: 0.16;
  pointer-events: none;
}

.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.05rem + 1.4vw, 2.05rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.42;
  color: var(--navy);
  margin-bottom: 1.3rem;
}

.quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--f-small);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- 12. CTA FINAL ---------- */
.cta {
  position: relative;
  text-align: center;
  padding: clamp(2.6rem, 2rem + 3.4vw, 4.6rem) clamp(1.4rem, 1rem + 2.4vw, 3.5rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(700px 380px at 50% 0%, rgba(193, 144, 31, 0.28), transparent 68%),
    var(--navy);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  color: var(--txt-inv);
}

.cta h2 { font-size: var(--f-h2); margin-bottom: 1.1rem; color: var(--white); }
.cta p { font-size: var(--f-lead); color: rgba(246, 241, 230, 0.82); max-width: 660px; margin-inline: auto; }
.cta .btn-row { justify-content: center; }

/* ---------- 13. FOOTER ---------- */
.footer {
  background: var(--navy);
  color: var(--txt-inv);
  padding-block: clamp(2.8rem, 2rem + 2.6vw, 4.5rem) 2rem;
  border-top: 5px solid var(--gold);
}

.footer .brand { color: var(--white); }
.footer .brand__mark { background: var(--grad-gold); color: var(--navy); }
.footer .brand__txt small { color: var(--gold-2); }

.footer__grid { display: grid; gap: clamp(2rem, 1.4rem + 2.4vw, 3.5rem); margin-bottom: 2.5rem; }

.footer__about p {
  color: rgba(246, 241, 230, 0.68);
  font-size: var(--f-small);
  margin-top: 1.1rem;
  max-width: 46ch;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1.15rem;
}

.footer__links { display: grid; gap: 0.72rem; }

.footer__links a, .footer__links span {
  color: rgba(246, 241, 230, 0.72);
  font-size: var(--f-small);
  transition: color 0.25s, transform 0.25s;
  display: inline-block;
}

.footer__links a:hover { color: var(--gold-2); transform: translateX(5px); }

.footer__bottom {
  padding-top: 1.8rem;
  border-top: 1px solid rgba(246, 241, 230, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(246, 241, 230, 0.55);
}

/* ---------- 14. ANIMAÇÃO DE ENTRADA ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}

.js .reveal.is-in { opacity: 1; transform: none; }

.js .reveal[data-delay="1"] { transition-delay: 0.09s; }
.js .reveal[data-delay="2"] { transition-delay: 0.18s; }
.js .reveal[data-delay="3"] { transition-delay: 0.27s; }
.js .reveal[data-delay="4"] { transition-delay: 0.36s; }
.js .reveal[data-delay="5"] { transition-delay: 0.45s; }

/* Voltar ao topo */
.top {
  position: fixed;
  right: clamp(1rem, 0.6rem + 1.2vw, 2rem);
  bottom: clamp(1rem, 0.6rem + 1.2vw, 2rem);
  z-index: 90;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 14px;
  background: var(--navy);
  box-shadow: var(--sh-md);
  color: var(--gold-2);
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all 0.35s var(--ease);
}

.top.is-on { opacity: 1; visibility: visible; transform: none; }
.top:hover { background: var(--navy-3); }

/* ---------- 15. BREAKPOINTS ---------- */
@media (min-width: 620px) {
  .grid--2, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
}

@media (min-width: 1100px) {
  .nav__links, .nav__cta { display: flex; }
  .burger { display: none; }
  .drawer { display: none; }
}

/* ---------- 16. ACESSIBILIDADE ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}

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

.skip {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.8rem 1.4rem;
  border-radius: 0 0 12px 12px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  transition: top 0.25s;
}

.skip:focus { top: 0; }
