/* ============================================
   DLTEC 2026 — Design System
   Tech Premium com Alma Corporativa
   ============================================ */

:root {
  --blue: #007BFF;
  --blue-soft: #4DA3FF;
  --blue-glow: rgba(0, 123, 255, 0.12);
  --blue-glow-strong: rgba(0, 123, 255, 0.25);
  --navy: #0D1B2A;
  --navy-deep: #070E18;
  --graphite: #1E1E1E;
  --graphite-border: #2A2A2A;
  --light-bg: #F4F4F4;
  --light-bg-alt: #EAEEF2;
  --white: #FFFFFF;
  --text-secondary: #B0B0B0;
  --text-muted: #6B7280;
  --text-dark: #0D1B2A;
  --text-dark-secondary: #4A5568;
  --green: #2ECC71;
  --border-light: rgba(255,255,255,0.06);
  --border-dark: rgba(0,0,0,0.08);
  --heading: 'Poppins', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'Roboto Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-dltec {
  background: rgba(7, 14, 24, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.85rem 0;
  z-index: 1000;
  transition: all 0.3s;
}

.navbar-dltec.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.navbar-brand-dltec {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.logo-shield {
  width: 34px;
  height: 34px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.3px;
}

.nav-link-d {
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-secondary) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-link-d:hover { color: var(--white) !important; }
.nav-link-d.active { color: var(--blue-soft) !important; }

.btn-nav-login {
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.42rem 1.2rem;
  text-decoration: none;
  transition: all 0.2s;
  margin-right: 0.5rem;
}
.btn-nav-login:hover { border-color: rgba(255,255,255,0.35); color: var(--white); }

.btn-nav-cta {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--white);
  background: var(--blue);
  border: none;
  border-radius: 8px;
  padding: 0.48rem 1.3rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-nav-cta:hover { background: #1a8aff; color: var(--white); }

/* Mobile menu toggle */
.navbar-toggler-dltec {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 0.35rem 0.55rem;
  cursor: pointer;
  display: none;
}
.navbar-toggler-dltec svg { stroke: var(--text-secondary); }

@media (max-width: 991px) {
  .navbar-toggler-dltec { display: block; }
  .nav-desktop { display: none !important; }
}

/* ============================================
   HERO — Dark Section
   ============================================ */
.hero {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  padding: 9rem 0 5.5rem;
}

/* Grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,123,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,123,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Glow accents */
.hero-glow-1 {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,123,255,0.08) 0%, transparent 65%);
  top: -20%; right: -15%;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,123,255,0.05) 0%, transparent 65%);
  bottom: -10%; left: 5%;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,123,255,0.08);
  border: 1px solid rgba(0,123,255,0.15);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--blue-soft);
  margin-bottom: 2rem;
  letter-spacing: 0.8px;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-h1 {
  font-family: var(--heading);
  font-weight: 900;
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  line-height: 1.06;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 620px;
}

.hero-h1 .grad {
  background: linear-gradient(135deg, var(--blue) 0%, #5BB8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(0,123,255,0.35);
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,123,255,0.5);
  color: var(--white);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.9rem 1.2rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }

/* Hero right — Marcelo placeholder + floating elements */
.hero-visual {
  position: relative;
  z-index: 2;
}

.marcelo-frame {
  position: relative;
  max-width: 400px;
  margin-left: auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.marcelo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(170deg, #13243a 0%, #0a1628 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2rem;
  text-align: center;
}
.marcelo-placeholder svg { opacity: 0.2; }
.marcelo-placeholder span {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.marcelo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(7,14,24,0.95));
  z-index: 3;
}

.marcelo-name {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.marcelo-role {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--blue-soft);
  letter-spacing: 0.5px;
}

