/* ============================================================
   CURSO PREPARATÓRIO MACIEL · Landing System
   Cores: Verde Militar / Dourado Farda / Bege Fundo / Preto Grafite
   Tipos: Oswald (títulos) · Bebas Neue (tags) · Inter (corpo)
   ============================================================ */


:root {
  /* Paleta */
  --verde-militar: #1A3A1A;
  --verde-quartel: #2E6B2E;
  --verde-fumo:    #122612;
  --dourado:       #C8A951;
  --dourado-dark:  #a8893a;
  --preto:         #1C1C1C;
  --bege:          #F5F0E8;
  --bege-medio:    #E8E0D0;
  --branco:        #FFFFFF;
  --cinza:         #5A5A5A;
  --cinza-claro:   #8a8a8a;

  /* Tipos */
  --f-title: 'Oswald', 'Arial Narrow', sans-serif;
  --f-tag:   'Bebas Neue', 'Oswald', sans-serif;
  --f-body:  'Inter', system-ui, sans-serif;
  --f-mono:  'JetBrains Mono', ui-monospace, monospace;

  /* Espaçamento */
  --maxw: 1140px;
  --pad-section: 96px;
  --pad-section-sm: 56px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--f-body);
  color: var(--preto);
  background: var(--bege);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv01";
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* ---------- Tipografia ---------- */
.h-display {
  font-family: var(--f-title);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}
.h-section {
  font-family: var(--f-title);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.02;
  text-transform: uppercase;
}
.tag {
  font-family: var(--f-tag);
  letter-spacing: 0.16em;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tag.dourado { color: var(--dourado); }
.tag.bege { color: var(--bege); }
.tag::before, .tag.with-bullets::after {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.mono-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cinza);
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 880px; }
section { position: relative; padding: var(--pad-section) 0; }
section.tight { padding: var(--pad-section-sm) 0; }

/* ---------- Backgrounds ---------- */
.bg-verde   { background: var(--verde-militar); color: var(--bege); }
.bg-verde-fumo { background: var(--verde-fumo); color: var(--bege); }
.bg-preto   { background: var(--preto); color: var(--bege); }
.bg-bege    { background: var(--bege); color: var(--preto); }
.bg-bege-medio { background: var(--bege-medio); color: var(--preto); }

.bg-pattern {
  background-color: var(--verde-militar);
  background-image: url('assets/pattern.webp');
  background-size: 420px;
  background-repeat: repeat;
  color: var(--bege);
}
.bg-pattern.dim::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,38,18,0.55) 0%, rgba(18,38,18,0.75) 100%);
  pointer-events: none;
}
.bg-pattern > * { position: relative; }

/* Hero photograph background (cover) */
.bg-hero-photo {
  position: relative;
  background-color: var(--verde-fumo);
  background-image: url('assets/hero.webp');
  background-size: cover;
  background-position: 78% center;
  background-repeat: no-repeat;
  color: var(--bege);
  overflow: hidden;
}
.bg-hero-photo::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,22,10,0.92) 0%, rgba(10,22,10,0.78) 25%, rgba(10,22,10,0.5) 45%, rgba(10,22,10,0.2) 62%, rgba(10,22,10,0) 78%, rgba(10,22,10,0) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.bg-hero-photo > * { position: relative; z-index: 1; }
@media (min-width: 861px) {
  .bg-hero-photo .wrap { max-width: 1280px; padding-right: 260px; }
}
@media (max-width: 860px) {
  .bg-hero-photo {
    background-position: 70% center;
  }
  .bg-hero-photo::before {
    background:
      linear-gradient(180deg, rgba(10,22,10,0.55) 0%, rgba(10,22,10,0.85) 60%, rgba(10,22,10,0.95) 100%);
  }
}

