/* ============================================================
   TRECON TREINAMENTOS — Plataforma EAD
   Sistema visual: azul técnico + grafite + cinzas
   ============================================================ */

:root {
  /* Marca */
  --blue-700: #0E4FA8;   /* hover / CTA secundário */
  --blue-600: #135FCB;
  --blue-500: #1A6FE3;   /* azul principal (símbolo da logo) */
  --blue-400: #4A8DEC;
  --blue-100: #E7F0FE;   /* tint suave para cards/tags */
  --blue-050: #F2F7FF;

  /* Grafite / neutros */
  --ink-900: #131822;    /* títulos institucionais */
  --ink-800: #1E2533;
  --ink-700: #2C3445;
  --gray-600: #586074;   /* corpo */
  --gray-500: #767E92;
  --gray-400: #A2A9B8;
  --gray-300: #D6DCE6;
  --gray-200: #E6EBF2;
  --gray-100: #F0F3F8;
  --gray-050: #F6F8FB;
  --white: #FFFFFF;

  /* Suporte */
  --green-500: #169B62;  /* aprovado / certificado */
  --amber-500: #E0A516;

  /* Tokens semânticos */
  --bg: var(--white);
  --bg-soft: var(--gray-050);
  --surface: var(--white);
  --border: var(--gray-200);
  --text: var(--gray-600);
  --heading: var(--ink-900);

  /* Tipografia */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  /* Raio / sombra */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(19,24,34,.06), 0 1px 3px rgba(19,24,34,.05);
  --shadow-md: 0 6px 20px rgba(19,24,34,.07), 0 2px 6px rgba(19,24,34,.04);
  --shadow-lg: 0 24px 60px rgba(19,24,34,.12), 0 8px 24px rgba(19,24,34,.07);
  --shadow-blue: 0 14px 34px rgba(26,111,227,.30);

  --container: 1200px;
  --gut: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section--ink { background: var(--ink-900); color: var(--gray-300); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
}
.section--ink .eyebrow { color: var(--blue-400); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 18px 0 16px;
}
.section-head p { font-size: 18px; color: var(--gray-500); }
.section--ink .section-head h2 { color: var(--white); }
.section--ink .section-head p { color: var(--gray-400); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--blue-500);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover { background: var(--blue-700); transform: translateY(-2px); }
.btn--ghost {
  background: var(--white);
  color: var(--ink-800);
  border-color: var(--gray-300);
}
.btn--ghost:hover { border-color: var(--blue-500); color: var(--blue-600); }
.btn--soft {
  background: var(--blue-100);
  color: var(--blue-700);
}
.btn--soft:hover { background: var(--blue-500); color: #fff; }
.btn--light {
  background: var(--white);
  color: var(--ink-900);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--lg { padding: 17px 32px; font-size: 16.5px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.header.is-scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__logo-img { height: 48px; width: auto; display: block; }
.brand__logo-wrap { display: inline-flex; background: #fff; border-radius: var(--r-sm); padding: 6px 10px; }
.brand__logo-wrap .brand__logo-img { height: 40px; }
.brand__mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(150deg, var(--blue-500), var(--blue-700));
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(26,111,227,.35);
}
.brand__mark svg { width: 21px; height: 21px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink-900);
  letter-spacing: -.02em;
  line-height: 1;
}
.brand__name span { color: var(--blue-600); }
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 4px; margin-left: 6px; }
.nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-700);
  padding: 9px 13px;
  border-radius: 9px;
  transition: color .15s ease, background .15s ease;
}
.nav a:hover { color: var(--blue-600); background: var(--blue-050); }

