/* =========================================================
   Lito Academy ✈ Azul — Landing de indicação
   Assinatura: formulário como cartão de embarque
   ========================================================= */

:root {
  /* Cores */
  --ink:        #0a1930;   /* céu de cruzeiro, quase noite */
  --ink-2:      #102a4c;
  --azul:       #0a56b3;   /* azul institucional */
  --azul-deep:  #063e86;
  --ceu:        #2aa8e0;   /* azul-céu, brilho */
  --ambar:      #ffb020;   /* âmbar de painel de embarque */
  --papel:      #eef3f9;   /* fundo, papel frio */
  --card:       #ffffff;
  --tinta:      #0c1b2e;   /* texto */
  --muted:      #5c6b82;
  --line:       #d8e2ee;
  --line-strong:#c2d0e2;
  --ok:         #157a53;
  --erro:       #c0341d;

  /* Tipografia */
  --f-display: "Space Grotesk", system-ui, sans-serif;
  --f-mono:    "Space Mono", ui-monospace, monospace;
  --f-body:    "Inter", system-ui, sans-serif;

  /* Formas */
  --r:   14px;
  --r-lg:20px;
  --shadow: 0 24px 60px -28px rgba(8, 25, 48, .45);
  --shadow-sm: 0 10px 30px -18px rgba(8, 25, 48, .5);
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--tinta);
  background: var(--papel);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--f-display); margin: 0; line-height: 1.08; letter-spacing: -.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--ambar); color: var(--ink); }

/* ---------- Utilidades tipográficas ---------- */
.eyebrow, .kicker {
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 700;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: .85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(10, 25, 48, .82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
}
.wordmark {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--f-display); font-weight: 700;
  letter-spacing: .02em; font-size: 1.05rem; color: #fff;
}
.wordmark__thin { font-weight: 400; opacity: .7; margin-left: .3em; letter-spacing: .12em; font-size: .72em; }
.wordmark__route { color: var(--ambar); font-size: .95em; }
.wordmark__azul { color: var(--ceu); }
.wordmark__lito { white-space: nowrap; }

.site-nav { display: flex; align-items: center; gap: clamp(.75rem, 2.5vw, 1.75rem); }
.site-nav > a:not(.btn) {
  font-size: .9rem; color: rgba(255,255,255,.82); font-weight: 500;
  padding-bottom: 2px; border-bottom: 1.5px solid transparent; transition: .18s;
}
.site-nav > a:not(.btn):hover { color: #fff; border-color: var(--ambar); }

/* =========================================================
   CO-BRAND — selo de parceria (Lito × Azul)
   Pílula clara: as duas marcas nas cores reais em qualquer fundo
   ========================================================= */
.cobrand {
  display: inline-flex; align-items: center; gap: .8rem;
  padding: .5rem .95rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 24px -14px rgba(8, 25, 48, .55);
  transition: box-shadow .2s ease, transform .15s ease;
}
a.cobrand:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -14px rgba(8, 25, 48, .6); }
.cobrand__logo { display: block; width: auto; }
.cobrand__logo--lito { height: 30px; }
.cobrand__logo--azul { height: 20px; }
.cobrand__x {
  align-self: center; color: #b7c2d4; font-weight: 400; font-size: 1rem; line-height: 1;
  transform: translateY(-1px);
}

.cobrand--sm { padding: .38rem .7rem; gap: .6rem; }
.cobrand--sm .cobrand__logo--lito { height: 22px; }
.cobrand--sm .cobrand__logo--azul { height: 15px; }
.cobrand--sm .cobrand__x { font-size: .85rem; }

.cobrand--lg { padding: .65rem 1.15rem; gap: 1rem; }
.cobrand--lg .cobrand__logo--lito { height: 42px; }
.cobrand--lg .cobrand__logo--azul { height: 28px; }
.cobrand--lg .cobrand__x { font-size: 1.2rem; }

