/* ==========================================================
   PROTOCOLO IA · LÍDERES
   Commercial palette — cream / deep petrol / warm gold
   Archivo (display) + Inter (body) + JetBrains Mono (labels)
   ========================================================== */

:root {
  --cream: #f5efde;
  --cream-deep: #ece4cd;
  --paper: #fbf7eb;
  --ink: #0e2a2d;
  --ink-soft: #25444a;
  --ink-mute: #5d7074;

  --petrol: #0e2a2d;
  --petrol-deep: #07191b;

  --gold: #d6a33a;
  --gold-deep: #b8862a;
  --gold-soft: rgba(214, 163, 58, 0.14);
  --gold-ink: #8b6618;

  --line: #d8ccae;
  --line-soft: rgba(216, 204, 174, 0.5);
  --white: #ffffff;

  --ff-display: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ff-sans: "Inter", system-ui, -apple-system, sans-serif;
  --ff-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --container: 1240px;
  --container-narrow: 860px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(14, 42, 45, 0.08);
  --shadow: 0 10px 30px -12px rgba(14, 42, 45, 0.22),
    0 2px 6px rgba(14, 42, 45, 0.06);
  --shadow-lg: 0 30px 70px -28px rgba(14, 42, 45, 0.36),
    0 6px 16px rgba(14, 42, 45, 0.08);
  --shadow-gold: 0 14px 40px -16px rgba(214, 163, 58, 0.55),
    0 2px 6px rgba(14, 42, 45, 0.08);

  --t-fast: 140ms cubic-bezier(0.3, 0, 0.2, 1);
  --t: 280ms cubic-bezier(0.3, 0, 0.2, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(1100px 600px at 90% -10%, rgba(214, 163, 58, 0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 80%, rgba(14, 42, 45, 0.04), transparent 55%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0;
}
p { margin: 0 0 1em 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--petrol); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold-deep); }
em { font-style: italic; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--petrol-deep); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: var(--container-narrow); }
.dot { color: var(--gold); font-weight: 700; padding: 0 0.08em; }