.header__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.header__login {
  font-size: 15px; font-weight: 700; color: var(--ink-800);
  padding: 10px 8px;
}
.header__login:hover { color: var(--blue-600); }

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--gray-300);
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.burger span, .burger span::before, .burger span::after {
  content: "";
  position: absolute;
  width: 18px; height: 2px;
  background: var(--ink-800);
  border-radius: 2px;
  left: 50%; transform: translateX(-50%);
  transition: transform .25s ease, opacity .2s ease;
}
.burger span { top: 50%; margin-top: -1px; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { transform: translateX(-50%) translateY(6px) rotate(45deg); }
.burger.is-open span::after { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 74px 0 auto 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 16px var(--gut) 28px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
}
.mobile-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-nav a {
  font-size: 17px; font-weight: 600; color: var(--ink-800);
  padding: 13px 8px; border-radius: 10px;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav .mobile-cta { margin-top: 16px; display: grid; gap: 10px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 88% -8%, var(--blue-050), transparent 70%),
    linear-gradient(180deg, #fff 0%, var(--gray-050) 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-700);
  margin-bottom: 24px;
}
.hero__pill b { color: var(--blue-600); }
.hero__pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(22,155,98,.16);
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  letter-spacing: -.03em;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--blue-600); }
.hero__lead {
  font-size: 19px;
  color: var(--gray-500);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-700);
}
.hero__badge svg { width: 19px; height: 19px; color: var(--blue-500); flex-shrink: 0; }

/* ---------- Mockup plataforma (hero) ---------- */
.mockup {
  position: relative;
}
.mockup__app {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mockup__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-050);
}
.mockup__bar .dots { display: flex; gap: 6px; }
.mockup__bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-300); }
.mockup__bar .dots i:nth-child(1){ background:#FF6058;}
.mockup__bar .dots i:nth-child(2){ background:#FFBE2E;}
.mockup__bar .dots i:nth-child(3){ background:#29C740;}
.mockup__url {
  margin-left: 10px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600; color: var(--gray-500);
  background: #fff; border: 1px solid var(--gray-200);
  padding: 5px 12px; border-radius: 7px;
  display: flex; align-items: center; gap: 7px;
}
.mockup__url svg { width: 12px; height: 12px; color: var(--green-500); }
.mockup__body { padding: 18px; display: grid; gap: 14px; }

.player {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #16233a url('/hero-thumb.png') center/cover no-repeat;
  display: grid; place-items: center;
}
.player::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,.1) 100%);
}
.player::after {
  content: "AULA 03 · ZONA DE RISCO E ZONA CONTROLADA";
  position: absolute; left: 14px; bottom: 38px;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: .06em; color: rgba(255,255,255,.9);
}
.player__play {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  position: relative; z-index: 1;
}
.player__play svg { width: 24px; height: 24px; color: var(--blue-600); margin-left: 3px; }
.player__bar {
  position: absolute; left: 14px; right: 14px; bottom: 16px;
  height: 5px; border-radius: 3px; background: rgba(255,255,255,.28);
  z-index: 1;
}
.player__bar i { display: block; width: 42%; height: 100%; border-radius: 3px; background: var(--blue-400); }

.mockup__row { display: grid; grid-template-columns: 1.3fr 1fr; gap: 14px; }
.mini-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 14px;
  background: #fff;
}
.mini-card__label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 10px;
}
.module {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--ink-700);
  padding: 7px 0;
}
.module + .module { border-top: 1px solid var(--gray-100); }
.module .tick {
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--green-500);
}
.module .tick svg { width: 11px; height: 11px; color: #fff; }
.module.is-active .tick { background: var(--blue-100); }
.module.is-active .tick svg { color: var(--blue-600); }
.module.is-locked { color: var(--gray-400); }
.module.is-locked .tick { background: var(--gray-100); }
.module.is-locked .tick svg { color: var(--gray-400); }

.progress-card { display: flex; flex-direction: column; justify-content: space-between; }
.progress-card .pct {
  font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--ink-900);
  line-height: 1;
}
.progress-card .pct span { font-size: 15px; color: var(--gray-400); }
.bar { height: 8px; border-radius: 5px; background: var(--gray-100); overflow: hidden; margin-top: 12px; }
.bar i { display: block; height: 100%; border-radius: 5px; background: linear-gradient(90deg, var(--blue-500), var(--blue-400)); }
.progress-card small { font-size: 12px; color: var(--gray-500); margin-top: 8px; font-weight: 600; }