/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
  --_bg: var(--azul);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--f-display); font-weight: 600; font-size: .98rem;
  padding: .8rem 1.4rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(180deg, var(--ceu), var(--azul));
  color: #fff; box-shadow: 0 12px 28px -12px rgba(10, 86, 179, .8);
}
.btn--primary:hover { box-shadow: 0 16px 34px -12px rgba(10, 86, 179, .95); transform: translateY(-1px); }
.btn--line { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn--line:hover { border-color: #fff; }
.btn--ghost {
  background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.25);
  padding: .55rem 1rem; font-size: .9rem;
}
.btn--ghost:hover { background: rgba(255,255,255,.2); }
.btn--block { width: 100%; padding: 1rem; font-size: 1.05rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  color: #fff;
  background:
    radial-gradient(120% 90% at 80% -10%, #1c4f8f 0%, transparent 55%),
    radial-gradient(90% 80% at 10% 0%, #16386a 0%, transparent 50%),
    linear-gradient(180deg, var(--ink) 0%, #0c223f 60%, var(--ink-2) 100%);
  background-color: var(--ink);
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.5), transparent),
    radial-gradient(1.5px 1.5px at 70% 20%, rgba(255,255,255,.4), transparent),
    radial-gradient(1.5px 1.5px at 45% 55%, rgba(255,255,255,.25), transparent),
    radial-gradient(2px 2px at 88% 48%, rgba(255,255,255,.35), transparent);
  opacity: .7;
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(3.5rem, 9vw, 6.5rem) clamp(1rem, 4vw, 2.5rem) clamp(3rem, 7vw, 5rem);
}
.hero__seal { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.1rem; margin-bottom: 1.8rem; }
.hero__seal-label {
  font-family: var(--f-mono); text-transform: uppercase; letter-spacing: .16em;
  font-size: .68rem; font-weight: 700; color: rgba(233, 240, 250, .72);
}
.eyebrow { color: var(--ambar); display: inline-block; margin-bottom: 1.2rem; }
.hero__title {
  font-size: clamp(2.3rem, 6vw, 4.3rem); font-weight: 700; max-width: 16ch;
}
.hero__title .hl {
  color: transparent; background: linear-gradient(180deg, #eaf6ff, var(--ceu));
  -webkit-background-clip: text; background-clip: text;
}
.hero__lead {
  margin-top: 1.5rem; max-width: 56ch; font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(233, 240, 250, .82);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }

/* Faixa painel de embarque */
.depboard {
  margin-top: 3rem; display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: clamp(1rem, 4vw, 2.5rem);
  padding: 1.1rem clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--r);
  background: rgba(255,255,255,.04);
  max-width: 620px;
}
.depboard__cell { display: flex; flex-direction: column; gap: .2rem; }
.depboard__cell--right { text-align: right; align-items: flex-end; }
.depboard__label {
  font-family: var(--f-mono); font-size: .62rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.depboard__value {
  font-family: var(--f-mono); font-weight: 700; font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--ambar); letter-spacing: .04em; line-height: 1;
}
.depboard__path { color: rgba(255,255,255,.55); }
.flightpath { width: 100%; height: 40px; overflow: visible; }
.flightpath__plane { offset-path: path("M4 34 C 70 4, 150 4, 216 6"); offset-rotate: 0deg;
  color: var(--ambar); animation: fly 4.5s ease-in-out infinite; }
@keyframes fly {
  0%   { offset-distance: 0%;   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

/* =========================================================
   SEÇÕES GENÉRICAS
   ========================================================= */
.section {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem);
}
.section__head { max-width: 62ch; margin-bottom: 2.5rem; }
.kicker { color: var(--azul); display: inline-block; margin-bottom: .8rem; }
.section__title { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 600; }
.section__sub { margin-top: .8rem; color: var(--muted); font-size: 1.05rem; }

/* =========================================================
   STEPS
   ========================================================= */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  counter-reset: step;
}
.step {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.6rem 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.step__code {
  font-family: var(--f-mono); font-size: .68rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--azul);
  background: #e7f0fb; padding: .3rem .55rem; border-radius: 6px; display: inline-block;
}
.step__title { font-size: 1.25rem; font-weight: 600; margin: 1rem 0 .5rem; }
.step__text { color: var(--muted); font-size: .98rem; }

/* =========================================================
   AVISO
   ========================================================= */
.aviso { padding-top: 0; }
.aviso__card {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: linear-gradient(180deg, #12294a, #0e2340);
  color: #fff; border-radius: var(--r-lg); padding: 1.7rem clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(255, 176, 32, .35);
  box-shadow: var(--shadow);
}
.aviso__flag {
  flex: none; width: 2.6rem; height: 2.6rem; display: grid; place-items: center;
  font-size: 1.4rem; border-radius: 10px;
  background: var(--ambar); color: #3a2600;
}
.aviso__tag {
  font-family: var(--f-mono); text-transform: uppercase; letter-spacing: .14em;
  font-size: .72rem; font-weight: 700; color: var(--ambar); margin-bottom: .45rem;
}
.aviso__text { color: rgba(233,240,250,.9); font-size: 1.02rem; max-width: 74ch; }
.aviso__text strong { color: #fff; }

/* =========================================================
   FORMULÁRIO — CARTÃO DE EMBARQUE
   ========================================================= */
.formsec { max-width: 760px; }

.pass {
  background: var(--card); border-radius: var(--r-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden;
}
.pass__header {
  background:
    radial-gradient(90% 200% at 100% 0%, #1a63c0 0%, transparent 60%),
    linear-gradient(120deg, var(--azul-deep), var(--azul));
  color: #fff; padding: 1.3rem clamp(1.2rem, 3vw, 1.9rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.pass__brand {
  font-family: var(--f-mono); text-transform: uppercase; letter-spacing: .14em;
  font-size: .72rem; color: rgba(255,255,255,.8);
}

/* Perfuração (picote) */
.pass__perf {
  height: 0; border-top: 2px dashed var(--line-strong);
  position: relative; background: var(--card);
}
.pass__perf::before, .pass__perf::after {
  content: ""; position: absolute; top: -13px; width: 24px; height: 24px;
  border-radius: 50%; background: var(--papel); border: 1px solid var(--line);
}
.pass__perf::before { left: -13px; }
.pass__perf::after  { right: -13px; }
.pass__perf--inner { margin: 1.6rem 0; opacity: .8; }
.pass__perf--inner::before, .pass__perf--inner::after { display: none; }

.pass__body { padding: clamp(1.4rem, 3.5vw, 2.4rem); }

/* Fieldsets / grupos */
.grp { border: 0; margin: 0; padding: 0; }
.grp + .grp { margin-top: 0; }
.grp__legend {
  font-family: var(--f-display); font-weight: 600; font-size: 1.15rem;
  display: flex; align-items: center; gap: .6rem; margin-bottom: 1.1rem; padding: 0;
}
.grp__num {
  font-family: var(--f-mono); font-size: .8rem; font-weight: 700; color: #fff;
  background: var(--azul); width: 1.9rem; height: 1.9rem; border-radius: 8px;
  display: grid; place-items: center;
}

/* Campos */
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label, .confirm__q {
  display: block; font-weight: 600; font-size: .95rem; margin-bottom: .45rem; color: var(--tinta);
}
.field input, .field textarea {
  width: 100%; font-family: var(--f-body); font-size: 1rem; color: var(--tinta);
  padding: .8rem .9rem; border: 1.5px solid var(--line-strong); border-radius: 10px;
  background: #fbfdff; transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 88px; }
.field input::placeholder, .field textarea::placeholder { color: #9aa8bd; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--azul);
  box-shadow: 0 0 0 4px rgba(10, 86, 179, .14);
}
.field input:user-invalid { border-color: var(--erro); }

.field__hint {
  color: var(--muted); font-size: .82rem; margin: -.2rem 0 .5rem;
}

.field__err {
  color: var(--erro); font-size: .82rem; font-weight: 500; margin-top: .35rem; min-height: 0;
}
.field__err:empty { display: none; }

/* Upload de currículo (dropzone) */
.upload { margin-bottom: 1.2rem; }
.upload__caption {
  display: block; font-weight: 600; font-size: .95rem; margin-bottom: .45rem; color: var(--tinta);
}
.dropzone {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem;
  text-align: center; padding: 1.6rem 1rem; cursor: pointer;
  border: 1.6px dashed var(--line-strong); border-radius: 12px; background: #fbfdff;
  color: var(--muted); transition: border-color .15s, background .15s, color .15s;
}
.dropzone:hover, .dropzone.is-drag { border-color: var(--azul); background: #f2f8ff; color: var(--tinta); }
.dropzone.is-drag { border-style: solid; }
.dropzone:focus-within { outline: 2px solid var(--ceu); outline-offset: 2px; }
.dropzone input { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; opacity: 0; overflow: hidden; }
.dropzone__icon { color: var(--azul); display: grid; place-items: center; }
.dropzone__main { font-family: var(--f-display); font-weight: 600; font-size: 1rem; color: var(--tinta); word-break: break-word; }
.dropzone__main u { color: var(--azul); text-decoration: none; border-bottom: 2px solid currentColor; }
.dropzone__hint {
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
}
.dropzone.has-file { border-style: solid; border-color: var(--ok); background: #f0faf5; }
.dropzone.has-file .dropzone__icon, .dropzone.has-file .dropzone__main { color: var(--ok); }
.dropzone.has-file .dropzone__main u { border: 0; }

/* Honeypot anti-bot: fora da tela, invisível para humanos */
.hp {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none;
}

/* Foto do candidato (opcional) — seletor de avatar circular */
.fotoup {
  display: grid; grid-template-columns: auto 1fr; align-items: center;
  gap: .35rem 1.1rem; margin-bottom: 1.4rem;
}
.fotoup__ring {
  position: relative; width: 92px; height: 92px; border-radius: 50%;
  border: 2px dashed var(--line-strong); background: #fbfdff;
  display: grid; place-items: center; cursor: pointer; overflow: hidden;
  color: var(--azul); transition: border-color .15s, background .15s, box-shadow .15s;
}
.fotoup__ring:hover { border-color: var(--azul); background: #f2f8ff; }
.fotoup__ring:focus-within { outline: 2px solid var(--ceu); outline-offset: 3px; }
.fotoup__ring input {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  opacity: 0; overflow: hidden;
}
.fotoup__img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.fotoup__ph { display: grid; place-items: center; }
.fotoup.has-foto .fotoup__ring { border-style: solid; border-color: var(--ok); }
.fotoup.has-foto .fotoup__ph { display: none; }

.fotoup__info { display: flex; flex-direction: column; gap: .15rem; }
.fotoup__title { font-weight: 600; font-size: .95rem; color: var(--tinta); }
.fotoup__opt { font-weight: 500; color: var(--muted); }
.fotoup__hint {
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted);
}
.fotoup__remove {
  align-self: flex-start; margin-top: .35rem;
  font-family: var(--f-body); font-weight: 600; font-size: .82rem;
  color: var(--erro); background: none; border: 0; padding: 0; cursor: pointer;
  border-bottom: 1.5px solid transparent;
}
.fotoup__remove:hover { border-color: currentColor; }
.fotoup .field__err { grid-column: 1 / -1; }

/* Cursos — caixas de seleção múltipla */
.cursosgrp { border: 0; padding: 0; margin: 0 0 1.1rem; }
.cursosgrp__legend {
  font-weight: 600; font-size: .95rem; color: var(--tinta);
  padding: 0; margin-bottom: .15rem;
}
.cursosgrp__hint { color: var(--muted); font-size: .82rem; margin-bottom: .65rem; }
.cursosgrp__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
}
.chk { position: relative; display: block; }
.chk input {
  position: absolute; opacity: 0; inset: 0; cursor: pointer;
}
.chk span {
  display: flex; align-items: center; gap: .55rem;
  padding: .6rem .75rem; min-height: 100%;
  border: 1.5px solid var(--line-strong); border-radius: 10px;
  background: #fbfdff; color: var(--tinta); font-size: .88rem; line-height: 1.3;
  cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s;
}
.chk span::before {
  content: ""; flex: none; width: 1.05rem; height: 1.05rem;
  border: 1.5px solid var(--line-strong); border-radius: 5px; background: #fff;
  transition: background .15s, border-color .15s;
}
.chk:hover span { border-color: var(--azul); }
.chk input:checked + span {
  border-color: var(--azul); background: #eef6ff;
  box-shadow: 0 0 0 1px var(--azul) inset;
}
.chk input:checked + span::before {
  background: var(--azul) url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 70% no-repeat;
  border-color: var(--azul);
}
.chk input:focus-visible + span { outline: 2px solid var(--ceu); outline-offset: 2px; }

/* Confirmações Sim/Não (segmented) */
.confirm { margin-bottom: 1.4rem; }
.confirm--consent {
  background: #f3f8fe; border: 1px solid #d4e6fb; border-left: 4px solid var(--azul);
  border-radius: 10px; padding: 1rem 1.1rem;
  /* Compensa o padding/borda para o texto e o Sim/Não ficarem
     alinhados com as outras perguntas (o box "vaza" pros lados). */
  margin-left: calc(-1.1rem - 4px);
  margin-right: calc(-1.1rem - 1px);
}
.seg {
  display: inline-grid; grid-template-columns: 1fr 1fr; gap: 6px;
  background: #eef3fa; padding: 5px; border-radius: 12px; border: 1px solid var(--line);
  margin-top: .2rem;
}
.seg__opt { position: relative; }
.seg__opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.seg__opt span {
  display: block; text-align: center; min-width: 92px;
  font-family: var(--f-display); font-weight: 600; font-size: .95rem;
  padding: .55rem 1rem; border-radius: 8px; color: var(--muted);
  transition: .15s; cursor: pointer;
}
.seg__opt:hover span { color: var(--tinta); }
.seg__opt input:checked + span { background: var(--azul); color: #fff; box-shadow: var(--shadow-sm); }
.seg__opt input:focus-visible + span { outline: 2px solid var(--ceu); outline-offset: 2px; }
/* "Não" selecionado fica âmbar de alerta */
.seg__opt input[value="Não"]:checked + span { background: var(--ambar); color: #3a2600; }

/* Submit */
.pass__submit { margin-top: 1.8rem; }
.pass__formerr {
  color: var(--erro); background: #fdece8; border: 1px solid #f4c4b8;
  border-radius: 10px; padding: .7rem .9rem; font-size: .9rem; font-weight: 500;
  margin-bottom: .9rem;
}
.pass__note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: .8rem; }

/* =========================================================
   SUCESSO — STUB EMITIDO
   ========================================================= */
.issued {
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow); overflow: hidden; text-align: center;
  animation: rise .5s ease both;
}
.issued__perf { height: 8px; background: repeating-linear-gradient(90deg, var(--azul) 0 14px, transparent 14px 26px); }
.issued__body { padding: clamp(2rem, 5vw, 3rem); }
.issued__status {
  font-family: var(--f-mono); text-transform: uppercase; letter-spacing: .18em;
  font-size: .75rem; font-weight: 700; color: var(--ok); margin-bottom: 1rem;
}
.issued__status::before { content: "● "; }
.issued__title { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 600; }
.issued__text { color: var(--muted); margin: 1rem auto 0; max-width: 48ch; }
.issued__meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2.5rem;
  margin: 2rem 0 0; padding-top: 1.5rem; border-top: 2px dashed var(--line-strong);
}
.issued__meta div { display: flex; flex-direction: column; gap: .2rem; }
.issued__meta dt {
  font-family: var(--f-mono); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}
.issued__meta dd { margin: 0; font-family: var(--f-mono); font-weight: 700; color: var(--azul); font-size: 1.05rem; }

@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink); color: rgba(233,240,250,.75);
  padding: clamp(2.2rem, 5vw, 3rem) clamp(1rem, 4vw, 2.5rem);
  text-align: center;
}
.site-footer__brand {
  display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--f-display); color: #fff; margin-bottom: .8rem;
}
.site-footer__fine { max-width: 60ch; margin: 0 auto; font-size: .85rem; }

/* =========================================================
   REVELAÇÃO NO SCROLL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .cursosgrp__grid { grid-template-columns: 1fr; }
  .site-nav > a:not(.btn) { display: none; }
  .depboard { grid-template-columns: auto 1fr auto; }
  .seg { display: grid; }
}

@media (max-width: 420px) {
  .seg__opt span { min-width: 0; }
}

/* =========================================================
   MOVIMENTO REDUZIDO
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .flightpath__plane { animation: none; opacity: 1; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .issued { animation: none; }
  .btn { transition: none; }
}