/* Floating stat cards */
.float-card {
  position: absolute;
  background: rgba(30,30,30,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.float-card-left {
  bottom: 6rem;
  left: -2.5rem;
}

.float-card-right {
  top: 2rem;
  right: -1.5rem;
}

.fc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--blue-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-number {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
}

.fc-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

/* ============================================
   STATS BAR — Transition zone
   ============================================ */
.stats-bar {
  background: var(--navy);
  border-bottom: 1px solid var(--border-light);
  padding: 2.2rem 0;
  position: relative;
  z-index: 2;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--blue);
  letter-spacing: -0.5px;
}

.stat-lbl {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
}

/* ============================================
   SECTION: DIFERENCIAIS — Light
   ============================================ */
.section-light {
  background: var(--white);
  padding: 5.5rem 0;
  position: relative;
}

.section-alt {
  background: var(--light-bg);
  padding: 5.5rem 0;
  position: relative;
}

.sec-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.sec-title {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.sec-title-white {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.sec-sub {
  font-size: 1rem;
  color: var(--text-dark-secondary);
  max-width: 520px;
  line-height: 1.7;
}

.sec-sub-white {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
}

/* Feature cards — light */
.feat-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}

.feat-card:hover {
  border-color: rgba(0,123,255,0.2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.feat-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(0,123,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.feat-icon svg { width: 22px; height: 22px; stroke: var(--blue); stroke-width: 2; fill: none; }

.feat-card h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.feat-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-dark-secondary);
  margin: 0;
}

/* ============================================
   SECTION: TRILHAS — Dark with Roadmap
   ============================================ */
.section-dark {
  background: var(--navy);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,123,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,123,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Trilha tabs */
.trilha-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.trilha-tab {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 0.6rem 1.3rem;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trilha-tab:hover {
  background: rgba(255,255,255,0.07);
  color: var(--white);
}

.trilha-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,123,255,0.3);
}

.trilha-tab-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-cisco { background: #049FD9; }
.dot-linux { background: #D4640A; }
.dot-net { background: #007BFF; }
.dot-cloud { background: #6C5CE7; }

.trilha-tab.active .trilha-tab-dot { background: var(--white); }

/* Trilha content panels */
.trilha-panel { display: none; }
.trilha-panel.active { display: block; }

/* Trilha header info */
.trilha-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.trilha-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.trilha-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
}
.trilha-meta-item svg { width: 14px; height: 14px; stroke: var(--blue-soft); stroke-width: 2; fill: none; }

.trilha-cert-target {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--blue-soft);
  background: var(--blue-glow);
  border: 1px solid rgba(0,123,255,0.15);
  border-radius: 6px;
  padding: 0.35rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.trilha-cert-target svg { width: 13px; height: 13px; stroke: var(--blue-soft); stroke-width: 2; fill: none; }

/* Roadmap timeline */
.roadmap {
  position: relative;
  padding-left: 2.2rem;
}

.roadmap::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue) 0%, rgba(0,123,255,0.15) 100%);
}

.roadmap-step {
  position: relative;
  margin-bottom: 1rem;
  padding: 1.2rem 1.4rem;
  background: rgba(30,30,30,0.5);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: all 0.3s;
  cursor: default;
}

.roadmap-step:hover {
  border-color: rgba(0,123,255,0.2);
  background: rgba(30,30,30,0.8);
}

.roadmap-step:last-child { margin-bottom: 0; }

/* Step node on timeline */
.roadmap-step::before {
  content: '';
  position: absolute;
  left: -2.2rem;
  top: 1.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--blue);
  z-index: 2;
  margin-left: -3px;
}

.roadmap-step.step-start::before {
  background: var(--blue);
  box-shadow: 0 0 8px rgba(0,123,255,0.5);
  width: 12px; height: 12px;
  margin-left: -4px;
  top: 1.38rem;
}

.roadmap-step.step-end::before {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 8px rgba(46,204,113,0.5);
  width: 12px; height: 12px;
  margin-left: -4px;
  top: 1.38rem;
}

.step-level {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.step-level.level-start { color: var(--blue-soft); }
.step-level.level-end { color: var(--green); }

.step-name {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.step-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.step-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.6rem;
}

.step-mod {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
}

/* CTA inside trilha */
.trilha-cta {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.trilha-cta-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.trilha-cta-text strong {
  color: var(--white);
  font-weight: 600;
}

.btn-trilha {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--blue-soft);
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1.5px solid rgba(0,123,255,0.3);
  border-radius: 10px;
  padding: 0.65rem 1.5rem;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-trilha:hover {
  background: var(--blue-glow);
  border-color: var(--blue);
  color: var(--blue-soft);
}

/* Preview badge */
.preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.preview-badge svg { width: 12px; height: 12px; stroke: var(--text-muted); stroke-width: 2; fill: none; }

/* Roadmap "showing X of Y" footer */
.roadmap-more {
  position: relative;
  margin-top: 0.6rem;
  padding: 1rem 1.4rem;
  padding-left: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.roadmap-more::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  width: 2px;
  height: 100%;
  background: repeating-linear-gradient(
    180deg,
    rgba(0,123,255,0.15) 0px,
    rgba(0,123,255,0.15) 4px,
    transparent 4px,
    transparent 10px
  );
  margin-left: -3px;
}

.roadmap-more-text {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.roadmap-more-text strong {
  color: var(--text-secondary);
  font-weight: 600;
}

.btn-ver-trilha {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--blue-soft);
  text-decoration: none;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(0,123,255,0.2);
  border-radius: 8px;
  transition: all 0.25s;
}
.btn-ver-trilha:hover {
  background: var(--blue-glow);
  border-color: rgba(0,123,255,0.4);
  color: var(--blue-soft);
}

@media (max-width: 768px) {
  .trilha-header { flex-direction: column; gap: 1rem; }
  .roadmap { padding-left: 1.8rem; }
  .roadmap-step { padding: 1rem; }
}

/* ============================================
   SECTION: MARCELO — Light (Autoridade)
   ============================================ */
.authority-section {
  background: var(--white);
  padding: 5.5rem 0;
}

.authority-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #e8edf2 0%, #d5dde6 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--border-dark);
}
.authority-img-placeholder svg { opacity: 0.15; }
.authority-img-placeholder span {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cred-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.cred-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: var(--text-dark-secondary);
  line-height: 1.5;
}

.cred-check {
  width: 22px; height: 22px;
  min-width: 22px;
  border-radius: 6px;
  background: rgba(0,123,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.cred-check svg { width: 13px; height: 13px; stroke: var(--blue); stroke-width: 2.5; fill: none; }

/* ============================================
   SECTION: SOCIAL PROOF — Light Alt
   ============================================ */
.proof-section {
  background: var(--light-bg);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.proof-label {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.logo-placeholder {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: rgba(0,0,0,0.12);
  letter-spacing: 1px;
  transition: color 0.3s;
}
.logo-placeholder:hover { color: rgba(0,0,0,0.25); }

/* ============================================
   SECTION: PLANOS — Light
   ============================================ */
.pricing-section {
  background: var(--white);
  padding: 5.5rem 0;
}

.pricing-cards-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.price-card {
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 380px;
  transition: all 0.3s;
  position: relative;
}

.price-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.07);
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 10px 40px rgba(0,123,255,0.1);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.7rem;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.price-card h3 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.price-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: var(--heading);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--text-dark);
  letter-spacing: -1.5px;
  line-height: 1;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 600;
  vertical-align: top;
  margin-right: 2px;
}

.price-period {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 0.3rem;
}

.price-installment {
  font-size: 0.82rem;
  color: var(--text-dark-secondary);
  margin-top: 0.3rem;
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-dark-secondary);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.price-features li:last-child { border-bottom: none; }

.pf-check {
  width: 18px; height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(46,204,113,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pf-check svg { width: 11px; height: 11px; stroke: var(--green); stroke-width: 2.5; fill: none; }

.btn-price {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-price-outline {
  color: var(--text-dark);
  border: 1.5px solid var(--border-dark);
  background: transparent;
}
.btn-price-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-price-fill {
  color: var(--white);
  background: var(--blue);
  border: 1.5px solid var(--blue);
  box-shadow: 0 4px 16px rgba(0,123,255,0.25);
}
.btn-price-fill:hover {
  background: #1a8aff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,123,255,0.35);
  color: var(--white);
}

.price-monthly-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-monthly-note a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

/* ============================================
   SECTION: EMPRESAS — Dark
   ============================================ */
.empresas-section {
  background: var(--navy);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.empresas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,123,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,123,255,0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.emp-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.emp-icon {
  width: 42px; height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: var(--blue-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.emp-icon svg { width: 20px; height: 20px; stroke: var(--blue-soft); stroke-width: 2; fill: none; }

.emp-feature h4 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.emp-feature p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}

.dash-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--graphite);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.dash-placeholder svg { opacity: 0.2; }
.dash-placeholder span {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btn-emp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--blue-soft);
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid rgba(0,123,255,0.3);
  border-radius: 10px;
  padding: 0.75rem 1.8rem;
  text-decoration: none;
  transition: all 0.25s;
  margin-top: 0.5rem;
}
.btn-emp:hover {
  background: var(--blue-glow);
  border-color: var(--blue);
  color: var(--blue-soft);
}

/* ============================================
   SECTION: MENTORIA CCNA — Light Highlight
   ============================================ */
.mentoria-banner {
  background: linear-gradient(135deg, #F0F6FF 0%, #E6EEFF 100%);
  border-top: 1px solid rgba(0,123,255,0.1);
  border-bottom: 1px solid rgba(0,123,255,0.1);
  padding: 3.5rem 0;
}

.mentoria-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.mentoria-text h3 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.mentoria-text p {
  font-size: 0.92rem;
  color: var(--text-dark-secondary);
  margin: 0;
  max-width: 500px;
}

.mentoria-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--blue);
  background: rgba(0,123,255,0.08);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  letter-spacing: 0.5px;
}

.btn-mentoria {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.75rem 1.8rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 3px 16px rgba(0,123,255,0.2);
  white-space: nowrap;
}
.btn-mentoria:hover {
  background: #1a8aff;
  color: var(--white);
  transform: translateY(-1px);
}

/* ============================================
   SECTION: PARCEIROS — Light
   ============================================ */
.partners-section {
  background: var(--white);
  padding: 5rem 0;
}

.partner-card {
  background: var(--light-bg);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}
.partner-card:hover { border-color: rgba(0,123,255,0.15); }

.partner-logo {
  width: 72px; height: 72px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border-dark);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.partner-card h4 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.partner-card p {
  font-size: 0.82rem;
  color: var(--text-dark-secondary);
  margin: 0;
  line-height: 1.55;
}

/* ============================================
   CTA FINAL — Dark
   ============================================ */
.cta-final {
  background: var(--navy-deep);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,123,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final .sec-title-white { max-width: 550px; margin: 0 auto 0.8rem; }
.cta-final .sec-sub-white { max-width: 450px; margin: 0 auto 2rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-light);
  padding: 3rem 0 1.5rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
  margin-top: 0.6rem;
}

.footer-h {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.45rem; }

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue-soft); }

.footer-bottom {
  border-top: 1px solid var(--border-light);
  margin-top: 2rem;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1001;
}
.mobile-menu-overlay.open { display: block; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  background: var(--navy-deep);
  border-left: 1px solid var(--border-light);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  overflow-y: auto;
}

.mobile-menu-link {
  display: block;
  padding: 0.75rem 1.5rem;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}
.mobile-menu-link:hover { color: var(--white); background: rgba(255,255,255,0.03); }
.mobile-menu-link.active { color: var(--blue-soft); border-left-color: var(--blue); background: rgba(0,123,255,0.05); }

.mobile-menu-footer {
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-btn-login {
  display: block;
  text-align: center;
  padding: 0.55rem;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.mobile-menu-btn-login:hover { border-color: rgba(255,255,255,0.35); color: var(--white); }

.mobile-menu-btn-cta {
  display: block;
  text-align: center;
  padding: 0.55rem;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.mobile-menu-btn-cta:hover { background: #1a8aff; color: var(--white); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

.anim {
  opacity: 0;
  animation: fade-in-up 0.6s ease forwards;
}
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }
.d5 { animation-delay: 0.5s; }
.d6 { animation-delay: 0.6s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .hero { padding: 7rem 0 4rem; }
  .hero-visual { margin-top: 3rem; }
  .marcelo-frame { max-width: 320px; margin: 0 auto; }
  .float-card-left { left: 0; }
  .float-card-right { right: 0; }
  .mentoria-inner { justify-content: center; text-align: center; }
  .mentoria-text p { margin: 0 auto; }
}

@media (max-width: 576px) {
  .hero { padding: 6.5rem 0 3rem; }
  .hero-h1 { font-size: 2.2rem; letter-spacing: -1px; }
  .float-card { display: none; }
  .logos-row { gap: 1.5rem; }
  .pricing-cards-row { gap: 1rem; }
  .price-card { max-width: 100%; }
  .cta-final { padding: 4rem 0; }
}

/* ============================================
   PAGE: CURSOS
   ============================================ */

/* HERO compacto reutilizável */
.page-hero {
  background: var(--navy-deep);
  padding: 6.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,123,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,123,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.page-hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,123,255,0.06) 0%, transparent 65%);
  top: -40%; right: 0;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -1.2px;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.page-hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 550px;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb-nav {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--mono); font-size: 0.72rem; color: var(--text-muted);
  position: relative; z-index: 2; margin-bottom: 1.2rem;
}
.breadcrumb-nav a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb-nav a:hover { color: var(--blue-soft); }
.breadcrumb-nav svg { width: 12px; height: 12px; stroke: var(--text-muted); stroke-width: 2; fill: none; }

/* Filter bar */
.filter-bar {
  background: var(--navy);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
  position: sticky;
  top: 3.5rem;
  z-index: 100;
}
.filter-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.search-box {
  flex: 1;
  min-width: 220px;
  max-width: 340px;
  position: relative;
}
.search-box input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--white);
  outline: none;
  transition: all 0.2s;
}
.search-box input::placeholder { color: var(--text-muted); }
.search-box input:focus { border-color: rgba(0,123,255,0.4); background: rgba(255,255,255,0.08); }
.search-box svg {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  stroke: var(--text-muted); stroke-width: 2; fill: none;
}

.cat-dropdown { position: relative; min-width: 200px; }
.cat-dropdown select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 0.6rem 2.5rem 0.6rem 1rem;
  font-family: var(--heading);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--white);
  outline: none;
  cursor: pointer;
  transition: all 0.2s;
}
.cat-dropdown select:focus { border-color: rgba(0,123,255,0.4); background: rgba(255,255,255,0.08); }
.cat-dropdown select option { background: var(--navy); color: var(--white); }
.cat-dropdown::after {
  content: '';
  position: absolute;
  right: 1rem; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--text-muted);
  pointer-events: none;
}