/* ==========================================================
   TOPBAR
   ========================================================== */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 239, 222, 0.9);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 14px 28px;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
}
.topbar__brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.topbar__brand-mark {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--petrol); color: var(--gold);
  font-family: var(--ff-display); font-weight: 900; font-size: 15px;
  letter-spacing: -0.02em; border-radius: 7px;
}
.topbar__brand-text {
  font-family: var(--ff-display); font-weight: 700; font-size: 17px;
  letter-spacing: -0.01em;
}
.topbar__brand-text em { color: var(--gold-deep); font-style: italic; font-weight: 700; }
.topbar__nav {
  display: flex; gap: 32px; justify-content: center;
  font-family: var(--ff-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500;
}
.topbar__nav a { color: var(--ink-soft); }
.topbar__cta {
  font-family: var(--ff-sans); font-weight: 600; font-size: 14px;
  padding: 11px 22px;
  background: var(--petrol); color: var(--cream);
  border-radius: 999px;
  transition: background var(--t-fast), transform var(--t-fast), color var(--t-fast);
}
.topbar__cta:hover { background: var(--petrol-deep); color: var(--gold); transform: translateY(-1px); }
@media (max-width: 880px) { .topbar__nav { display: none; } }
@media (max-width: 780px) {
  .topbar__inner { padding: 12px 20px; gap: 12px; }
  .topbar__cta { padding: 9px 16px; font-size: 13px; }
}
@media (max-width: 460px) { .topbar__brand-text { display: none; } }

/* ==========================================================
   TYPE PRIMITIVES
   ========================================================== */
.eyebrow, .section__eyebrow {
  font-family: var(--ff-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 28px 0;
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); display: inline-block;
  box-shadow: 0 0 0 4px var(--gold-soft);
}
.section__title {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02; letter-spacing: -0.028em;
  max-width: 22ch; margin-bottom: 40px; color: var(--ink);
}
.section__title em { color: var(--gold-deep); font-style: italic; font-weight: 800; }

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 15px 28px;
  font-family: var(--ff-sans); font-size: 15px; font-weight: 600;
  border: 1.5px solid transparent; border-radius: 999px;
  transition: all var(--t); cursor: pointer; text-decoration: none;
  white-space: nowrap;
}
.btn--primary { background: var(--gold); color: var(--petrol-deep); box-shadow: var(--shadow-gold); }
.btn--primary:hover { background: var(--gold-deep); color: var(--petrol-deep); transform: translateY(-2px); box-shadow: 0 18px 44px -14px rgba(214, 163, 58, 0.7); }
.btn--dark { background: var(--petrol); color: var(--cream); box-shadow: var(--shadow); }
.btn--dark:hover { background: var(--petrol-deep); color: var(--gold); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--large { padding: 20px 36px; font-size: 17px; }
.btn--block { width: 100%; padding: 20px 24px; font-size: 17px; }
.btn__arrow { transition: transform var(--t); font-weight: 400; }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* ==========================================================
   HERO — massive, commercial
   ========================================================== */
.hero { padding: 72px 0 100px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(ellipse at 92% 18%, rgba(214, 163, 58, 0.18), transparent 55%);
  pointer-events: none;
}
.hero__grid {
  display: grid; grid-template-columns: 1.35fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.hero__title {
  font-family: var(--ff-display); font-weight: 900;
  font-size: clamp(56px, 8.2vw, 132px);
  line-height: 0.9; letter-spacing: -0.04em;
  margin: 18px 0 32px -0.04em;
  color: var(--ink);
}
.hero__title-line { display: block; }
.hero__title-line--em {
  color: var(--gold-deep); font-style: italic; font-weight: 900;
  display: inline-flex; align-items: baseline; gap: 0.2em;
}
.hero__title-line--em::before {
  content: "·"; color: var(--gold); font-style: normal; font-weight: 900;
}
.hero__lede {
  font-family: var(--ff-sans);
  font-size: clamp(19px, 1.9vw, 23px);
  font-weight: 400; line-height: 1.45;
  color: var(--ink); max-width: 44ch; margin-bottom: 22px;
}
.hero__lede strong {
  font-weight: 700; color: var(--ink);
  background: linear-gradient(to top, var(--gold-soft) 48%, transparent 48%);
  padding: 0 2px;
}
.hero__desc {
  font-size: 16px; color: var(--ink-soft);
  max-width: 54ch; margin-bottom: 40px; line-height: 1.65;
}

.hero__metagrid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1.5px solid var(--line); border-bottom: 1.5px solid var(--line);
  margin: 40px 0 36px; background: var(--paper);
}
.meta-card {
  padding: 20px 22px; border-right: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 6px;
}
.meta-card:last-child { border-right: 0; }
.meta-card__label {
  font-family: var(--ff-mono); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--ink-mute); font-weight: 500;
}
.meta-card__value {
  font-family: var(--ff-display); font-weight: 800;
  font-size: 24px; letter-spacing: -0.015em;
  color: var(--ink); line-height: 1;
}
.meta-card__sub { font-size: 12.5px; color: var(--ink-mute); }
.meta-card--accent { background: var(--petrol); border-right-color: transparent; }
.meta-card--accent .meta-card__label { color: var(--gold); }
.meta-card--accent .meta-card__value { color: var(--cream); }
.meta-card--accent .meta-card__sub { color: rgba(245, 239, 222, 0.7); }

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px; }
.hero__fineprint {
  margin-top: 20px; font-size: 13.5px;
  color: var(--ink-mute); max-width: 48ch; line-height: 1.55;
}

