:root {
  --bg-top: #07131a;
  --bg-bottom: #02060a;
  --surface: rgba(8, 18, 26, 0.78);
  --surface-strong: rgba(11, 24, 34, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --border: rgba(150, 214, 255, 0.14);
  --text-main: #eef5fb;
  --text-soft: #adc0d0;
  --text-dim: #7f93a3;
  --accent: #f06f5a;
  --accent-strong: #d95743;
  --accent-cool: #60e0d4;
  --success: #67f4b3;
  --brand-coral: #f06f5a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  font-family: 'Rajdhani', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(96, 224, 212, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 138, 42, 0.2), transparent 32%),
    linear-gradient(180deg, var(--bg-top) 0%, #061018 34%, var(--bg-bottom) 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 88%);
}

.landing-shell {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: max(14px, env(safe-area-inset-top)) 0 max(34px, env(safe-area-inset-bottom));
}

.hero-card,
.benefits-card,
.flow-card,
.concursos-card,
.planos-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(10, 19, 27, 0.92), rgba(4, 9, 14, 0.96));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card::after,
.planos-card::after {
  content: '';
  position: absolute;
  inset: auto -10% -120px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 184, 78, 0.22), transparent 68%);
  pointer-events: none;
}

.hero-card {
  padding: 18px;
}

.topbar,
.hero-grid,
.section-head,
.benefits-grid,
.flow-grid,
.concurso-grid,
.planos-grid,
.hero-proof,
.hud-grid {
  display: grid;
}

.topbar {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
}

.eyebrow,
.section-kicker,
.hero-pill,
.hud-label,
.flow-badge,
.benefit-index,
.plano-tag,
.concurso-topline,
.top-link {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.76rem;
}

.brand-subline {
  display: block;
  margin-top: 4px;
  color: var(--text-dim);
  font-size: 0.86rem;
}

.brand-block {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.92rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--text-main);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

.hero-grid {
  gap: 18px;
  margin-top: 18px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 0.5rem 0.92rem;
  border-radius: 999px;
  color: #fff7e8;
  background: linear-gradient(135deg, rgba(248, 184, 78, 0.18), rgba(96, 224, 212, 0.12));
  border: 1px solid rgba(248, 184, 78, 0.3);
  font-size: 0.78rem;
}

.hero-copy h1,
.section-head h2 {
  margin: 14px 0 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
}

.hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.45rem, 11vw, 4.95rem);
  line-height: 0.96;
}

.hero-text,
.section-text,
.proof-card span,
.hud-card p,
.benefit-card p,
.flow-step p,
.concurso-meta,
.plano-subtitle {
  color: var(--text-soft);
  line-height: 1.56;
}

.hero-text {
  max-width: 46ch;
  margin: 16px 0 0;
  font-size: 1rem;
}

.hero-note {
  margin: 14px 0 0;
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.45;
}

.study-preview {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(96, 224, 212, 0.2);
  background: linear-gradient(180deg, rgba(9, 28, 38, 0.96), rgba(5, 13, 20, 0.98));
}

.brand-showcase {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 14px;
  min-height: 100%;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(96, 224, 212, 0.2);
  background:
    radial-gradient(circle at 50% 24%, rgba(248, 184, 78, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(9, 28, 38, 0.96), rgba(5, 13, 20, 0.98));
}

.showcase-mark {
  width: min(230px, 56vw);
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.35));
}

.showcase-copy { text-align: center; }
.showcase-copy strong { display: block; max-width: 22ch; margin-top: 8px; color: #fff; font-size: 1.18rem; line-height: 1.2; }

.showcase-list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.showcase-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-list span { color: var(--accent-cool); font-family: 'Orbitron', sans-serif; font-size: 0.75rem; }

.preview-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.82rem;
}