.results-count {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Trilhas banner */
.trilhas-banner {
  background: linear-gradient(135deg, rgba(0,123,255,0.06) 0%, rgba(77,163,255,0.04) 100%);
  border: 1px solid rgba(0,123,255,0.1);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.tb-content { flex: 1; }
.tb-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--blue);
  letter-spacing: 1.5px;
  margin-bottom: 0.3rem;
}
.tb-title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}
.tb-desc {
  font-size: 0.85rem;
  color: var(--text-dark-secondary);
}
.btn-tb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(0,123,255,0.2);
}
.btn-tb:hover { background: #1a8aff; color: var(--white); transform: translateY(-1px); }
.btn-tb svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 2; fill: none; }

/* Courses grid */
.courses-area { padding: 2rem 0 4rem; background: var(--light-bg); }
.category-section { margin-bottom: 2.5rem; }

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.category-title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cat-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.55rem;
  color: var(--white);
  letter-spacing: 0.3px;
}
.category-count {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* Course card */
.course-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 1.3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  text-decoration: none;
}
.course-card:hover {
  border-color: rgba(0,123,255,0.18);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.cc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}
.cc-cat-tag {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}
.cc-free-tag {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--green);
  background: rgba(46,204,113,0.08);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}
.cc-paid-tag {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: rgba(0,0,0,0.03);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}
.cc-title {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
  flex: 1;
}
.cc-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.cc-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.cc-meta-item svg { width: 12px; height: 12px; stroke: var(--text-muted); stroke-width: 2; fill: none; }

@media (max-width: 992px) {
  .filter-bar { top: 0; }
  .trilhas-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 576px) {
  .page-hero h1 { font-size: 1.7rem; }
  .filter-inner { flex-wrap: wrap; }
  .search-box { min-width: 100%; max-width: 100%; order: -1; margin-bottom: 0.5rem; }
  .cat-dropdown { width: 100%; }
}

/* ============================================
   PAGE: CURSO (show)
   ============================================ */

/* Course hero */
.course-hero {
  background: var(--navy-deep);
  padding: 7rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.course-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,123,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,123,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.course-hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,123,255,0.07) 0%, transparent 65%);
  top: -25%; right: -5%;
  pointer-events: none;
}
.course-hero-content { position: relative; z-index: 2; }

.course-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.course-tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  border: 1px solid transparent;
}
.tag-category {
  background: rgba(0,123,255,0.1);
  border-color: rgba(0,123,255,0.2);
  color: var(--blue-soft);
}
.tag-free {
  background: rgba(46,204,113,0.1);
  border-color: rgba(46,204,113,0.2);
  color: var(--green);
}
.tag-paid {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: var(--text-secondary);
}

.course-hero h1 {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -1.2px;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 600px;
}
.course-hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.course-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.cm-item { display: flex; align-items: center; gap: 0.45rem; }
.cm-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cm-icon svg { width: 15px; height: 15px; stroke: var(--blue-soft); stroke-width: 2; fill: none; }
.cm-text { font-size: 0.82rem; color: var(--text-secondary); }
.cm-text strong { color: var(--white); font-weight: 600; }

.btn-course-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(0,123,255,0.35);
}
.btn-course-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,123,255,0.5);
  color: var(--white);
}