.hero__portrait { position: relative; }
.portrait-frame {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--petrol); box-shadow: var(--shadow-lg);
  transition: transform var(--t);
}
.portrait-frame::before {
  content: ""; position: absolute;
  inset: -10px -10px 10px -10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  z-index: -1; border-radius: var(--radius-lg);
  transform: rotate(-2deg);
}
.portrait-frame:hover { transform: translateY(-4px); }
.portrait-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.portrait-frame__tag {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(14, 42, 45, 0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--cream); padding: 16px 20px;
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 3px;
  border: 1px solid rgba(214, 163, 58, 0.3);
}
.portrait-frame__tag-label {
  font-family: var(--ff-mono); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.portrait-frame__tag-name {
  font-family: var(--ff-display); font-weight: 800;
  font-size: 19px; letter-spacing: -0.01em;
}
.portrait-frame__tag-role { font-size: 12.5px; color: rgba(245, 239, 222, 0.8); }

@media (max-width: 960px) {
  .hero { padding: 48px 0 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__portrait { max-width: 440px; margin: 0 auto; }
  .hero__metagrid { grid-template-columns: repeat(2, 1fr); }
  .meta-card { border-bottom: 1px solid var(--line-soft); }
  .meta-card:nth-child(n + 3) { border-bottom: 0; }
  .meta-card:nth-child(2n) { border-right: 0; }
}

/* ==========================================================
   SECTIONS
   ========================================================== */
.section { padding: 100px 0; position: relative; }
.section + .section { border-top: 1px solid var(--line); }

/* ==========================================================
   URGENCIA
   ========================================================== */
.section--urgencia { background: var(--petrol); color: var(--cream); }
.section--urgencia .section__title { color: var(--cream); font-size: clamp(32px, 4.5vw, 56px); }
.section--urgencia .section__title em { color: var(--gold); }
.section--urgencia .section__eyebrow { color: var(--gold); }
.urgencia-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.urgencia-card {
  background: rgba(245, 239, 222, 0.03);
  border: 1px solid rgba(214, 163, 58, 0.22);
  padding: 32px 28px; border-radius: var(--radius);
  transition: all var(--t);
}
.urgencia-card:hover {
  background: rgba(214, 163, 58, 0.06);
  border-color: var(--gold); transform: translateY(-4px);
}
.urgencia-card__stat {
  font-family: var(--ff-display); font-weight: 900;
  font-size: 56px; line-height: 1; color: var(--gold);
  letter-spacing: -0.03em; margin-bottom: 14px;
}
.urgencia-card h3 {
  font-size: 20px; color: var(--cream);
  margin-bottom: 8px; font-weight: 700;
}
.urgencia-card p {
  color: rgba(245, 239, 222, 0.75);
  font-size: 14.5px; line-height: 1.55; margin: 0;
}
@media (max-width: 820px) { .urgencia-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   CONTEÚDO
   ========================================================== */
.section--conteudo { background: var(--paper); }
.conteudo-list { display: grid; gap: 0; margin-top: 24px; }
.conteudo-item {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 40px; align-items: start;
  padding: 36px 0; border-top: 1.5px solid var(--line);
  transition: background var(--t);
}
.conteudo-item:last-child { border-bottom: 1.5px solid var(--line); }
.conteudo-item:hover { background: rgba(214, 163, 58, 0.035); }
.conteudo-item__num {
  font-family: var(--ff-display); font-weight: 900;
  font-size: clamp(64px, 8vw, 110px);
  line-height: 0.9; color: var(--gold);
  letter-spacing: -0.05em; display: block;
}
.conteudo-item__body h3 {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 14px; color: var(--ink);
  letter-spacing: -0.02em; line-height: 1.1;
}
.conteudo-item__body p {
  color: var(--ink-soft); max-width: 64ch;
  margin: 0 0 16px 0; font-size: 16.5px; line-height: 1.65;
}
.conteudo-item__tools {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px;
}
.conteudo-item__tool {
  font-family: var(--ff-mono); font-size: 11.5px;
  padding: 5px 11px; background: var(--cream);
  border: 1px solid var(--line); border-radius: 999px;
  color: var(--ink-soft); font-weight: 500;
}
@media (max-width: 720px) {
  .conteudo-item { grid-template-columns: 1fr; gap: 10px; padding: 28px 0; }
  .conteudo-item__num { font-size: 56px; }
}

/* ==========================================================
   PROFESSOR
   ========================================================== */
.professor-grid {
  display: grid; grid-template-columns: 0.9fr 1.3fr;
  gap: 64px; align-items: start;
}
.professor-photo {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
}
.professor-photo::before {
  content: ""; position: absolute;
  inset: -8px -8px 8px -8px; background: var(--gold);
  z-index: -1; transform: rotate(-1.5deg);
  border-radius: var(--radius-lg);
}
.professor-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.professor-bio__name {
  font-family: var(--ff-display); font-weight: 900;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.95; margin-bottom: 16px;
  letter-spacing: -0.028em; color: var(--ink);
}
.professor-bio__role {
  display: block; font-family: var(--ff-sans);
  font-weight: 500; font-size: clamp(16px, 1.6vw, 19px);
  color: var(--gold-deep); margin-top: 12px;
  font-style: normal;
}
.professor-bio__lead {
  font-family: var(--ff-sans); font-size: 20px;
  font-weight: 400; line-height: 1.5;
  color: var(--ink); max-width: 54ch; margin-bottom: 36px;
}
.credentials { border-top: 1.5px solid var(--line); }
.credentials li {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 20px; padding: 18px 0;
  border-bottom: 1px solid var(--line); align-items: start;
}
.credentials__label {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); padding-top: 3px;
  font-weight: 500;
}
.credentials__value { font-size: 15.5px; line-height: 1.55; color: var(--ink-soft); }
.credentials__value strong { color: var(--ink); font-weight: 700; }
@media (max-width: 960px) {
  .professor-grid { grid-template-columns: 1fr; gap: 40px; }
  .professor-photo { max-width: 420px; }
  .credentials li { grid-template-columns: 1fr; gap: 6px; }
}

/* ==========================================================
   COMO FUNCIONA
   ========================================================== */
.section--comofunciona { background: var(--paper); }
.schedule { border-top: 1.5px solid var(--line); margin-top: 32px; }
.schedule__row {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 40px; padding: 32px 0;
  border-bottom: 1.5px solid var(--line); align-items: start;
  transition: background var(--t);
}
.schedule__row:hover { background: rgba(214, 163, 58, 0.04); }
.schedule__time { display: flex; flex-direction: column; gap: 6px; }
.schedule__time-big {
  font-family: var(--ff-display); font-weight: 800;
  font-size: 40px; color: var(--petrol);
  line-height: 1; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.schedule__time-sub {
  font-family: var(--ff-mono); font-size: 11.5px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500;
}
.schedule__body h3 {
  font-family: var(--ff-display); font-weight: 800;
  font-size: 24px; margin-bottom: 10px;
  letter-spacing: -0.018em;
}
.schedule__body p {
  color: var(--ink-soft); max-width: 64ch;
  margin: 0; line-height: 1.6; font-size: 16px;
}
@media (max-width: 700px) {
  .schedule__row { grid-template-columns: 1fr; gap: 12px; }
  .schedule__time { flex-direction: row; align-items: baseline; gap: 14px; }
}

/* ==========================================================
   LEVA
   ========================================================== */
.leva-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 48px;
}
.leva-card {
  background: var(--paper); border: 1.5px solid var(--line);
  padding: 32px 26px; border-radius: var(--radius);
  transition: all var(--t);
}
.leva-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow);
  border-color: var(--gold);
}
.leva-card__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: var(--gold-soft);
  color: var(--gold-deep); font-family: var(--ff-mono);
  font-weight: 600; font-size: 13px; border-radius: 8px;
  margin-bottom: 18px;
}
.leva-card h3 {
  font-family: var(--ff-display); font-weight: 800;
  font-size: 20px; margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.leva-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .leva-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .leva-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   NÃO É PRA VOCÊ
   ========================================================== */
.section--naoepra { background: var(--paper); }
.naoepra-list {
  display: grid; gap: 0; margin-top: 24px;
  border-top: 1.5px solid var(--line);
}
.naoepra-list li {
  padding: 22px 0 22px 44px; border-bottom: 1px solid var(--line);
  position: relative; font-size: 17px;
  color: var(--ink-soft); line-height: 1.55;
}
.naoepra-list li::before {
  content: "×"; position: absolute; left: 4px; top: 20px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  color: var(--gold-deep); font-family: var(--ff-display);
  font-weight: 900; font-size: 20px;
}
.naoepra-foot {
  margin-top: 40px; font-family: var(--ff-display);
  font-weight: 800; font-size: 24px; color: var(--ink);
  line-height: 1.35; max-width: 52ch;
  letter-spacing: -0.018em;
}
.naoepra-foot em { color: var(--gold-deep); font-style: italic; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq { border-top: 1.5px solid var(--line); margin-top: 24px; }
.faq__item { border-bottom: 1.5px solid var(--line); padding: 24px 0; }
.faq__item summary {
  list-style: none; cursor: pointer;
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.35; color: var(--ink);
  display: flex; align-items: flex-start; gap: 16px;
  transition: color var(--t-fast); letter-spacing: -0.015em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-deep); }
.faq__item summary::before {
  content: "+"; font-family: var(--ff-display); font-weight: 800;
  color: var(--gold-deep); font-size: 24px; line-height: 1;
  padding-top: 2px; transition: transform var(--t); flex-shrink: 0;
}
.faq__item[open] summary::before { content: "−"; }
.faq__item p {
  margin: 16px 0 0 32px; color: var(--ink-soft);
  font-size: 15.5px; line-height: 1.65; max-width: 64ch;
}

/* ==========================================================
   INSCREVER
   ========================================================== */
.section--inscrever {
  background: var(--petrol); color: var(--cream);
  position: relative; overflow: hidden;
}
.section--inscrever::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 0%, rgba(214, 163, 58, 0.28), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(214, 163, 58, 0.12), transparent 60%);
  pointer-events: none;
}
.inscrever-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
  position: relative; z-index: 1;
}
.inscrever-pitch__eyebrow { color: var(--gold); }
.inscrever-pitch__eyebrow .eyebrow__dot {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(214, 163, 58, 0.22);
}
.inscrever-pitch__title {
  font-family: var(--ff-display); font-weight: 900;
  font-size: clamp(54px, 7vw, 108px);
  line-height: 0.9; color: var(--cream);
  margin-bottom: 28px; letter-spacing: -0.038em;
}
.inscrever-pitch__title em { color: var(--gold); font-style: italic; font-weight: 900; }
.inscrever-pitch__title .dot { color: var(--gold); }
.inscrever-pitch__lede {
  font-family: var(--ff-sans); font-size: 22px;
  font-weight: 400; line-height: 1.45;
  color: var(--cream); opacity: 0.9;
  max-width: 44ch; margin-bottom: 40px;
}
.inscrever-meta {
  display: flex; flex-direction: column; gap: 18px;
  border-top: 1px solid rgba(245, 239, 222, 0.18); padding-top: 24px;
}
.inscrever-meta > div {
  display: grid; grid-template-columns: 130px 1fr;
  gap: 16px; align-items: baseline;
}
.inscrever-meta__label {
  font-family: var(--ff-mono); font-size: 11.5px;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--gold); font-weight: 500;
}
.inscrever-meta__value {
  font-family: var(--ff-sans); font-weight: 500;
  font-size: 18px; color: var(--cream);
}