/* floating chips */
.float-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  border-radius: 14px;
  padding: 12px 15px;
  display: flex; align-items: center; gap: 11px;
}
.float-chip__icon {
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center; flex-shrink: 0;
}
.float-chip__icon svg { width: 19px; height: 19px; }
.float-chip b { display: block; font-family: var(--font-display); font-size: 15px; color: var(--ink-900); }
.float-chip span { font-size: 12px; font-weight: 600; color: var(--gray-500); }
.float-chip--cert { top: -22px; right: -18px; }
.float-chip--cert .float-chip__icon { background: rgba(22,155,98,.12); color: var(--green-500); }
.float-chip--students { bottom: -22px; left: -22px; }
.float-chip--students .float-chip__icon { background: var(--blue-100); color: var(--blue-600); }

/* ---------- Faixa de credibilidade ---------- */
.cred {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.cred__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.cred__item {
  display: flex; align-items: center; gap: 14px;
  padding: 30px 26px;
}
.cred__item + .cred__item { border-left: 1px solid var(--gray-100); }
.cred__icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--blue-050); color: var(--blue-600);
  display: grid; place-items: center; flex-shrink: 0;
}
.cred__icon svg { width: 23px; height: 23px; }
.cred__item b { display: block; font-family: var(--font-display); font-size: 16px; color: var(--ink-900); line-height: 1.25; }
.cred__item span { font-size: 13.5px; color: var(--gray-500); }