/* Grade militar sutil - linha 1px */
.bg-grid {
  background-image:
    linear-gradient(rgba(28,28,28,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,28,28,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Hatch dourado */
.hatch {
  background-image: repeating-linear-gradient(
    -45deg,
    var(--dourado) 0 1px,
    transparent 1px 6px
  );
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--f-title);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 15px;
  text-decoration: none;
  padding: 18px 32px;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: all 180ms ease;
  cursor: pointer;
  line-height: 1;
}
.btn .arrow { transition: transform 180ms ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* Primário: verde + dourado */
.btn-primary {
  background: var(--verde-militar);
  color: var(--dourado);
  border-color: var(--verde-militar);
}
.btn-primary:hover { background: var(--verde-quartel); border-color: var(--verde-quartel); }

/* Destaque: dourado + verde */
.btn-destaque {
  background: var(--dourado);
  color: var(--verde-militar);
  border-color: var(--dourado);
  font-weight: 700;
}
.btn-destaque:hover { background: var(--dourado-dark); border-color: var(--dourado-dark); }

/* Secundário: outline */
.btn-secondary {
  background: transparent;
  color: var(--verde-militar);
  border-color: var(--verde-militar);
}
.btn-secondary:hover { background: var(--verde-militar); color: var(--bege); }

.btn-secondary.on-dark {
  color: var(--bege);
  border-color: var(--bege);
}
.btn-secondary.on-dark:hover { background: var(--bege); color: var(--verde-militar); }

/* Escuro: whatsapp */
.btn-dark {
  background: var(--preto); color: var(--branco); border-color: var(--preto);
}
.btn-dark:hover { background: #333; border-color: #333; }

.btn-block { width: 100%; }
.btn-lg { padding: 22px 40px; font-size: 17px; }

/* ---------- Selos / pílulas ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-tag);
  letter-spacing: 0.14em;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(200,169,81,0.15);
  color: var(--dourado);
  border: 1px solid var(--dourado);
}
.pill.solid { background: var(--dourado); color: var(--verde-militar); border-color: var(--dourado); }
.pill.alert { background: rgba(200,169,81,0.18); }

/* Star bullet */
.star {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--dourado);
  clip-path: polygon(50% 0,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

/* ---------- Divisores ---------- */
.divider-star {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 24px 0;
  color: var(--dourado);
}
.divider-star::before, .divider-star::after {
  content: ""; height: 1px; flex: 1; max-width: 120px;
  background: currentColor; opacity: 0.55;
}

/* ---------- Header / Nav ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--preto);
  color: var(--bege);
  border-bottom: 1px solid rgba(200,169,81,0.25);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.topbar .brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-title); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 14px; color: var(--bege);
  text-decoration: none;
}
.topbar .brand img { width: 36px; height: 36px; object-fit: contain; mix-blend-mode: screen; filter: contrast(1.4) brightness(1.15); }
.topbar .brand small {
  display: block; font-family: var(--f-mono); font-size: 9px;
  letter-spacing: 0.2em; color: var(--dourado); margin-top: 2px;
  text-transform: uppercase;
}
.topbar .meta {
  display: flex; align-items: center; gap: 22px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cinza-claro);
}
.topbar .meta span { display: flex; align-items: center; gap: 6px; }
.topbar .meta b { color: var(--dourado); font-weight: 500; }
@media (max-width: 720px) {
  .topbar .meta { display: none; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--preto);
  color: var(--cinza-claro);
  padding: 56px 0 32px;
  border-top: 4px solid var(--verde-militar);
}
.footer .foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer h5 {
  font-family: var(--f-title);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--dourado);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer p, .footer li { font-size: 13px; line-height: 1.7; }
.footer ul { list-style: none; }
.footer .lockup {
  display: flex; align-items: flex-start; gap: 16px;
}
.footer .lockup img { width: 64px; mix-blend-mode: screen; filter: contrast(1.4) brightness(1.15); }
.footer .legal {
  border-top: 1px solid rgba(200,169,81,0.15);
  margin-top: 40px; padding-top: 20px;
  display: flex; justify-content: space-between;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--cinza); text-transform: uppercase;
}
@media (max-width: 720px) {
  .footer .foot-grid { grid-template-columns: 1fr; }
  .footer .legal { flex-direction: column; gap: 10px; }
}

/* ---------- Placeholders ---------- */
.ph {
  background:
    repeating-linear-gradient(45deg, rgba(200,169,81,0.12) 0 1px, transparent 1px 10px),
    var(--bege-medio);
  border: 1px dashed rgba(200,169,81,0.55);
  color: var(--cinza);
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
  border-radius: 2px;
  min-height: 160px;
}
.ph.on-dark {
  background:
    repeating-linear-gradient(45deg, rgba(200,169,81,0.18) 0 1px, transparent 1px 10px),
    rgba(255,255,255,0.04);
  border-color: rgba(200,169,81,0.45);
  color: var(--dourado);
}

/* ---------- Form ---------- */
.input {
  display: block; width: 100%;
  background: var(--branco);
  border: 1.5px solid var(--bege-medio);
  border-radius: 3px;
  padding: 16px 18px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--preto);
  transition: border-color 180ms ease;
}
.input:focus { outline: none; border-color: var(--verde-militar); }
.input::placeholder { color: var(--cinza-claro); }
.field-label {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cinza); margin-bottom: 8px; display: block;
}

/* ---------- Cards ---------- */
.card {
  background: var(--branco);
  border: 1px solid var(--bege-medio);
  border-radius: 3px;
  padding: 28px;
}
.card.dark {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,169,81,0.2);
  color: var(--bege);
}

/* ---------- Utilitários ---------- */
.gold-rule { height: 1px; background: var(--dourado); opacity: 0.6; }
.gold-rule.thick { height: 2px; }
.center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ---------- Animação entrada ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.fade-up { animation: fadeUp 600ms ease both; }
.delay-1 { animation-delay: 80ms; }
.delay-2 { animation-delay: 160ms; }
.delay-3 { animation-delay: 240ms; }
.delay-4 { animation-delay: 320ms; }

/* ---------- WhatsApp floating button ---------- */
.wpp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.4), 0 4px 12px -2px rgba(37,211,102,0.45);
  z-index: 60;
  transition: transform 200ms ease, box-shadow 200ms ease;
  text-decoration: none;
}
.wpp-float:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 16px 32px -8px rgba(0,0,0,0.5), 0 6px 14px -2px rgba(37,211,102,0.6); }
.wpp-float svg { width: 32px; height: 32px; display: block; }
.wpp-float::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%; border: 2px solid #25D366;
  animation: wppPulse 2.2s ease-out infinite;
}
@keyframes wppPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wpp-float .tip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: #1C1C1C; color: #fff;
  font-family: var(--f-body); font-size: 13px; font-weight: 500;
  padding: 10px 14px; border-radius: 3px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 180ms ease;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.4);
}
.wpp-float .tip::after {
  content: ""; position: absolute; right: -5px; top: 50%; transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px; background: #1C1C1C;
}
.wpp-float:hover .tip { opacity: 1; }
@media (max-width: 860px) {
  .wpp-float { bottom: 90px; right: 16px; width: 54px; height: 54px; }
  .wpp-float svg { width: 28px; height: 28px; }
  .wpp-float .tip { display: none; }
}
@media (max-width: 720px) {
  :root { --pad-section: 64px; --pad-section-sm: 40px; }
  .wrap { padding: 0 22px; }
}