.inscrever-card {
  background: var(--cream); color: var(--ink);
  border-radius: var(--radius-lg); padding: 34px;
  box-shadow: 0 36px 90px -30px rgba(0, 0, 0, 0.5);
  position: relative; border: 2px solid var(--gold);
}
.inscrever-card__head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 20px; margin-bottom: 24px;
  border-bottom: 1.5px solid var(--line);
}
.inscrever-card__label {
  font-family: var(--ff-mono); font-size: 11.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500;
}
.inscrever-card__price {
  font-family: var(--ff-display); font-weight: 900;
  font-size: 36px; color: var(--gold-deep);
  letter-spacing: -0.02em; line-height: 1;
}
.form { display: flex; flex-direction: column; gap: 16px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label {
  font-family: var(--ff-mono); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink-mute); font-weight: 500;
}
.form__field input {
  font: inherit; font-family: var(--ff-sans);
  font-size: 15px; padding: 13px 14px;
  background: var(--paper); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); color: var(--ink);
  transition: all var(--t-fast); width: 100%;
}
.form__field input:focus {
  outline: none; border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--gold-soft);
}
.form__field input::placeholder { color: var(--ink-mute); opacity: 0.6; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form__foot {
  font-size: 12.5px; color: var(--ink-mute);
  text-align: center; margin: 12px 0 0 0; line-height: 1.5;
}
.form__status {
  margin: 4px 0 0 0; font-size: 13.5px; min-height: 1em;
  text-align: center; font-weight: 500;
}
.form__status--err { color: #b8392e; }
.form__status--ok { color: var(--gold-deep); }
@media (max-width: 960px) {
  .inscrever-grid { grid-template-columns: 1fr; gap: 40px; }
  .inscrever-meta > div { grid-template-columns: 1fr; gap: 4px; }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  padding: 42px 0 50px; background: var(--cream-deep);
  border-top: 1.5px solid var(--line); color: var(--ink-soft);
}
.footer__inner {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 24px; align-items: center;
}
.footer__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-display); font-weight: 700; color: var(--ink);
}
.footer__brand-mark {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  background: var(--petrol); color: var(--gold);
  font-family: var(--ff-display); font-weight: 900;
  font-size: 13px; border-radius: 6px;
}
.footer__brand-text em { color: var(--gold-deep); font-style: italic; }
.footer__credits { text-align: center; font-size: 13.5px; margin: 0; }
.footer__legal {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); margin: 0; text-align: right; font-weight: 500;
}
@media (max-width: 780px) {
  .footer__inner { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .footer__brand, .footer__legal, .footer__credits {
    justify-self: center; text-align: center;
  }
}

/* ==========================================================
   CHECKOUT — ASAAS
   ========================================================== */

/* Select element — consistente com os inputs */
.form__select {
  font: inherit; font-family: var(--ff-sans);
  font-size: 15px; padding: 13px 14px;
  background: var(--paper); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); color: var(--ink);
  transition: all var(--t-fast); width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235d7074' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px; cursor: pointer;
}
.form__select:focus {
  outline: none; border-color: var(--gold);
  background-color: var(--white);
  box-shadow: 0 0 0 4px var(--gold-soft);
}