.hero-free-note {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

/* Content area */
.content-area { padding: 2.5rem 0 4rem; background: var(--light-bg); }

.section-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Chapter accordion */
.chapter {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.chapter:hover { box-shadow: 0 3px 12px rgba(0,0,0,0.03); }
.chapter.open { border-color: rgba(0,123,255,0.15); box-shadow: 0 3px 16px rgba(0,0,0,0.05); }

.chapter-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.3rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.chapter-header:hover { background: rgba(0,0,0,0.01); }

.chapter-num {
  width: 34px; height: 34px;
  min-width: 34px;
  border-radius: 8px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-dark);
  transition: all 0.25s;
}
.chapter.open .chapter-num { background: var(--blue); color: var(--white); }

.chapter-info { flex: 1; }
.chapter-title {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.1rem;
}
.chapter-lesson-count {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--text-muted);
}
.chapter-free-badge {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--green);
  background: rgba(46,204,113,0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.chapter-chevron { width: 18px; height: 18px; transition: transform 0.3s; }
.chapter-chevron svg { width: 18px; height: 18px; stroke: var(--text-muted); stroke-width: 2; fill: none; }
.chapter.open .chapter-chevron { transform: rotate(180deg); }

.chapter-body {
  display: none;
  border-top: 1px solid var(--border-dark);
  padding: 0.4rem 0;
}
.chapter.open .chapter-body { display: block; }

.lesson {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.3rem 0.55rem 4.2rem;
  transition: background 0.15s;
}
.lesson:hover { background: rgba(0,0,0,0.01); }
.lesson-icon {
  width: 26px; height: 26px;
  min-width: 26px;
  border-radius: 6px;
  background: rgba(0,123,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lesson-icon svg { width: 12px; height: 12px; stroke: var(--blue); stroke-width: 2; fill: none; }
.lesson-name {
  font-size: 0.85rem;
  color: var(--text-dark-secondary);
  flex: 1;
}
.lesson-duration {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Sidebar */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 1.8rem;
  position: sticky;
  top: 5rem;
}
.sidebar-card h3 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}
.sidebar-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.sidebar-stat:last-of-type { border-bottom: none; }
.ss-label {
  font-size: 0.82rem;
  color: var(--text-dark-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ss-label svg { width: 14px; height: 14px; stroke: var(--text-muted); stroke-width: 2; fill: none; }
.ss-value {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
}
.btn-sidebar {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--blue);
  color: var(--white);
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(0,123,255,0.2);
}
.btn-sidebar:hover {
  background: #1a8aff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,123,255,0.3);
  color: var(--white);
}
.sidebar-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.8rem;
  line-height: 1.5;
}

/* Trilhas section */
.trilhas-section {
  background: var(--white);
  padding: 4rem 0;
  border-top: 1px solid var(--border-dark);
}
.sec-label-dark {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.sec-title-dark {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.sec-sub-dark {
  font-size: 0.92rem;
  color: var(--text-dark-secondary);
  line-height: 1.7;
  max-width: 520px;
}

.trilha-link-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--light-bg);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
  height: 100%;
}
.trilha-link-card:hover {
  border-color: rgba(0,123,255,0.2);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.tlc-badge {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.6rem;
  color: var(--white);
  letter-spacing: 0.5px;
}
.tlc-info { flex: 1; }
.tlc-name {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}
.tlc-meta {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}
.tlc-arrow { width: 20px; height: 20px; min-width: 20px; }
.tlc-arrow svg { width: 20px; height: 20px; stroke: var(--text-muted); stroke-width: 2; fill: none; }
.trilha-link-card:hover .tlc-arrow svg { stroke: var(--blue); }

/* Learn section */
.learn-section { padding: 4rem 0; background: var(--light-bg); }
.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-dark-secondary);
  line-height: 1.45;
}
.learn-check {
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 5px;
  background: rgba(0,123,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.learn-check svg { width: 12px; height: 12px; stroke: var(--blue); stroke-width: 2.5; fill: none; }

/* FAQ */
.faq-section { padding: 4rem 0; background: var(--white); }
.faq-item {
  background: var(--light-bg);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.faq-item.open { border-color: rgba(0,123,255,0.15); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.3rem;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}
.faq-question h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin: 0;
  flex: 1;
}
.faq-chevron { width: 18px; height: 18px; min-width: 18px; transition: transform 0.3s; }
.faq-chevron svg { width: 18px; height: 18px; stroke: var(--text-muted); stroke-width: 2; fill: none; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.3rem 1.1rem;
  font-size: 0.85rem;
  color: var(--text-dark-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer a { color: var(--blue); text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }

/* CTA banner */
.cta-banner {
  background: var(--navy);
  padding: 4rem 0;
  text-align: center;
}
.cta-title {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: -0.8px;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.cta-sub {
  font-size: 0.92rem;
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.btn-cta-big {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(0,123,255,0.35);
}
.btn-cta-big:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,123,255,0.5);
  color: var(--white);
}

@media (max-width: 992px) {
  .sidebar-card { position: static; margin-top: 2rem; }
  .course-hero { padding: 6rem 0 2.5rem; }
  .learn-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .course-hero h1 { font-size: 1.7rem; }
  .course-meta-row { gap: 1rem; }
  .lesson { padding-left: 2.5rem; }
}

/* ============================================
   PAGE: TRILHAS (index)
   ============================================ */

.trilhas-area { padding: 2.5rem 0 4rem; }

/* Type section header (Certificação / Formação) */
.type-section { margin-bottom: 3rem; }

.type-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
}
.type-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.type-icon svg { width: 18px; height: 18px; stroke-width: 2; fill: none; }
.type-icon.ti-cert { background: rgba(0,123,255,0.08); }
.type-icon.ti-cert svg { stroke: var(--blue); }
.type-icon.ti-form { background: rgba(108,92,231,0.08); }
.type-icon.ti-form svg { stroke: #6C5CE7; }

.type-title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.type-desc {
  font-size: 0.88rem;
  color: var(--text-dark-secondary);
  margin-bottom: 1.5rem;
  padding-left: 2.95rem;
}

/* Trilha card */
.trilha-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  --trilha-accent: var(--blue);
}
.trilha-card:hover {
  border-color: rgba(0,123,255,0.2);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.trilha-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--trilha-accent), color-mix(in srgb, var(--trilha-accent) 55%, white));
  opacity: 0;
  transition: opacity 0.3s;
}
.trilha-card:hover::before { opacity: 1; }

.tc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.tc-badge {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.6rem;
  color: var(--white);
  letter-spacing: 0.3px;
}
.tc-cert-tag {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.tc-cert-tag.cert { color: var(--blue); background: rgba(0,123,255,0.06); }
.tc-cert-tag.form { color: #6C5CE7; background: rgba(108,92,231,0.06); }

.tc-title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.tc-desc {
  font-size: 0.84rem;
  color: var(--text-dark-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.tc-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(0,0,0,0.04);
  margin-bottom: 1rem;
}
.tc-stat {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--text-muted);
}
.tc-stat svg { width: 12px; height: 12px; stroke: var(--text-muted); stroke-width: 2; fill: none; }
.tc-stat strong { color: var(--text-dark-secondary); font-weight: 600; }

.tc-arrow {
  position: absolute;
  bottom: 1.6rem;
  right: 1.6rem;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.tc-arrow svg { width: 14px; height: 14px; stroke: var(--text-muted); stroke-width: 2; fill: none; }
.trilha-card:hover .tc-arrow { background: var(--blue); }
.trilha-card:hover .tc-arrow svg { stroke: var(--white); }

@media (max-width: 576px) {
  .type-desc { padding-left: 0; }
  .tc-arrow { display: none; }
}

/* ============================================
   PAGE: TRILHA (show)
   ============================================ */

/* Hero */
.trilha-hero {
  background: var(--navy-deep);
  padding: 7rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.trilha-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,123,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,123,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.trilha-hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,123,255,0.07) 0%, transparent 65%);
  top: -25%; right: -5%;
  pointer-events: none;
}
.trilha-hero-content { position: relative; z-index: 2; }

.trilha-breadcrumb {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--mono); font-size: 0.72rem; color: var(--text-muted);
  position: relative; z-index: 2; margin-bottom: 1.5rem;
}
.trilha-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.trilha-breadcrumb a:hover { color: var(--blue-soft); }
.trilha-breadcrumb svg { width: 12px; height: 12px; stroke: var(--text-muted); stroke-width: 2; fill: none; }

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,123,255,0.08);
  border: 1px solid rgba(0,123,255,0.2);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--blue-soft);
  letter-spacing: 0.6px;
  margin-bottom: 1.2rem;
}
.cert-badge svg { width: 14px; height: 14px; stroke: var(--blue-soft); stroke-width: 2; fill: none; }

.trilha-hero h1 {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -1.2px;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 680px;
}
.trilha-hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.trilha-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.trilha-stat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.ts-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ts-icon svg { width: 16px; height: 16px; stroke: var(--blue-soft); stroke-width: 2; fill: none; }
.ts-value {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.1;
}
.ts-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.btn-hero-trilha {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(0,123,255,0.35);
}
.btn-hero-trilha:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,123,255,0.5);
  color: var(--white);
}

/* Content area shared label */
.sidebar-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Chapter meta (steps/labs/simulados inline) */
.chapter-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.3rem;
}
.chapter-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--text-muted);
}
.chapter-meta-item svg { width: 11px; height: 11px; stroke: var(--text-muted); stroke-width: 2; fill: none; }