/* ---------- Captura (hero + ficha) ---------- */
.hero-cap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 80px;
}
.hero-cap .copy { max-width: 560px; }
.hero-cap h1 {
  font-family: var(--f-title);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.012em;
  font-size: clamp(38px, 4.6vw, 60px);
  text-transform: uppercase;
  color: var(--bege);
  margin-top: 22px;
}
.hero-cap h1 .gold { color: var(--dourado); }
.hero-cap .lede {
  font-size: 17px; line-height: 1.6;
  color: rgba(245,240,232,0.85);
  max-width: 480px;
  margin-top: 26px;
}
.hero-cap .lede b { color: var(--bege); font-weight: 600; }

.stats-stripe {
  display: flex; gap: 40px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(200,169,81,0.25);
}
.stats-stripe .stat .num {
  font-family: var(--f-title); font-weight: 700;
  font-size: 36px; color: var(--dourado); line-height: 1;
}
.stats-stripe .stat .lbl {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  color: rgba(245,240,232,0.6); text-transform: uppercase; margin-top: 6px;
}

.ficha {
  background: var(--bege);
  color: var(--preto);
  padding: 36px 36px 32px;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  position: relative;
  border-top: 4px solid var(--dourado);
}
.ficha::before {
  content: "";
  position: absolute; top: -4px; left: -4px; right: -4px; bottom: -4px;
  border: 1px solid rgba(200,169,81,0.35);
  border-radius: 6px;
  pointer-events: none;
}
.ficha-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 22px; padding-bottom: 18px;
  border-bottom: 1px dashed rgba(28,28,28,0.15);
}
.ficha-head .tit {
  font-family: var(--f-title); font-weight: 600;
  font-size: 20px; text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--verde-militar); line-height: 1.1;
}
.ficha-head .sub {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em;
  color: var(--cinza); text-transform: uppercase; margin-top: 6px;
}
.ficha-head .stamp {
  font-family: var(--f-tag); font-size: 11px; letter-spacing: 0.18em;
  color: var(--dourado); border: 1.5px solid var(--dourado);
  padding: 6px 10px; border-radius: 2px;
  transform: rotate(-4deg);
  white-space: nowrap;
}
.ficha .fields { display: flex; flex-direction: column; gap: 16px; }
.ficha .ddi-row {
  display: grid; grid-template-columns: 80px 1fr; gap: 8px;
}
.ficha .small-print {
  margin-top: 14px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em;
  color: var(--cinza); line-height: 1.6;
}
.ficha .ok {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 18px;
}
.ficha .ok-check {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  border: 1.5px solid var(--verde-militar); border-radius: 2px;
  display: grid; place-items: center;
}
.ficha .ok-check::after {
  content: ""; width: 8px; height: 4px;
  border-left: 2px solid var(--verde-militar);
  border-bottom: 2px solid var(--verde-militar);
  transform: rotate(-45deg) translate(1px,-1px);
}