/* Separador de seção */
.payment-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 4px 0 0;
}
.payment-divider::before, .payment-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.payment-divider span {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500; white-space: nowrap;
}

/* Tabs de forma de pagamento */
.payment-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.payment-tab {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 14px 10px;
  background: var(--paper); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); cursor: pointer;
  transition: all var(--t-fast); text-align: center;
}
.payment-tab:hover { border-color: var(--gold); background: var(--cream); }
.payment-tab--active {
  border-color: var(--gold); background: var(--gold-soft);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.payment-tab__label {
  font-family: var(--ff-display); font-weight: 800;
  font-size: 15px; letter-spacing: -0.01em; color: var(--ink);
}
.payment-tab--active .payment-tab__label { color: var(--gold-deep); }
.payment-tab__sub {
  font-family: var(--ff-mono); font-size: 9.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500;
}

/* Seção de campos de cartão */
.card-fields {
  display: flex; flex-direction: column; gap: 16px;
  padding: 16px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--paper);
}

/* Resultado do pagamento */
.payment-result {
  display: flex; flex-direction: column; gap: 18px;
}
.payment-result__header {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; text-align: center; padding: 10px 0 6px;
}
.payment-result__check {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold-deep);
  border-radius: 50%; font-size: 22px; font-weight: 700;
}
.payment-result__check--big {
  width: 56px; height: 56px; font-size: 28px;
  background: rgba(16, 185, 129, 0.12); color: #059669;
}
.payment-result__header--success .payment-result__title { color: #059669; }
.payment-result__title {
  font-family: var(--ff-display); font-weight: 800;
  font-size: 22px; color: var(--ink); letter-spacing: -0.015em; margin: 0;
}
.payment-result__desc {
  font-size: 14.5px; color: var(--ink-soft);
  line-height: 1.55; max-width: 38ch; margin: 0;
}
.payment-result__name {
  font-size: 14px; color: var(--ink-mute); margin: 0 0 12px;
}
.payment-result__name strong { color: var(--ink); }
.payment-result__expiry {
  font-size: 13px; color: var(--ink-mute); margin: 0;
}
.payment-result__expiry strong { color: var(--ink); }
.payment-result__hint {
  font-size: 13px; color: var(--ink-mute);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 12px 14px;
  line-height: 1.55; margin: 0;
}
.payment-result__ref {
  font-size: 13px; color: var(--ink-mute); text-align: center; margin: 0;
}
.payment-result__ref code {
  font-family: var(--ff-mono); font-size: 12px;
  background: var(--paper); padding: 2px 6px;
  border-radius: 4px; color: var(--ink-soft);
}

/* QR Code PIX */
.pix-qr {
  display: flex; justify-content: center;
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px;
}
.pix-qr img {
  width: 200px; height: 200px;
  object-fit: contain; image-rendering: pixelated;
}

/* Campo com botão de copiar */
.copy-field {
  display: grid; grid-template-columns: 1fr auto; gap: 0;
}
.copy-field input {
  font: inherit; font-family: var(--ff-mono);
  font-size: 12px; padding: 11px 12px;
  background: var(--paper); border: 1.5px solid var(--line);
  border-right: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--ink-soft); width: 100%;
}
.copy-field input:focus { outline: none; }
.btn-copy {
  padding: 11px 16px;
  background: var(--petrol); color: var(--cream);
  border: 1.5px solid var(--petrol);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--ff-mono); font-size: 11px;
  font-weight: 600; letter-spacing: 0.08em;
  cursor: pointer; transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.btn-copy:hover { background: var(--gold); color: var(--petrol-deep); border-color: var(--gold); }