/* ---------- Métricas ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 4vw, 46px); color: var(--blue-600); line-height: 1;
}
.stat__label { font-size: 14.5px; font-weight: 600; color: var(--gray-500); margin-top: 8px; }

/* ---------- Cursos ---------- */
.courses-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter {
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  white-space: nowrap;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--gray-300); background: #fff; color: var(--ink-700);
  cursor: pointer; transition: all .15s ease;
}
.filter:hover { border-color: var(--blue-400); color: var(--blue-600); }
.filter.is-active { background: var(--ink-900); border-color: var(--ink-900); color: #fff; }

.course-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.course-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.course-card.is-hidden { display: none; }
.course-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid; place-items: center;
  color: #fff;
  overflow: hidden;
}
.course-thumb svg.bg-pattern { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; }
.course-thumb .ct-icon {
  position: relative; z-index: 1;
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.34);
  display: grid; place-items: center;
  backdrop-filter: blur(2px);
}
.course-thumb .ct-icon svg { width: 28px; height: 28px; }
.course-thumb .tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(255,255,255,.92); color: var(--ink-900);
}
.course-thumb .level {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: 11.5px; font-weight: 700;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(19,24,34,.5); color: #fff;
  backdrop-filter: blur(2px);
}
.tn-blue   { background: linear-gradient(135deg, #1A6FE3, #0E4FA8); }
.tn-graph  { background: linear-gradient(135deg, #2C3445, #131822); }
.tn-steel  { background: linear-gradient(135deg, #3D6CA8, #1E3A5F); }
.tn-cyan   { background: linear-gradient(135deg, #1689C9, #0E5C92); }
.tn-slate  { background: linear-gradient(135deg, #4A8DEC, #1A6FE3); }

.course-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.course-cat {
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue-600); margin-bottom: 9px;
}
.course-body h3 { font-size: 20px; margin-bottom: 10px; line-height: 1.2; }
.course-body p { font-size: 14.5px; color: var(--gray-500); margin-bottom: 18px; flex: 1; }
.course-meta {
  display: flex; align-items: center; gap: 16px;
  padding-top: 16px; border-top: 1px solid var(--gray-100);
  margin-bottom: 16px;
}
.course-meta .m { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--gray-600); }
.course-meta .m svg { width: 15px; height: 15px; color: var(--gray-400); }
.course-foot { display: flex; align-items: center; justify-content: space-between; }
.course-foot .more {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 14.5px; color: var(--blue-600);
}
.course-foot .more svg { width: 16px; height: 16px; transition: transform .18s ease; }
.course-card:hover .course-foot .more svg { transform: translateX(4px); }

/* ---------- Como funciona ---------- */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  counter-reset: step;
  position: relative;
}
.step {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 30px 24px;
  position: relative;
}
.step__num {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--blue-500); color: #fff;
  display: grid; place-items: center; margin-bottom: 20px;
}
.step__icon { color: var(--blue-600); margin-bottom: 14px; }
.step__icon svg { width: 26px; height: 26px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--gray-500); }
.step__arrow {
  position: absolute; top: 50px; right: -20px; z-index: 2;
  color: var(--gray-300);
}
.step:last-child .step__arrow { display: none; }

/* ---------- Benefícios ---------- */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 28px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.benefit:hover { border-color: var(--blue-200, #cfe0fb); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.benefit__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--blue-050); color: var(--blue-600);
  display: grid; place-items: center; margin-bottom: 20px;
}
.benefit__icon svg { width: 25px; height: 25px; }
.benefit h3 { font-size: 19px; margin-bottom: 9px; }
.benefit p { font-size: 15px; color: var(--gray-500); }

/* ---------- Empresas ---------- */
.enterprise {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(74,141,236,.18), transparent 60%),
    var(--ink-900);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: center;
}
.enterprise__text { padding: 60px; }
.enterprise__text .eyebrow { color: var(--blue-400); }
.enterprise__text h2 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); margin: 16px 0 18px; }
.enterprise__text p { color: var(--gray-400); font-size: 18px; margin-bottom: 28px; max-width: 480px; }
.enterprise__list { display: grid; gap: 13px; margin-bottom: 32px; }
.enterprise__list li { display: flex; align-items: center; gap: 12px; color: var(--gray-300); font-weight: 600; font-size: 15.5px; }
.enterprise__list svg { width: 20px; height: 20px; color: var(--blue-400); flex-shrink: 0; }
.enterprise__cta { display: flex; flex-wrap: wrap; gap: 13px; }
.enterprise__panel { padding: 60px 60px 60px 0; }
.team-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 26px;
  backdrop-filter: blur(4px);
}
.team-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.team-card__head b { font-family: var(--font-display); color: #fff; font-size: 16px; }
.team-card__head .badge { font-size: 11.5px; font-weight: 700; color: var(--blue-400); background: rgba(74,141,236,.15); padding: 5px 11px; border-radius: 999px; }
.team-row { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.08); }
.team-row:first-of-type { border-top: 0; }
.team-row .av { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-400), var(--blue-700)); display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 14px; font-family: var(--font-display); flex-shrink: 0; }
.team-row .info { flex: 1; min-width: 0; }
.team-row .info b { display: block; color: #fff; font-size: 14px; font-family: var(--font-body); font-weight: 700; }
.team-row .info span { font-size: 12px; color: var(--gray-500); }
.team-row .tprog { width: 120px; }
.team-row .tprog .bar { background: rgba(255,255,255,.12); margin: 0; }
.team-row .tprog small { color: var(--gray-400); font-size: 11px; font-weight: 700; }
.team-row .tstatus { font-size: 12px; font-weight: 700; }
.team-row .tstatus.done { color: var(--green-500); }
.team-row .tstatus.prog { color: var(--blue-400); }

/* ---------- Depoimentos ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 30px;
  display: flex; flex-direction: column;
}
.quote__stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--amber-500); }
.quote__stars svg { width: 17px; height: 17px; }
.quote p { font-size: 16px; color: var(--ink-700); line-height: 1.6; flex: 1; margin-bottom: 22px; }
.quote__who { display: flex; align-items: center; gap: 13px; }
.quote__who .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-500), var(--blue-700)); display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 700; flex-shrink: 0; }
.quote__who b { display: block; font-family: var(--font-body); font-weight: 700; color: var(--ink-900); font-size: 15px; }
.quote__who span { font-size: 13px; color: var(--gray-500); }

/* ---------- Certificados / conformidade ---------- */
.cert-grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: 56px; align-items: center; }
.cert-feature { display: flex; gap: 16px; margin-bottom: 26px; }
.cert-feature__icon {
  width: 48px; height: 48px; border-radius: 13px; flex-shrink: 0;
  background: var(--blue-050); color: var(--blue-600);
  display: grid; place-items: center;
}
.cert-feature__icon svg { width: 24px; height: 24px; }
.cert-feature h3 { font-size: 18px; margin-bottom: 5px; }
.cert-feature p { font-size: 15px; color: var(--gray-500); }