.deploy {
  display: flex; gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.deploy-card {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(200,169,81,0.25);
  padding: 14px 18px;
  border-radius: 3px;
  display: flex; gap: 14px; align-items: center;
}
.deploy-card .date {
  font-family: var(--f-title); font-weight: 700;
  font-size: 32px; line-height: 1; color: var(--dourado);
}
.deploy-card .meta {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(245,240,232,0.7);
  line-height: 1.5;
}
.deploy-card .meta b { color: var(--bege); font-weight: 600; }
.deploy-card .date small {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em;
  color: rgba(245,240,232,0.7); display: block; margin-top: 4px;
}

.fomo-card { align-items: flex-start; gap: 12px; }
.fomo-card .meta b { color: var(--dourado); font-family: var(--f-title); font-weight: 700; font-size: 18px; letter-spacing: 0.02em; }
.live-tag {
  display: inline-block;
  font-family: var(--f-tag); font-size: 10px; letter-spacing: 0.22em;
  color: #ff5e5e; margin-bottom: 4px;
}
.live-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ff5e5e;
  box-shadow: 0 0 0 0 rgba(255,94,94,0.6);
  margin-top: 5px; flex-shrink: 0;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,94,94,0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(255,94,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,94,94,0); }
}

/* ---------- Section heads ---------- */
.section-head {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 18px; margin-bottom: 48px;
}
.section-head.center { align-items: center; text-align: center; }
.section-head h2 {
  font-family: var(--f-title); font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.02; letter-spacing: -0.005em;
  text-transform: uppercase;
  max-width: 760px;
}