@media (max-width: 480px) {
  .payment-tabs { grid-template-columns: repeat(3, 1fr); }
  .payment-tab { padding: 12px 6px; }
  .payment-tab__sub { display: none; }
  .pix-qr img { width: 160px; height: 160px; }
}

/* ==========================================================
   ANIMATIONS
   ========================================================== */
@media (prefers-reduced-motion: no-preference) {
  .hero__content > * {
    opacity: 0; transform: translateY(14px);
    animation: enter 700ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  .hero__content > *:nth-child(1) { animation-delay: 60ms; }
  .hero__content > *:nth-child(2) { animation-delay: 140ms; }
  .hero__content > *:nth-child(3) { animation-delay: 220ms; }
  .hero__content > *:nth-child(4) { animation-delay: 300ms; }
  .hero__content > *:nth-child(5) { animation-delay: 380ms; }
  .hero__content > *:nth-child(6) { animation-delay: 460ms; }
  .hero__content > *:nth-child(7) { animation-delay: 540ms; }
  .hero__portrait {
    opacity: 0; transform: translateY(20px) scale(0.98);
    animation: enter-scale 900ms cubic-bezier(0.2, 0.7, 0.2, 1) 200ms forwards;
  }
  @keyframes enter { to { opacity: 1; transform: translateY(0); } }
  @keyframes enter-scale { to { opacity: 1; transform: translateY(0) scale(1); } }
}