.certificate {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 34px;
}
.certificate__frame { border: 2px solid var(--blue-100); border-radius: var(--r-md); padding: 30px 28px; position: relative; }
.certificate__seal {
  position: absolute; top: 22px; right: 22px;
  width: 64px; height: 64px; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, var(--blue-500), var(--blue-700));
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow-blue);
}
.certificate__seal svg { width: 28px; height: 28px; }
.certificate small { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-600); }
.certificate h3 { font-size: 15px; color: var(--gray-500); font-family: var(--font-body); font-weight: 600; margin: 18px 0 4px; }
.certificate .student { font-family: var(--font-display); font-size: 27px; color: var(--ink-900); margin-bottom: 18px; }
.certificate .course-name { font-size: 16px; font-weight: 700; color: var(--ink-800); margin-bottom: 6px; }
.certificate .meta-line { font-size: 13px; color: var(--gray-500); }
.certificate__sign { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--gray-100); }
.certificate__sign .sg { font-size: 12px; color: var(--gray-500); }
.certificate__sign .sg b { display: block; font-family: var(--font-display); color: var(--ink-900); font-size: 14px; }
.certificate__code { font-family: var(--font-body); font-size: 11px; color: var(--gray-400); font-weight: 600; }

/* ---------- CTA final ---------- */
.final-cta {
  position: relative;
  background:
    radial-gradient(600px 380px at 15% 20%, rgba(74,141,236,.30), transparent 60%),
    radial-gradient(600px 380px at 90% 90%, rgba(14,79,168,.40), transparent 60%),
    linear-gradient(135deg, var(--blue-600), var(--blue-700));
  border-radius: var(--r-xl);
  padding: 72px 40px;
  text-align: center;
  overflow: hidden;
}
.final-cta h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); max-width: 760px; margin: 0 auto 18px; }
.final-cta p { color: rgba(255,255,255,.86); font-size: 19px; max-width: 560px; margin: 0 auto 32px; }
.final-cta__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-900); color: var(--gray-400); padding: 72px 0 36px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer .brand__name { color: #fff; }
.footer .brand__name span { color: var(--blue-400); }
.footer__about { font-size: 15px; color: var(--gray-500); max-width: 320px; margin: 20px 0 22px; }
.footer__contact { display: grid; gap: 11px; }
.footer__contact a, .footer__contact span { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--gray-400); }
.footer__contact svg { width: 17px; height: 17px; color: var(--blue-400); flex-shrink: 0; }
.footer__col h4 { color: #fff; font-size: 14px; font-family: var(--font-body); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col a { display: block; font-size: 14.5px; color: var(--gray-400); padding: 6px 0; transition: color .15s ease; }
.footer__col a:hover { color: var(--blue-400); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; flex-wrap: wrap; gap: 16px; }
.footer__bottom p { font-size: 13.5px; color: var(--gray-500); }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: var(--gray-400); transition: all .15s ease; }
.footer__social a:hover { background: var(--blue-500); border-color: var(--blue-500); color: #fff; }
.footer__social svg { width: 17px; height: 17px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1000px) {
  .nav, .header__login { display: none; }
  .burger { display: block; }
  .mobile-nav { display: flex; }
  .hero__grid { grid-template-columns: 1fr; gap: 64px; }
  .mockup { max-width: 560px; margin-inline: auto; }
  .cred__grid { grid-template-columns: repeat(2, 1fr); }
  .cred__item:nth-child(3) { border-left: 0; }
  .cred__item:nth-child(odd) { border-left: 0; }
  .course-grid, .benefits-grid, .quotes { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step__arrow { display: none !important; }
  .enterprise { grid-template-columns: 1fr; }
  .enterprise__text { padding: 48px 40px 0; }
  .enterprise__panel { padding: 32px 40px 48px; }
  .cert-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .header__inner { height: 66px; }
  .mobile-nav { inset-block-start: 66px; }
  .course-grid, .benefits-grid, .quotes, .steps, .cred__grid { grid-template-columns: 1fr; }
  .cred__item { border-left: 0 !important; }
  .hero__cta .btn, .final-cta__btns .btn, .enterprise__cta .btn { width: 100%; }
  .hero__cta, .final-cta__btns { width: 100%; }
  .enterprise__text, .enterprise__panel { padding-inline: 24px; }
  .enterprise__text { padding-top: 40px; }
  .float-chip--cert { right: 0; top: -16px; }
  .float-chip--students { left: 0; bottom: -16px; }
  .certificate { padding: 20px; }
  .certificate__frame { padding: 22px 18px; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