.preview-head strong { color: var(--accent-cool); }
.preview-question { margin: 8px 0; color: #fff; font-size: 1.15rem; font-weight: 700; line-height: 1.3; }
.preview-option { padding: 12px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; color: var(--text-soft); background: rgba(255, 255, 255, 0.03); }
.preview-option.is-correct { border-color: rgba(103, 244, 179, 0.42); color: #d8fff0; background: rgba(103, 244, 179, 0.09); }
.preview-feedback { display: flex; gap: 8px; align-items: flex-start; margin-top: 6px; color: var(--text-soft); font-size: 0.9rem; line-height: 1.4; }
.preview-feedback span { display: inline-grid; place-items: center; flex: 0 0 20px; height: 20px; border-radius: 50%; color: #032b1e; background: var(--success); font-weight: 800; }

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.btn,
.concurso-link,
.plano-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.concurso-link:hover,
.plano-cta:hover,
.top-link:hover {
  transform: translateY(-1px);
}

.btn-primary,
.plano-cta-featured {
  color: #081018;
  background: linear-gradient(135deg, #ffd168 0%, #ff992f 100%);
  box-shadow: 0 16px 34px rgba(255, 153, 47, 0.28);
}

.btn-secondary {
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.hero-proof,
.hud-grid,
.benefits-grid,
.flow-grid,
.concurso-grid,
.planos-grid {
  gap: 12px;
}

.proof-card,
.hud-card,
.benefit-card,
.flow-step,
.concurso-item,
.plano-item {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface);
}

.proof-card,
.benefit-card,
.flow-step,
.concurso-item,
.plano-item {
  padding: 18px;
}

.proof-card strong,
.hud-card strong,
.benefit-card strong,
.flow-step strong,
.concurso-item h3,
.plano-item h3 {
  display: block;
  color: #ffffff;
}

.final-cta {
  display: grid;
  justify-items: start;
  gap: 14px;
  margin-top: 16px;
  padding: 24px 18px;
  border: 1px solid rgba(248, 184, 78, 0.25);
  border-radius: 28px;
  background: radial-gradient(circle at top right, rgba(248, 184, 78, 0.2), transparent 36%), linear-gradient(180deg, rgba(31, 22, 10, 0.94), rgba(12, 10, 7, 0.98));
}

.final-cta h2 { max-width: 18ch; margin: 0; font-family: 'Orbitron', sans-serif; font-size: clamp(1.5rem, 6vw, 2.35rem); line-height: 1.05; }

.final-cta .btn { width: auto; min-width: 210px; }

.proof-card strong,
.benefit-card strong,
.flow-step strong {
  font-size: 1.08rem;
}

.proof-card span {
  display: block;
  margin-top: 6px;
  font-size: 0.94rem;
}

.hero-panel {
  display: grid;
  gap: 12px;
}

.hud-card {
  padding: 18px;
  background: linear-gradient(180deg, rgba(10, 23, 33, 0.94), rgba(8, 16, 24, 0.96));
}

.hud-card-highlight {
  background:
    radial-gradient(circle at top right, rgba(248, 184, 78, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(17, 33, 46, 0.98), rgba(10, 20, 30, 0.98));
  border-color: rgba(248, 184, 78, 0.3);
}

.hud-label,
.flow-badge,
.benefit-index {
  color: var(--accent-cool);
  font-size: 0.72rem;
}

.hud-card strong {
  margin-top: 10px;
  font-size: 1.26rem;
}

.hud-card p,
.concurso-meta,
.plano-subtitle {
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.hero-track {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(96, 224, 212, 0.14);
  background: linear-gradient(180deg, rgba(6, 18, 25, 0.88), rgba(5, 11, 17, 0.96));
}

.track-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.track-head span {
  color: var(--text-dim);
  font-size: 0.86rem;
}

.track-head strong {
  font-size: 1.02rem;
}

.track-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.track-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-weight: 700;
}

.track-step.is-on {
  color: #062029;
  background: linear-gradient(135deg, #79f0e7, #8fc7ff);
}

.benefits-card,
.flow-card,
.concursos-card,
.planos-card {
  margin-top: 16px;
  padding: 18px;
}

.section-head {
  gap: 8px;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.5rem, 6vw, 2.45rem);
  line-height: 1;
}

.section-text {
  margin: 0;
  font-size: 0.96rem;
}

.benefit-card,
.flow-step {
  min-height: 188px;
}

.benefit-index {
  display: inline-block;
  margin-bottom: 14px;
}

.benefit-card p,
.flow-step p {
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.section-head-stack {
  gap: 10px;
}

.flow-step {
  background:
    linear-gradient(180deg, rgba(8, 18, 28, 0.95), rgba(6, 12, 18, 0.98));
}

.flow-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(96, 224, 212, 0.1);
  border: 1px solid rgba(96, 224, 212, 0.18);
}

.concurso-item {
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.concurso-item-live {
  background:
    radial-gradient(circle at top right, rgba(96, 224, 212, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(8, 29, 34, 0.96), rgba(6, 16, 23, 0.98));
}

.concurso-item-soon {
  background:
    radial-gradient(circle at top right, rgba(248, 184, 78, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(35, 23, 8, 0.94), rgba(20, 13, 7, 0.98));
}

.concurso-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  font-size: 0.74rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 16px rgba(103, 244, 179, 0.72);
}

.status-dot-soon {
  background: var(--accent);
  box-shadow: 0 0 16px rgba(248, 184, 78, 0.72);
}

.concurso-item h3,
.plano-item h3 {
  margin: 14px 0 0;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.35rem;
}

.concurso-link,
.plano-cta {
  margin-top: auto;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.plano-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.plano-item-featured {
  background:
    radial-gradient(circle at top right, rgba(248, 184, 78, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(34, 21, 7, 0.96), rgba(16, 10, 6, 0.98));
  border-color: rgba(248, 184, 78, 0.24);
}

.plano-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  color: #fff6e2;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
}

.plano-tag-featured {
  background: rgba(248, 184, 78, 0.16);
}

.plano-preco {
  margin: 10px 0 0;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 9vw, 3rem);
  line-height: 1;
  color: #ffffff;
}

.plano-lista {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.plano-lista li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.plano-lista li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-strong);
}

@media (min-width: 700px) {
  .landing-shell {
    width: min(1180px, calc(100% - 40px));
    padding-top: 22px;
  }

  .hero-card,
  .benefits-card,
  .flow-card,
  .concursos-card,
  .planos-card {
    border-radius: 30px;
  }

  .hero-card,
  .benefits-card,
  .flow-card,
  .concursos-card,
  .planos-card,
  .proof-card,
  .hud-card,
  .benefit-card,
  .flow-step,
  .concurso-item,
  .plano-item {
    padding: 22px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: auto;
    min-width: 210px;
  }

  .hero-proof,
  .hud-grid,
  .benefits-grid,
  .concurso-grid,
  .planos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .study-preview { padding: 24px; }

  .final-cta { padding: 28px; }

  .flow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .track-line {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 940px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 20px;
  }

  .section-head {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: end;
  }

  .section-text {
    text-align: right;
  }
}

@media (max-width: 420px) {
  .landing-shell {
    width: min(100% - 14px, 1180px);
  }

  .hero-card,
  .benefits-card,
  .flow-card,
  .concursos-card,
  .planos-card {
    border-radius: 22px;
    padding: 16px;
  }

  .proof-card,
  .hud-card,
  .benefit-card,
  .flow-step,
  .concurso-item,
  .plano-item,
  .hero-track {
    padding: 16px;
    border-radius: 18px;
  }

  .btn,
  .concurso-link,
  .plano-cta,
  .top-link {
    min-height: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 11vw, 2.8rem);
  }
}

/* Direção editorial da landing: estudo claro, sem aparência de painel técnico. */
body {
  font-family: 'Inter', sans-serif;
  color: #123244;
  background: #f3f8f8;
}

body::before { display: none; }

.hero-card,
.flow-card,
.concursos-card {
  border-color: #d8e7e9;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(10, 52, 69, 0.09);
  backdrop-filter: none;
}

.hero-card::after { background: radial-gradient(circle, rgba(18, 185, 176, 0.14), transparent 68%); }

.brand-block { color: #063247; }
.brand-subline, .hero-note, .section-text, .hero-text, .concurso-meta, .path-step p, .catalog-note { color: #527080; }
.brand-mark { width: 42px; height: 42px; }
.top-link { color: #0b6470; background: #eef8f8; border-color: #cde6e6; }
.hero-pill { color: #087a7a; background: #e6f8f6; border-color: #b9e9e3; }
.section-kicker { color: var(--brand-coral); }
.status-dot-soon { background: var(--brand-coral); box-shadow: 0 0 16px rgba(240, 111, 90, .42); }
.hero-copy h1, .section-head h2, .final-cta h2, .concurso-item h3 { color: #063247; }
.showcase-mark { width: min(150px, 42vw); filter: none; }
.brand-showcase { border-color: #cde6e6; background: linear-gradient(160deg, #eefafa, #e3f4f2); }
.showcase-copy strong { color: #063247; }
.showcase-list li { color: #365667; background: rgba(255,255,255,.7); border-color: #cde6e6; }
.btn-primary { color: #fff; background: #0b878a; box-shadow: 0 12px 24px rgba(11, 135, 138, .2); }
.btn-secondary { color: #0b6470; border-color: #a7d8d8; background: #fff; }
.path-step, .path-step:last-child { border-color: #dcebed; }
.path-step strong { color: #123244; }
.concurso-item, .concurso-item-live { border-color: #d5e8e9; background: #f8fcfc; }
.concurso-topline { color: #0b6470; }
.concurso-topline .status-dot { box-shadow: none; }
.concurso-link { color: #0b6470; border-color: #b6dddd; background: #fff; }
.final-cta { border-color: #b7e4df; background: #e6f7f5; }

/* Landing de app: abrir, entrar ou escolher catálogo — sem rolagem institucional. */
.hero-grid { grid-template-columns: minmax(0, 1fr) !important; }
.hero-copy { max-width: 680px; }
.hero-copy h1 { max-width: 13ch; }
.concursos-card { margin-top: 12px; }
.concurso-item { min-height: 0; }

.app-preview-card {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  padding: 18px;
  border: 1px solid #d8e7e9;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(10, 52, 69, 0.07);
}

.app-preview-card::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  top: -150px;
  right: -70px;
  border: 1px solid rgba(18, 185, 176, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(18, 185, 176, .045), 0 0 0 56px rgba(18, 185, 176, .025);
  animation: orbit-signal 7s linear infinite;
}

.app-preview-head { position: relative; z-index: 1; }
.app-feature-grid { display: grid; gap: 10px; position: relative; z-index: 1; }
.app-feature {
  min-height: 162px;
  padding: 17px;
  border: 1px solid #d6e9e9;
  border-radius: 20px;
  background: #f8fcfc;
  animation: app-feature-in .36s both;
}
.app-feature:nth-child(2) { animation-delay: .07s; }
.app-feature:nth-child(3) { animation-delay: .14s; }
.feature-icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; color: #fff; background: #0b878a; font-weight: 800; }
.feature-label { display: block; margin-top: 14px; color: #0b878a; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.app-feature strong { display: block; margin-top: 7px; color: #063247; font-size: 1.08rem; line-height: 1.22; }
.app-feature p { margin: 7px 0 0; color: #58727e; font-size: .92rem; line-height: 1.45; }
.mini-progress { height: 8px; margin-top: 19px; overflow: hidden; border-radius: 999px; background: #d8eeee; }
.mini-progress span { display: block; width: 68%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #0b878a, #12b9b0); animation: progress-loop 3.2s ease-in-out infinite; }

@keyframes app-feature-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes progress-loop { 0%,100% { transform: scaleX(.68); transform-origin: left; } 50% { transform: scaleX(1); transform-origin: left; } }
@keyframes orbit-signal { to { transform: rotate(360deg); } }

@media (min-width: 700px) { .app-preview-card { padding: 22px; } .app-feature-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (prefers-reduced-motion: reduce) { .app-preview-card::after, .app-feature, .mini-progress span { animation: none; } }

.app-footer {
  display: grid;
  gap: 18px;
  margin: 12px 0 0;
  padding: 24px 18px max(24px, env(safe-area-inset-bottom));
  color: #5a747e;
  border-top: 1px solid #d5e6e8;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #063247;
  font: 700 1rem 'Space Grotesk', sans-serif;
  text-decoration: none;
}

.footer-brand img { width: 28px; height: 28px; object-fit: contain; }
.app-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; }
.app-footer nav a { color: #0b6470; font-size: .88rem; font-weight: 700; text-decoration: none; }
.app-footer nav a:hover { color: #f06f5a; }
.app-footer nav a:focus-visible { outline: 3px solid rgba(240,111,90,.5); outline-offset: 3px; border-radius: 4px; }
.app-footer p { margin: 0; font-size: .78rem; }

@media (min-width: 700px) {
  .app-footer { grid-template-columns: 1fr auto 1fr; align-items: center; padding-inline: 4px; text-align: left; }
  .app-footer p { text-align: right; }
}

.brand-block,
.hero-copy h1,
.section-head h2,
.final-cta h2,
.concurso-item h3,
.showcase-list span,
.path-step > span {
  font-family: 'Space Grotesk', sans-serif;
}

.hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(2.35rem, 8vw, 4.45rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.study-path {
  display: grid;
  gap: 10px;
}

.path-step {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.path-step:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.path-step > span {
  color: var(--accent-cool);
  font-size: 0.9rem;
  font-weight: 700;
}

.path-step strong {
  display: block;
  color: #fff;
  font-size: 1.03rem;
  font-weight: 700;
}

.path-step p {
  margin: 5px 0 0;
  color: var(--text-muted);
  line-height: 1.55;
}

.catalog-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 16px 2px 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

@media (min-width: 760px) {
  .study-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .path-step,
  .path-step:last-child {
    min-height: 146px;
    padding: 20px 16px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .path-step + .path-step {
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}