/* Step (within chapter body) */
.step {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem 1.3rem 0.65rem 4.2rem;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
.step:last-child { border-bottom: none; }
.step:hover { background: rgba(0,0,0,0.015); }

.step-type-icon {
  width: 28px; height: 28px;
  min-width: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-type-icon svg { width: 13px; height: 13px; stroke-width: 2; fill: none; }
.step-type-icon.type-course      { background: rgba(0,123,255,0.08); }
.step-type-icon.type-course svg  { stroke: var(--blue); }
.step-type-icon.type-lab         { background: rgba(46,204,113,0.1); }
.step-type-icon.type-lab svg     { stroke: var(--green); }
.step-type-icon.type-quiz,
.step-type-icon.type-checkpoint  { background: rgba(243,156,18,0.1); }
.step-type-icon.type-quiz svg,
.step-type-icon.type-checkpoint svg { stroke: var(--orange, #F39C12); }
.step-type-icon.type-netacad     { background: rgba(108,92,231,0.1); }
.step-type-icon.type-netacad svg { stroke: #6C5CE7; }
.step-type-icon.type-class       { background: rgba(0,123,255,0.08); }
.step-type-icon.type-class svg   { stroke: var(--blue); }
.step-type-icon.type-document    { background: rgba(0,0,0,0.04); }
.step-type-icon.type-document svg{ stroke: var(--text-muted); }

.step-info { flex: 1; min-width: 0; }
.step .step-name {
  font-family: var(--body);
  font-size: 0.86rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0;
}
.step .step-name a { color: var(--text-dark); text-decoration: none; transition: color 0.2s; }
.step .step-name a:hover { color: var(--blue); }
.step-detail {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.type-label {
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
}
.type-label.tl-course      { color: var(--blue);   background: rgba(0,123,255,0.06); }
.type-label.tl-lab         { color: var(--green);  background: rgba(46,204,113,0.08); }
.type-label.tl-quiz,
.type-label.tl-checkpoint  { color: var(--orange, #F39C12); background: rgba(243,156,18,0.08); }
.type-label.tl-netacad     { color: #6C5CE7;        background: rgba(108,92,231,0.08); }
.type-label.tl-class       { color: var(--blue);   background: rgba(0,123,255,0.06); }
.type-label.tl-document    { color: var(--text-muted); background: rgba(0,0,0,0.04); }

/* Legend dentro do sidebar */
.legend {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.legend-title {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-dark-secondary);
  padding: 0.25rem 0;
}
.legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.legend-dot.ld-course      { background: var(--blue); }
.legend-dot.ld-lab         { background: var(--green); }
.legend-dot.ld-quiz        { background: var(--orange, #F39C12); }
.legend-dot.ld-checkpoint  { background: #E74C3C; }

/* SEO sections (audience, market, faq, cta) */
.seo-section { padding: 4rem 0; }
.seo-section-dark {
  padding: 4rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.seo-section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,123,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,123,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.sec-title-dark { color: var(--text-dark); }
.sec-title-white { color: var(--white); }
.sec-sub-dark { color: var(--text-dark-secondary); }
.sec-sub-white { color: var(--text-secondary); }

/* Public alvo cards */
.publico-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 1.8rem;
  height: 100%;
}
.pub-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.pub-icon svg { width: 22px; height: 22px; stroke-width: 2; fill: none; }
.pub-icon.pi-1 { background: rgba(0,123,255,0.08); }
.pub-icon.pi-1 svg { stroke: var(--blue); }
.pub-icon.pi-2 { background: rgba(46,204,113,0.08); }
.pub-icon.pi-2 svg { stroke: var(--green); }
.pub-icon.pi-3 { background: rgba(108,92,231,0.08); }
.pub-icon.pi-3 svg { stroke: #6C5CE7; }
.pub-icon.pi-4 { background: rgba(243,156,18,0.08); }
.pub-icon.pi-4 svg { stroke: #F39C12; }
.pub-icon.pi-5 { background: rgba(231,76,60,0.08); }
.pub-icon.pi-5 svg { stroke: #E74C3C; }
.pub-icon.pi-6 { background: rgba(77,163,255,0.08); }
.pub-icon.pi-6 svg { stroke: var(--blue-soft); }
.publico-card h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.publico-card p {
  font-size: 0.88rem;
  color: var(--text-dark-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Mercado de trabalho cards */
.mercado-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
  height: 100%;
}
.mercado-number {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.mercado-number.mn-blue   { color: var(--blue-soft); }
.mercado-number.mn-green  { color: var(--green); }
.mercado-number.mn-orange { color: var(--orange, #F39C12); }
.mercado-number.mn-red    { color: #E74C3C; }
.mercado-number.mn-purple { color: #A29BFE; }
.mercado-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.mercado-note {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

/* CTA final (banner) */
.cta-banner-section {
  background: var(--navy-deep);
  padding: 4.5rem 0;
  text-align: center;
}

@media (max-width: 992px) {
  .trilha-hero { padding: 6rem 0 2.5rem; }
}
@media (max-width: 576px) {
  .trilha-hero h1 { font-size: 1.7rem; }
  .trilha-stats { gap: 1rem 1.5rem; }
  .step { padding-left: 2.5rem; gap: 0.5rem; }
  .type-label { display: none; }
}

/* ============================================
   PAGE: EMPRESAS
   ============================================ */

/* Hero */
.emp-hero {
  background: var(--navy-deep);
  padding: 7.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.emp-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,123,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,123,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px; pointer-events: none;
}
.emp-hero-glow {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,123,255,0.07) 0%, transparent 60%);
  top: -30%; right: -15%; pointer-events: none;
}
.emp-hero-content { position: relative; z-index: 2; }

.emp-eyebrow {
  font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
  color: var(--blue-soft); letter-spacing: 2px; margin-bottom: 1.2rem;
}
.emp-hero h1 {
  font-family: var(--heading); font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -1.8px; line-height: 1.08;
  color: var(--white); margin-bottom: 1.2rem; max-width: 550px;
}
.emp-hero h1 .grad {
  background: linear-gradient(135deg, var(--blue) 0%, #5BB8FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.emp-hero-sub {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 480px; line-height: 1.75; margin-bottom: 2.5rem;
}
.btn-emp-hero {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--blue); color: var(--white);
  font-family: var(--heading); font-weight: 600; font-size: 0.95rem;
  padding: 0.9rem 2.2rem; border-radius: 10px; text-decoration: none;
  transition: all 0.3s; box-shadow: 0 4px 24px rgba(0,123,255,0.35);
}
.btn-emp-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,123,255,0.5); color: var(--white); }
.btn-emp-hero svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 2; fill: none; }

/* Dashboard mockup */
.dash-preview {
  width: 100%; aspect-ratio: 16/10;
  background: var(--graphite); border: 1px solid var(--border-light);
  border-radius: 14px;
  position: relative; overflow: hidden;
}
.dash-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 36px;
  background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; padding: 0 1rem; gap: 0.5rem;
}
.dash-dot { width: 8px; height: 8px; border-radius: 50%; }
.dash-dot.d1 { background: #E74C3C; }
.dash-dot.d2 { background: var(--orange, #F39C12); }
.dash-dot.d3 { background: var(--green); }
.dash-sidebar-fake {
  position: absolute; left: 0; top: 36px; bottom: 0; width: 180px;
  background: rgba(255,255,255,0.02); border-right: 1px solid var(--border-light);
}
.dsf-item { height: 10px; background: rgba(255,255,255,0.04); border-radius: 3px; margin: 12px 14px; }
.dsf-item.active { background: rgba(0,123,255,0.2); }
.dash-content-fake {
  position: absolute; left: 180px; top: 36px; right: 0; bottom: 0; padding: 16px;
}
.dcf-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-light);
  border-radius: 8px; padding: 10px; margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.dcf-avatar { width: 24px; height: 24px; border-radius: 6px; background: rgba(0,123,255,0.15); flex-shrink: 0; }
.dcf-bar { height: 6px; border-radius: 3px; flex: 1; background: rgba(255,255,255,0.04); position: relative; overflow: hidden; }
.dcf-bar-fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 3px; background: linear-gradient(90deg, var(--blue), var(--blue-soft)); }
.dcf-pct { font-family: var(--mono); font-size: 0.55rem; color: var(--text-muted); min-width: 28px; text-align: right; }

/* Features */
.emp-features-section { padding: 5rem 0; background: var(--white); }

.emp-feat-card {
  background: var(--light-bg); border: 1px solid var(--border-dark);
  border-radius: 14px; padding: 2rem; height: 100%;
  transition: all 0.3s;
}
.emp-feat-card:hover { border-color: rgba(0,123,255,0.15); box-shadow: 0 6px 20px rgba(0,0,0,0.04); }
.fc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
}
.fc-icon svg { width: 22px; height: 22px; stroke-width: 2; fill: none; }
.fc-icon.fi-1 { background: rgba(0,123,255,0.08); }
.fc-icon.fi-1 svg { stroke: var(--blue); }
.fc-icon.fi-2 { background: rgba(46,204,113,0.08); }
.fc-icon.fi-2 svg { stroke: var(--green); }
.fc-icon.fi-3 { background: rgba(243,156,18,0.08); }
.fc-icon.fi-3 svg { stroke: var(--orange, #F39C12); }
.fc-icon.fi-4 { background: rgba(108,92,231,0.08); }
.fc-icon.fi-4 svg { stroke: #6C5CE7; }
.emp-feat-card h3 {
  font-family: var(--heading); font-weight: 600;
  font-size: 1rem; color: var(--text-dark); margin-bottom: 0.4rem;
}
.emp-feat-card p {
  font-size: 0.85rem; color: var(--text-dark-secondary);
  line-height: 1.6; margin: 0;
}

/* How it works */
.how-section { padding: 5rem 0; background: var(--light-bg); }
.step-row {
  display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
}
.how-step {
  flex: 1; min-width: 200px; max-width: 260px;
  text-align: center; position: relative;
}
.hs-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue); color: var(--white);
  font-family: var(--heading); font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.how-step h3 {
  font-family: var(--heading); font-weight: 600; font-size: 0.95rem;
  color: var(--text-dark); margin-bottom: 0.3rem;
}
.how-step p {
  font-size: 0.82rem; color: var(--text-dark-secondary); line-height: 1.55;
}
.hs-connector {
  position: absolute; top: 22px; left: calc(50% + 30px);
  width: calc(100% - 20px); height: 2px;
  background: rgba(0,123,255,0.15);
}
.how-step:last-child .hs-connector { display: none; }

/* Onboarding */
.onboarding-section {
  background: var(--navy); padding: 5rem 0;
  position: relative; overflow: hidden;
}
.onboarding-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,123,255,0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,123,255,0.015) 1px, transparent 1px);
  background-size: 50px 50px; pointer-events: none;
}
.onb-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.2);
  border-radius: 100px; padding: 0.35rem 1rem;
  font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
  color: var(--green); letter-spacing: 0.8px; margin-bottom: 1.2rem;
}
.onb-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.onb-list li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  margin-bottom: 1rem; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5;
}
.onb-check {
  width: 22px; height: 22px; min-width: 22px; border-radius: 6px;
  background: rgba(46,204,113,0.1);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.onb-check svg { width: 13px; height: 13px; stroke: var(--green); stroke-width: 2.5; fill: none; }

/* Marcelo card */
.marcelo-card {
  background: rgba(30,30,30,0.6); border: 1px solid var(--border-light);
  border-radius: 16px; padding: 2rem; text-align: center;
}
.marcelo-photo {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(160deg, #1a2a3a 0%, #0d1b2a 100%);
  margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(0,123,255,0.2);
}
.marcelo-photo svg { opacity: 0.2; }
.mc-name {
  font-family: var(--heading); font-weight: 700;
  font-size: 1.05rem; color: var(--white); margin-bottom: 0.15rem;
}
.mc-role {
  font-family: var(--mono); font-size: 0.7rem;
  color: var(--blue-soft); letter-spacing: 0.5px; margin-bottom: 1rem;
}
.mc-creds { list-style: none; padding: 0; margin: 0; text-align: left; }
.mc-creds li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 0.5rem;
}
.mc-creds li svg {
  width: 14px; height: 14px; stroke: var(--blue-soft);
  stroke-width: 2; fill: none; flex-shrink: 0;
}

/* Numbers (stats globais) */
.numbers-section { padding: 4.5rem 0; background: var(--white); }
.num-card { text-align: center; padding: 1.5rem; }
.num-value {
  font-family: var(--heading); font-weight: 800;
  font-size: 2.2rem; letter-spacing: -1px; color: var(--blue);
}
.num-label {
  font-size: 0.85rem; color: var(--text-dark-secondary); margin-top: 0.2rem;
}

/* CTA empresas */
.emp-cta-section {
  background: var(--navy-deep); padding: 5rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.emp-cta-section::before {
  content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,123,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.emp-cta-title {
  font-family: var(--heading); font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -1px;
  color: var(--white); margin-bottom: 0.8rem;
  position: relative; z-index: 2;
}
.emp-cta-sub {
  font-size: 0.95rem; color: var(--text-secondary);
  max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.7;
  position: relative; z-index: 2;
}
.btn-emp-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--blue); color: var(--white);
  font-family: var(--heading); font-weight: 600; font-size: 0.95rem;
  padding: 0.9rem 2.2rem; border-radius: 10px; text-decoration: none;
  transition: all 0.3s; box-shadow: 0 4px 24px rgba(0,123,255,0.35);
  position: relative; z-index: 2;
}
.btn-emp-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,123,255,0.5); color: var(--white); }
.btn-emp-cta svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 2; fill: none; }
.emp-cta-note {
  font-size: 0.78rem; color: var(--text-muted); margin-top: 1rem;
  position: relative; z-index: 2;
}

@media (max-width: 992px) {
  .emp-hero { padding: 6.5rem 0 3rem; }
  .dash-sidebar-fake { display: none; }
  .dash-content-fake { left: 0; }
  .hs-connector { display: none; }
}
@media (max-width: 576px) {
  .emp-hero h1 { font-size: 1.9rem; }
  .how-step { min-width: 100%; max-width: 100%; }
  .num-card { padding: 1rem; }
  .num-value { font-size: 1.8rem; }
}

/* ============================================
   PAGE: MENTORIA CCNA
   ============================================ */

/* Hero */
.ment-hero {
  background: var(--navy-deep);
  padding: 7.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.ment-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,123,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,123,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px; pointer-events: none;
}
.ment-hero-glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,123,255,0.07) 0%, transparent 60%);
  top: -25%; right: -10%; pointer-events: none;
}
.ment-hero-content { position: relative; z-index: 2; max-width: 650px; }

.ment-hero-pain {
  font-family: var(--mono); font-size: 0.78rem; color: var(--orange, #F39C12);
  letter-spacing: 0.5px; margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.ment-hero-pain svg { width: 16px; height: 16px; stroke: var(--orange, #F39C12); stroke-width: 2; fill: none; }

.ment-hero h1 {
  font-family: var(--heading); font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -1.8px; line-height: 1.08;
  color: var(--white); margin-bottom: 1.2rem;
}
.ment-hero h1 .grad {
  background: linear-gradient(135deg, var(--blue) 0%, #5BB8FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ment-hero-sub { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 2rem; }

.ment-highlights {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem;
}
.hh-item {
  display: flex; align-items: center; gap: 0.45rem;
  font-family: var(--mono); font-size: 0.72rem; color: var(--text-secondary);
}
.hh-item svg { width: 16px; height: 16px; stroke: var(--blue-soft); stroke-width: 2; fill: none; }

/* Hero pricing card (lateral) */
.hero-price-card {
  background: rgba(30,30,30,0.6);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  z-index: 2;
}
.hpc-badge {
  display: inline-block;
  background: var(--blue); color: var(--white);
  font-family: var(--heading); font-weight: 600; font-size: 0.65rem;
  padding: 0.25rem 0.8rem; border-radius: 100px;
  letter-spacing: 0.5px; margin-bottom: 1rem;
}
.hpc-title {
  font-family: var(--heading); font-weight: 700;
  font-size: 0.95rem; color: var(--white); margin-bottom: 1.2rem;
}
.hpc-price {
  font-family: var(--heading); font-weight: 800;
  font-size: 2.5rem; color: var(--white);
  letter-spacing: -1.5px; line-height: 1;
}
.hpc-installment { font-size: 0.78rem; color: var(--text-secondary); margin-top: 0.3rem; margin-bottom: 0.3rem; }
.hpc-context { font-family: var(--mono); font-size: 0.62rem; color: var(--text-muted); margin-bottom: 1.2rem; }

.hpc-features { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.hpc-features li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--text-secondary);
  padding: 0.35rem 0;
}
.hpc-features li svg { width: 14px; height: 14px; min-width: 14px; stroke: var(--green); stroke-width: 2.5; fill: none; }

.btn-hpc {
  display: block; width: 100%; text-align: center;
  background: var(--blue); color: var(--white);
  font-family: var(--heading); font-weight: 600; font-size: 0.88rem;
  padding: 0.8rem; border-radius: 10px; text-decoration: none;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(0,123,255,0.3);
}
.btn-hpc:hover { background: #1a8aff; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(0,123,255,0.4); color: var(--white); }
.hpc-note { font-size: 0.68rem; color: var(--text-muted); text-align: center; margin-top: 0.6rem; }

/* Whom (pra quem é / não é) */
.whom-section { padding: 5rem 0; background: var(--white); }
.whom-col h3 {
  font-family: var(--heading); font-weight: 700; font-size: 1rem;
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
}
.whom-yes h3 { color: var(--green); }
.whom-no h3  { color: #E74C3C; }
.whom-list { list-style: none; padding: 0; margin: 0; }
.whom-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; color: var(--text-dark-secondary); line-height: 1.5;
  margin-bottom: 0.8rem;
}
.wl-icon {
  width: 20px; height: 20px; min-width: 20px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.wl-icon svg { width: 12px; height: 12px; stroke-width: 2.5; fill: none; }
.wl-yes { background: rgba(46,204,113,0.1); }
.wl-yes svg { stroke: var(--green); }
.wl-no { background: rgba(231,76,60,0.1); }
.wl-no svg { stroke: #E74C3C; }
.whom-alt { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.5rem; padding-left: 1.8rem; }
.whom-alt a { color: var(--blue); text-decoration: none; }

/* How it works (timeline) */
.ment-how-section { padding: 5rem 0; background: var(--light-bg); }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute;
  left: 9px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--blue), rgba(0,123,255,0.1));
}
.tl-item { position: relative; margin-bottom: 2rem; padding-left: 1.5rem; }
.tl-item:last-child { margin-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute;
  left: -2rem; top: 0.35rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--white); border: 2.5px solid var(--blue);
  z-index: 1; margin-left: -4px;
}
.tl-month {
  font-family: var(--mono); font-size: 0.65rem;
  color: var(--blue); letter-spacing: 1px; margin-bottom: 0.2rem;
}
.tl-title {
  font-family: var(--heading); font-weight: 600;
  font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.2rem;
}
.tl-desc { font-size: 0.84rem; color: var(--text-dark-secondary); line-height: 1.55; }

/* What's included (dark) */
.included-section {
  padding: 5rem 0; background: var(--navy);
  position: relative; overflow: hidden;
}
.included-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,123,255,0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,123,255,0.015) 1px, transparent 1px);
  background-size: 50px 50px; pointer-events: none;
}
.inc-card {
  background: rgba(30,30,30,0.5); border: 1px solid var(--border-light);
  border-radius: 12px; padding: 1.4rem;
  display: flex; align-items: flex-start; gap: 1rem;
  height: 100%;
}
.inc-icon {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 10px; background: var(--blue-glow);
  display: flex; align-items: center; justify-content: center;
}
.inc-icon svg { width: 18px; height: 18px; stroke: var(--blue-soft); stroke-width: 2; fill: none; }
.inc-card h4 {
  font-family: var(--heading); font-weight: 600;
  font-size: 0.9rem; color: var(--white); margin-bottom: 0.2rem;
}
.inc-card p {
  font-size: 0.8rem; color: var(--text-secondary);
  line-height: 1.5; margin: 0;
}

/* Marcelo section */
.ment-marcelo-section { padding: 5rem 0; background: var(--white); }
.ment-marcelo-photo {
  width: 100%; aspect-ratio: 4/5;
  border-radius: 16px;
  background: linear-gradient(160deg, #e8edf2, #d5dde6);
  border: 1px solid var(--border-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
}
.ment-marcelo-photo svg { opacity: 0.15; }
.ment-marcelo-photo span { font-family: var(--mono); font-size: 0.75rem; color: var(--text-muted); }

/* Results (depoimentos) */
.ment-results-section { padding: 5rem 0; background: var(--light-bg); }
.result-card {
  background: var(--white); border: 1px solid var(--border-dark);
  border-radius: 14px; padding: 1.8rem; height: 100%;
}
.rc-quote {
  font-size: 0.88rem; color: var(--text-dark-secondary);
  line-height: 1.65; font-style: italic; margin-bottom: 1.2rem;
  position: relative; padding-left: 1.2rem;
}
.rc-quote::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px; border-radius: 2px; background: var(--blue);
}
.rc-author { display: flex; align-items: center; gap: 0.7rem; }
.rc-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
}
.rc-avatar svg { width: 16px; height: 16px; stroke: var(--text-muted); stroke-width: 2; fill: none; }
.rc-name { font-family: var(--heading); font-weight: 600; font-size: 0.82rem; color: var(--text-dark); }
.rc-detail { font-family: var(--mono); font-size: 0.62rem; color: var(--green); }

.results-stat-row {
  display: flex; justify-content: center; gap: 3rem;
  margin-top: 2.5rem; flex-wrap: wrap;
}
.rs-item { text-align: center; }
.rs-num {
  font-family: var(--heading); font-weight: 800;
  font-size: 1.8rem; color: var(--blue); letter-spacing: -0.5px;
}
.rs-label { font-size: 0.8rem; color: var(--text-dark-secondary); }

/* Pricing box (escopado pra não conflitar com home/_planos) */
.ment-pricing-section { padding: 5rem 0; background: var(--white); }
.price-box {
  max-width: 520px; margin: 0 auto;
  background: var(--white); border: 2px solid var(--blue);
  border-radius: 18px; padding: 2.5rem; text-align: center;
  box-shadow: 0 0 0 1px var(--blue), 0 12px 40px rgba(0,123,255,0.1);
  position: relative;
}
.price-badge-top {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--white);
  font-family: var(--heading); font-weight: 600; font-size: 0.7rem;
  padding: 0.35rem 1.2rem; border-radius: 100px; letter-spacing: 0.5px;
}
.price-name {
  font-family: var(--heading); font-weight: 700;
  font-size: 1.2rem; color: var(--text-dark); margin-bottom: 0.3rem;
}
.price-desc-text { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.price-box .price-amount {
  font-family: var(--heading); font-weight: 800;
  font-size: 3rem; color: var(--text-dark);
  letter-spacing: -1.5px; line-height: 1;
}
.price-box .price-installment {
  font-size: 0.85rem; color: var(--text-dark-secondary);
  margin-top: 0.4rem; margin-bottom: 0.5rem;
}
.price-context {
  font-family: var(--mono); font-size: 0.7rem;
  color: var(--text-muted); margin-bottom: 2rem;
}
.price-box .price-features {
  list-style: none; padding: 0; margin: 0 0 2rem; text-align: left;
}
.price-box .btn-price {
  background: var(--blue);
  color: var(--white);
  border: 1.5px solid var(--blue);
  box-shadow: 0 4px 20px rgba(0,123,255,0.25);
}
.price-box .btn-price:hover {
  background: #1a8aff;
  border-color: #1a8aff;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(0,123,255,0.35);
  color: var(--white);
}
.price-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.8rem; }

/* FAQ wrapper */
.ment-faq-section { padding: 5rem 0; background: var(--light-bg); }

@media (max-width: 992px) {
  .ment-hero { padding: 6.5rem 0 3.5rem; }
}
@media (max-width: 576px) {
  .ment-hero h1 { font-size: 1.9rem; }
  .price-box .price-amount { font-size: 2.5rem; }
  .results-stat-row { gap: 1.5rem; }
}

/* ============================================
   PAGE: SOBRE
   ============================================ */

/* Hero */
.sobre-hero {
  background: var(--navy-deep);
  padding: 7.5rem 0 4rem;
  position: relative; overflow: hidden;
}
.sobre-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,123,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,123,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px; pointer-events: none;
}
.sobre-hero-glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,123,255,0.06) 0%, transparent 60%);
  top: -30%; right: -10%; pointer-events: none;
}
.sobre-hero-content { position: relative; z-index: 2; max-width: 620px; }

.sobre-hero h1 {
  font-family: var(--heading); font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  letter-spacing: -1.8px; line-height: 1.08;
  color: var(--white); margin-bottom: 1.2rem;
}
.sobre-hero h1 .grad {
  background: linear-gradient(135deg, var(--blue) 0%, #5BB8FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sobre-hero-sub { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.75; max-width: 520px; }

.hero-founded {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.72rem; color: var(--text-muted);
  margin-top: 1.5rem; padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: 8px;
}
.hero-founded svg { width: 14px; height: 14px; stroke: var(--blue-soft); stroke-width: 2; fill: none; }

/* Hero visual card (direita) */
.hero-visual-card {
  background: rgba(30,30,30,0.5); backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: 18px; padding: 2rem;
  position: relative; z-index: 2;
}
.hvc-photo {
  width: 100%; aspect-ratio: 16/10; border-radius: 12px;
  background: linear-gradient(160deg, #13243a, #0a1628);
  border: 1px solid var(--border-light);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.hvc-photo svg { opacity: 0.15; }
.hvc-photo span { font-family: var(--mono); font-size: 0.7rem; color: var(--text-muted); }

.hvc-partners {
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.2rem;
}
.hvc-partner { text-align: center; }
.hvc-partner-label {
  font-family: var(--mono); font-size: 0.55rem; color: var(--text-muted);
  letter-spacing: 1px; margin-bottom: 0.25rem;
}
.hvc-partner-name {
  font-family: var(--heading); font-weight: 700; font-size: 0.95rem;
  color: rgba(255,255,255,0.25);
}

.hvc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.hvc-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: 10px; padding: 0.8rem; text-align: center;
}
.hvc-stat-num { font-family: var(--heading); font-weight: 700; font-size: 1.1rem; color: var(--blue-soft); }
.hvc-stat-label { font-size: 0.65rem; color: var(--text-muted); margin-top: 0.1rem; }

/* Numbers — override sutil pra mudar fundo e adicionar border-bottom */
.sobre-numbers-section { border-bottom: 1px solid var(--border-dark); padding: 4rem 0; background: var(--light-bg); }

/* Mission */
.mission-section { padding: 5rem 0; background: var(--white); }
.mission-quote {
  font-family: var(--heading); font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--text-dark); line-height: 1.35;
  letter-spacing: -0.5px;
  position: relative; padding-left: 1.8rem;
  max-width: 600px;
}
.mission-quote::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; border-radius: 2px;
  background: linear-gradient(180deg, var(--blue), var(--blue-soft));
}
.mission-text {
  font-size: 0.95rem; color: var(--text-dark-secondary);
  line-height: 1.75; max-width: 520px; margin-top: 1.5rem;
}
.mission-pillars { margin-top: 2.5rem; }
.pillar {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.pillar-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.pillar-icon svg { width: 20px; height: 20px; stroke-width: 2; fill: none; }
.pillar-icon.mi-1 { background: rgba(0,123,255,0.08); }
.pillar-icon.mi-1 svg { stroke: var(--blue); }
.pillar-icon.mi-2 { background: rgba(46,204,113,0.08); }
.pillar-icon.mi-2 svg { stroke: var(--green); }
.pillar-icon.mi-3 { background: rgba(243,156,18,0.08); }
.pillar-icon.mi-3 svg { stroke: var(--orange, #F39C12); }
.pillar h3 {
  font-family: var(--heading); font-weight: 600; font-size: 0.95rem;
  color: var(--text-dark); margin-bottom: 0.2rem;
}
.pillar p { font-size: 0.85rem; color: var(--text-dark-secondary); line-height: 1.55; margin: 0; }

/* Timeline (escopado em .tl-container pra não conflitar com timeline da mentoria) */
.timeline-section { padding: 5rem 0; background: var(--light-bg); }
.tl-container {
  position: relative; padding-left: 2.5rem; max-width: 700px;
}
.tl-container::before {
  content: ''; position: absolute;
  left: 11px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--blue), rgba(0,123,255,0.1));
}
.tl-container .tl-item {
  position: relative; margin-bottom: 2.5rem; padding-left: 1.5rem;
}
.tl-container .tl-item:last-child { margin-bottom: 0; }
.tl-container .tl-item::before {
  content: ''; position: absolute; left: -2.5rem; top: 0.2rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--light-bg); border: 2.5px solid var(--blue);
  z-index: 1; margin-left: -4px;
}
.tl-container .tl-item.tl-now::before {
  background: var(--blue); box-shadow: 0 0 10px rgba(0,123,255,0.4);
  width: 14px; height: 14px; margin-left: -5px;
}
.tl-year {
  font-family: var(--heading); font-weight: 700; font-size: 1.1rem;
  color: var(--blue); margin-bottom: 0.2rem;
}

/* Marcelo (Dark) */
.sobre-marcelo-section {
  padding: 5rem 0; background: var(--navy);
  position: relative; overflow: hidden;
}
.sobre-marcelo-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,123,255,0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,123,255,0.015) 1px, transparent 1px);
  background-size: 50px 50px; pointer-events: none;
}
.sobre-marcelo-photo {
  width: 100%; aspect-ratio: 4/5; border-radius: 16px;
  background: linear-gradient(160deg, #13243a, #0a1628);
  border: 1px solid var(--border-light);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
  position: relative; z-index: 2;
}
.sobre-marcelo-photo svg { opacity: 0.15; }
.sobre-marcelo-photo span { font-family: var(--mono); font-size: 0.75rem; color: var(--text-muted); }

/* cred-list em fundo dark — overrides do estilo light que existe na home */
.sobre-marcelo-section .cred-list li { color: var(--text-secondary); }
.sobre-marcelo-section .cred-check { background: rgba(0,123,255,0.1); }
.sobre-marcelo-section .cred-check svg { stroke: var(--blue-soft); }

/* Partnerships (Light) */
.sobre-partners-section { padding: 5rem 0; background: var(--white); }
.partner-block {
  background: var(--light-bg);
  border: 1px solid var(--border-dark);
  border-radius: 16px; padding: 2.5rem; height: 100%;
}
.pb-logo {
  width: 64px; height: 64px; border-radius: 14px;
  background: var(--white); border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-weight: 700; font-size: 0.7rem;
  color: var(--text-muted); margin-bottom: 1.2rem;
}
.partner-block h3 {
  font-family: var(--heading); font-weight: 700;
  font-size: 1.05rem; color: var(--text-dark); margin-bottom: 0.5rem;
}
.partner-block p {
  font-size: 0.88rem; color: var(--text-dark-secondary);
  line-height: 1.65; margin-bottom: 1rem;
}
.pb-benefits { list-style: none; padding: 0; margin: 0; }
.pb-benefits li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.84rem; color: var(--text-dark-secondary);
  margin-bottom: 0.5rem; line-height: 1.45;
}
.pb-check {
  width: 18px; height: 18px; min-width: 18px; border-radius: 5px;
  background: rgba(0,123,255,0.08);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.pb-check svg { width: 11px; height: 11px; stroke: var(--blue); stroke-width: 2.5; fill: none; }

/* CTA */
.sobre-cta-section {
  background: var(--navy-deep); padding: 5rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.sobre-cta-section::before {
  content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,123,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.sobre-cta-title {
  font-family: var(--heading); font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: -0.8px; color: var(--white);
  margin-bottom: 0.6rem;
  position: relative; z-index: 2;
}
.sobre-cta-sub {
  font-size: 0.92rem; color: var(--text-secondary);
  max-width: 450px; margin: 0 auto 2rem; line-height: 1.7;
  position: relative; z-index: 2;
}
.btn-sobre-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--blue); color: var(--white);
  font-family: var(--heading); font-weight: 600; font-size: 0.95rem;
  padding: 0.9rem 2.2rem; border-radius: 10px; text-decoration: none;
  transition: all 0.3s; box-shadow: 0 4px 24px rgba(0,123,255,0.35);
  position: relative; z-index: 2;
}
.btn-sobre-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,123,255,0.5); color: var(--white); }
.btn-sobre-cta svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 2; fill: none; }

@media (max-width: 992px) {
  .sobre-hero { padding: 6.5rem 0 3rem; }
  .sobre-marcelo-photo { max-width: 320px; margin: 0 auto 2rem; }
}
@media (max-width: 576px) {
  .sobre-hero h1 { font-size: 1.9rem; }
  .tl-container { padding-left: 2rem; }
}