/* ---------- Comparação VS ---------- */
.vs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; align-items: stretch;
}
.vs .col { padding: 36px 32px; border-radius: 3px; }
.vs .col.win {
  background: var(--verde-militar); color: var(--bege);
  box-shadow: 0 20px 40px -20px rgba(26,58,26,0.4);
  position: relative;
}
.vs .col.lose {
  background: var(--branco); color: var(--preto);
  border: 1px solid var(--bege-medio);
}
.vs .col h3 {
  font-family: var(--f-title); font-weight: 600;
  font-size: 24px; text-transform: uppercase; letter-spacing: 0.005em;
  line-height: 1.05;
}
.vs .col .sub {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; margin-top: 6px;
}
.vs .col.win .sub { color: var(--dourado); }
.vs .col.lose .sub { color: var(--cinza); }
.vs .col ul { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 0; }
.vs .col li {
  position: relative;
  padding-left: 36px;
  font-size: 14px; line-height: 1.6;
  padding-bottom: 14px; padding-top: 14px;
  border-bottom: 1px solid rgba(200,169,81,0.15);
}
.vs .col.lose li { border-color: var(--bege-medio); color: var(--cinza); }
.vs .col li:first-child { padding-top: 0; }
.vs .col li:last-child { border: none; padding-bottom: 0; }
.vs .ico {
  position: absolute; left: 0; top: 14px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%; font-size: 11px; font-weight: 700;
}
.vs .col li:first-child .ico { top: 0; }
.vs .col.win .ico { background: var(--dourado); color: var(--verde-militar); }
.vs .col.lose .ico { background: #efe6dc; color: var(--cinza); }
.vs .col.win::after {
  content: "RECOMENDADO";
  position: absolute; top: -12px; right: 24px;
  background: var(--dourado); color: var(--verde-militar);
  font-family: var(--f-tag); font-size: 11px; letter-spacing: 0.18em;
  padding: 6px 12px; border-radius: 2px;
}
@media (max-width: 860px) {
  .vs { grid-template-columns: 1fr; }
}

/* ---------- 4 Fases ---------- */
.phases {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.phase {
  background: var(--branco);
  border: 1px solid var(--bege-medio);
  padding: 28px 24px 32px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.phase::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--dourado);
}
.phase .nb {
  font-family: var(--f-title); font-weight: 700;
  font-size: 64px; line-height: 1;
  -webkit-text-stroke: 1px var(--verde-militar);
  color: transparent;
}
.phase h4 {
  font-family: var(--f-title); font-weight: 600;
  font-size: 22px; text-transform: uppercase; letter-spacing: 0.01em;
  margin: 14px 0 8px;
}
.phase p { font-size: 14px; line-height: 1.55; color: var(--cinza); }
.phase .tag-mono {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--dourado);
  display: block; margin-top: 16px;
}
@media (max-width: 860px) {
  .phases { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .phases { grid-template-columns: 1fr; }
}

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; padding: 96px 0; }
.final-cta h2 {
  font-family: var(--f-title); font-weight: 700;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1; text-transform: uppercase;
  margin-bottom: 14px; color: var(--bege);
}
.final-cta h2 .gold { color: var(--dourado); }
.final-cta p {
  max-width: 620px; margin: 0 auto;
  color: rgba(245,240,232,0.8); font-size: 16px;
}

/* ---------- Sticky CTA mobile ---------- */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--verde-militar); padding: 12px 16px;
  border-top: 2px solid var(--dourado);
  z-index: 40;
}
@media (max-width: 860px) {
  .hero-cap { grid-template-columns: 1fr; gap: 36px; padding-bottom: 60px; }
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ---------- Módulos (cards numerados) ---------- */
.modules {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.mod {
  background: var(--branco);
  border: 1px solid var(--bege-medio);
  border-radius: 3px;
  padding: 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.mod .num {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--dourado); margin-bottom: 14px;
}
.mod h4 {
  font-family: var(--f-title); font-weight: 600;
  font-size: 22px; line-height: 1.05;
  text-transform: uppercase; letter-spacing: 0.005em;
  margin-bottom: 12px;
}
.mod p { font-size: 14px; line-height: 1.6; color: var(--cinza); }
.mod .ico {
  width: 44px; height: 44px;
  border: 2px solid var(--verde-militar); border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-title); font-weight: 700;
  color: var(--verde-militar); font-size: 20px;
  margin-bottom: 18px;
}
@media (max-width: 860px) { .modules { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .modules { grid-template-columns: 1fr; } }

/* ---------- Maciel (grid foto + bio) ---------- */
.maciel {
  display: grid; grid-template-columns: 1fr 1.35fr; gap: 56px;
  align-items: center;
}
.maciel .photo { aspect-ratio: 4/5; min-height: 460px; }
.maciel blockquote {
  font-family: var(--f-title); font-weight: 500; font-style: italic;
  font-size: 22px; color: var(--dourado);
  margin-top: 22px; line-height: 1.3;
  border-left: 3px solid var(--dourado); padding-left: 18px;
}
@media (max-width: 860px) { .maciel { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Escolas (grid logos) ---------- */
.schools {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
.schools .school {
  aspect-ratio: 4/3;
  border: 1px dashed rgba(200,169,81,0.45);
  background: rgba(255,255,255,0.04);
  border-radius: 3px;
  display: grid; place-items: center;
  text-align: center;
  padding: 14px;
}
.schools .school .nm {
  font-family: var(--f-title); font-weight: 600;
  font-size: 18px; color: var(--bege);
  text-transform: uppercase; letter-spacing: 0.02em;
}
.schools .school .sub {
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: 0.18em; color: var(--dourado);
  text-transform: uppercase; margin-top: 4px;
}
@media (max-width: 720px) { .schools { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .schools { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Depoimentos ---------- */
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testi {
  background: var(--branco); border: 1px solid var(--bege-medio);
  padding: 26px; border-radius: 3px;
  display: flex; flex-direction: column; gap: 14px;
}
.testi .stars { color: var(--dourado); font-size: 14px; letter-spacing: 4px; }
.testi p { font-size: 15px; line-height: 1.6; color: var(--preto); }
.testi p::before {
  content: "\201C"; font-family: var(--f-title); font-size: 48px;
  color: var(--dourado); line-height: 0; vertical-align: -22px; margin-right: 4px;
}
.testi .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto; padding-top: 14px;
  border-top: 1px dashed rgba(28,28,28,0.12);
}
.testi .ava {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--verde-militar); color: var(--dourado);
  display: grid; place-items: center;
  font-family: var(--f-title); font-weight: 700; font-size: 16px;
}
.testi .who .nm { font-family: var(--f-title); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.02em; }
.testi .who .esc { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; color: var(--cinza); text-transform: uppercase; margin-top: 2px; }
@media (max-width: 860px) { .testimonials { grid-template-columns: 1fr; } }

/* ---------- Professores ---------- */
.professors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.prof-card {
  display: flex;
  flex-direction: column;
}
.prof-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  border-radius: 3px;
}
.prof-info {
  padding: 14px 0 0;
  border-top: 2px solid var(--dourado);
  margin-top: 14px;
}
.prof-name {
  font-family: var(--f-title);
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--preto);
}
.prof-subject {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--preto);
  margin-top: 5px;
}
@media (max-width: 860px) { .professors { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 480px) { .professors { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

/* ---------- FAQ ---------- */
.faq details {
  border-bottom: 1px solid var(--bege-medio);
  padding: 22px 0;
}
.faq details summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-title); font-weight: 600;
  font-size: 19px; text-transform: uppercase;
  color: var(--preto); letter-spacing: 0.005em;
  gap: 18px;
}
.faq details summary::-webkit-details-marker { display: none; }
.faq details summary::after {
  content: "+"; flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1.5px solid var(--verde-militar); border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-title); font-weight: 500;
  font-size: 22px; color: var(--verde-militar); line-height: 1;
  transition: transform 200ms;
}
.faq details[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq details > div {
  margin-top: 16px; padding-right: 60px;
  color: var(--cinza); font-size: 15px; line-height: 1.7;
}
.faq details > div ul { padding-left: 18px; margin-top: 8px; }
.faq details > div li { margin-bottom: 6px; }
@media (max-width: 720px) {
  .faq details summary { font-size: 16px; }
  .faq details > div { padding-right: 0; }
}
