/* Segurança & Evidências — LP v2.1 · 27/05/2026
   v2.1: tipografia institucional sans-serif (Inter body + Barlow Condensed display)
   alinhada ao segmento de segurança pública. Hero com vídeo institucional no
   lugar dos stats. Stats viraram strip horizontal compacta. Ícones SVG line-art
   sóbrios substituindo emojis. Cards de eixos com identidade dos cursos da
   plataforma (navy + yellow gradient) + dropdown no hover listando cursos da trilha.
   v2.0: header negativo, 4 backgrounds cinematográficos, glass morphism, grain.
   Paleta placeholder até Brand Book oficial: #022949 + #E87722. */

:root {
  --blue-950: #011528;
  --blue-900: #022949;
  --blue-800: #03335A;
  --blue-700: #05406F;
  --blue-600: #0E5288;
  --blue-500: #1F6AA8;
  --blue-400: #4B8BC3;
  --blue-300: #7EAFD4;
  --blue-200: #B8D1E8;
  --blue-100: #E8F0F8;
  --blue-050: #F4F8FC;
  --orange-700: #B3500F;
  --orange-600: #D26515;
  --orange-500: #E87722;
  --orange-400: #FF8E3C;
  --orange-300: #FFB37A;
  --orange-200: #FFC99B;
  --orange-100: #FFE6CF;
  --orange-050: #FFF8F2;
  --gray-900: #1A1A1A;
  --gray-800: #2D2D2D;
  --gray-700: #4A4A4A;
  --gray-500: #8A8A8A;
  --gray-400: #B0B0B0;
  --gray-300: #C5C5C5;
  --gray-200: #E5E5E5;
  --gray-100: #F4F6F8;
  --gray-050: #FAFBFC;
  --white: #FFFFFF;

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Barlow Condensed', 'Inter', 'Arial Narrow', sans-serif;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --shadow-xs: 0 1px 2px rgba(2, 41, 73, 0.06);
  --shadow-sm: 0 2px 8px rgba(2, 41, 73, 0.08);
  --shadow-md: 0 10px 30px rgba(2, 41, 73, 0.14);
  --shadow-lg: 0 24px 60px rgba(2, 41, 73, 0.22);
  --shadow-xl: 0 40px 100px rgba(2, 41, 73, 0.32);
  --shadow-glow-orange: 0 12px 40px rgba(232, 119, 34, 0.36);
  --shadow-glow-orange-strong: 0 16px 56px rgba(232, 119, 34, 0.55);

  --maxw: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--blue-700); text-decoration: none; transition: color 0.15s var(--ease); }
a:hover { color: var(--orange-500); }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; margin: 0 0 0.6em; color: var(--blue-900); letter-spacing: -0.005em; }
h1 { font-family: var(--font-display); font-size: clamp(1.85rem, 1.2rem + 2.4vw, 3.1rem); font-weight: 800; letter-spacing: 0; line-height: 1.05; text-transform: uppercase; }
h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 1.15rem + 1.8vw, 2.6rem); font-weight: 800; letter-spacing: 0; line-height: 1.08; text-transform: uppercase; }
h3 { font-size: 1.22rem; font-weight: 700; letter-spacing: -0.005em; }
h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-700); font-weight: 600; }
p { margin: 0 0 1em; }

/* === SVG icons — line-art sóbrio para o segmento === */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  stroke-width: 1.7;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--sm { width: 16px; height: 16px; }
.icon--md { width: 20px; height: 20px; }
.icon--lg { width: 28px; height: 28px; }
.icon--xl { width: 40px; height: 40px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.4rem; position: relative; z-index: 3; }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; background: var(--orange-500); color: var(--white); padding: 0.7em 1.2em; border-radius: var(--radius); z-index: 100; font-weight: 600; }

/* === Grain overlay global (premium texture) === */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.5;
}

/* === Topbar — agora navy escuro com logo branco === */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(180deg, rgba(1, 21, 40, 0.96) 0%, rgba(2, 41, 73, 0.92) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s var(--ease);
}
.topbar.is-scrolled {
  background: rgba(1, 21, 40, 0.98);
  border-bottom-color: rgba(232, 119, 34, 0.18);
  box-shadow: 0 8px 24px rgba(1, 21, 40, 0.35);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1.4rem; gap: 1.5rem; }
.brand { display: flex; align-items: center; }
.brand:hover { text-decoration: none; }
.brand__logo {
  height: 56px; width: auto; max-width: 240px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: transform 0.25s var(--ease), opacity 0.15s var(--ease), filter 0.25s var(--ease);
}
.brand:hover .brand__logo { transform: scale(1.04); opacity: 1; filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 179, 122, 0.5)); }

.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a { color: rgba(255, 255, 255, 0.82); font-size: 0.94rem; font-weight: 500; position: relative; }
.nav a:not(.btn)::after { content: ''; position: absolute; bottom: -6px; left: 0; right: 0; height: 2px; background: var(--orange-500); transform: scaleX(0); transform-origin: center; transition: transform 0.25s var(--ease); }
.nav a:not(.btn):hover { color: var(--white); }
.nav a:not(.btn):hover::after { transform: scaleX(1); }

.nav-toggle { display: none; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 8px; padding: 0.6rem; flex-direction: column; gap: 4px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--white); display: block; transition: transform 0.2s; }
.navmobile { display: none; flex-direction: column; padding: 0 1.4rem 1.2rem; gap: 0.6rem; background: var(--blue-950); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.navmobile a { padding: 0.95rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.92); font-weight: 500; }
.navmobile a:last-child { border-bottom: 0; margin-top: 0.6rem; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.92rem 1.7rem;
  border-radius: var(--radius);
  font-family: inherit; font-weight: 600; font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
  pointer-events: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:hover::before { transform: translateX(100%); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--orange-400); outline-offset: 3px; }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.86rem; }
.btn--big { padding: 1.15rem 2.2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn--accent { background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%); color: var(--white); border-color: transparent; box-shadow: var(--shadow-glow-orange); }
.btn--accent:hover { box-shadow: var(--shadow-glow-orange-strong); color: var(--white); filter: brightness(1.08); }
.btn--accent svg { transition: transform 0.3s var(--ease); }
.btn--accent:hover svg { transform: translateX(4px); }

.btn--ghost { background: transparent; color: var(--blue-900); border-color: var(--blue-900); }
.btn--ghost:hover { background: var(--blue-900); color: var(--white); }

.btn--outline-light { background: rgba(255, 255, 255, 0.06); color: var(--white); border-color: rgba(255, 255, 255, 0.45); backdrop-filter: blur(10px); }
.btn--outline-light:hover { background: var(--white); color: var(--blue-900); border-color: var(--white); }
.btn--outline-light svg { transition: transform 0.3s var(--ease); }
.btn--outline-light:hover svg { transform: translate(2px, -2px); }

/* === Eyebrows === */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--orange-500); font-weight: 700;
  margin: 0 0 1.2em;
  font-family: var(--font-display);
}
.eyebrow .icon { width: 16px; height: 16px; stroke-width: 2; }
.eyebrow--inline { color: var(--orange-600); }
.eyebrow--light { color: var(--orange-300); }
.eyebrow--pill {
  padding: 0.45em 1em;
  border: 1px solid rgba(255, 179, 122, 0.35);
  border-radius: 999px;
  background: rgba(232, 119, 34, 0.10);
  backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; gap: 0.6em;
}
.eyebrow__pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--orange-400); box-shadow: 0 0 12px var(--orange-300); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }

/* === Hero === */
.hero {
  position: relative;
  padding: 7rem 0 6rem;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  min-height: 760px;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('/assets/img/hero-thinktank.webp') center/cover no-repeat, var(--blue-900);
  z-index: -3;
  transform: scale(1.05);
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(1, 21, 40, 0.78) 0%, rgba(2, 41, 73, 0.55) 50%, rgba(1, 21, 40, 0.85) 100%),
    linear-gradient(180deg, rgba(1, 21, 40, 0.3) 0%, rgba(1, 21, 40, 0.65) 100%);
  z-index: -2;
}
.hero__glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.55;
  z-index: -1; pointer-events: none;
  animation: float 14s ease-in-out infinite;
}
.hero__glow--orange { width: 480px; height: 480px; background: var(--orange-500); top: -120px; right: -120px; }
.hero__glow--blue { width: 380px; height: 380px; background: var(--blue-500); bottom: -100px; left: -80px; animation-delay: -7s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 20px) scale(1.06); }
}

.hero__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3rem; align-items: center; }
.hero__copy h1 { color: var(--white); margin-bottom: 0.5em; }
.accent { color: var(--orange-400); position: relative; display: inline; background: linear-gradient(120deg, var(--orange-400) 0%, var(--orange-300) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__copy .lead { font-size: 1.05rem; color: rgba(255, 255, 255, 0.92); margin-bottom: 1.5em; max-width: 30em; line-height: 1.55; }
.hero__cta { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 1.4em; }
.hero__seal { font-size: 0.88rem; color: rgba(255, 255, 255, 0.78); display: flex; align-items: center; gap: 0.6rem; margin: 0 0 1.4em; }
.hero__seal strong { color: var(--white); }
.seal-dot { width: 8px; height: 8px; background: var(--orange-500); border-radius: 50%; display: inline-block; box-shadow: 0 0 14px var(--orange-400); animation: pulse 2.6s ease-in-out infinite; flex-shrink: 0; }

/* === Hero stats compactos (strip horizontal) === */
.hero__stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-pill {
  display: flex; flex-direction: column; gap: 0.15rem;
  padding: 0.2rem 0.1rem;
}
.stat-pill__num {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0;
  display: flex; align-items: baseline; gap: 0.04em;
}
.stat-pill__num .stat-prefix { color: var(--orange-300); font-size: 0.7em; margin-right: 0.05em; }
.stat-pill__label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  line-height: 1.3;
}

/* === Hero video player === */
.hero__video {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-xl), 0 0 80px rgba(232, 119, 34, 0.18);
  aspect-ratio: 16 / 9;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hero__video::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: inherit; pointer-events: none;
  background: linear-gradient(135deg, rgba(232, 119, 34, 0.45) 0%, transparent 35%, transparent 65%, rgba(75, 139, 195, 0.35) 100%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
}
.hero__video-poster {
  position: absolute; inset: 0;
  background: var(--blue-900) center/cover no-repeat;
  cursor: pointer;
  border: 0;
  padding: 0; margin: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease), filter 0.3s var(--ease);
}
.hero__video-poster::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(1, 21, 40, 0.15) 0%, rgba(1, 21, 40, 0.55) 100%);
}
.hero__video-poster:hover { transform: scale(1.02); filter: brightness(1.05); }
.hero__video-play {
  position: relative; z-index: 2;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(232, 119, 34, 0.55), 0 0 0 8px rgba(232, 119, 34, 0.18);
  transition: all 0.3s var(--ease-bounce);
}
.hero__video-poster:hover .hero__video-play {
  transform: scale(1.1);
  box-shadow: 0 16px 50px rgba(232, 119, 34, 0.7), 0 0 0 14px rgba(232, 119, 34, 0.22);
}
.hero__video-play svg { width: 32px; height: 32px; fill: var(--white); margin-left: 4px; }
.hero__video-caption {
  position: absolute; bottom: 1.2rem; left: 1.4rem; right: 1.4rem; z-index: 2;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  display: flex; align-items: center; gap: 0.5rem;
}
.hero__video-caption .icon { color: var(--orange-300); }
.hero__video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em;
  pointer-events: none;
}
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5)); animation: scrollLine 2s ease-in-out infinite; transform-origin: top; }
@keyframes scrollLine { 0%, 100% { transform: scaleY(0.3); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* === Institutional band === */
.institutional {
  background: var(--blue-950) url('/assets/img/bg-blueprint.svg');
  background-blend-mode: overlay;
  color: var(--white);
  padding: 2rem 0;
  border-top: 3px solid var(--orange-500);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.institutional__inner { display: flex; align-items: center; gap: 1.6rem; }
.institutional__seal {
  flex-shrink: 0;
  color: var(--orange-300);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(232, 119, 34, 0.10);
  border: 1px solid rgba(232, 119, 34, 0.28);
}
.institutional__seal .icon { stroke-width: 1.7; }
.institutional p { margin: 0; font-size: 1rem; line-height: 1.6; color: rgba(255, 255, 255, 0.92); }
.institutional strong { color: var(--orange-300); }

/* === Section base === */
.section { padding: 6rem 0; position: relative; }
.section--alt {
  background:
    radial-gradient(ellipse at top right, rgba(232, 119, 34, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(31, 106, 168, 0.08) 0%, transparent 55%),
    var(--gray-100);
}
.section--patterned {
  background:
    radial-gradient(circle at 90% 10%, rgba(232, 119, 34, 0.07) 0%, transparent 38%),
    radial-gradient(circle at 5% 90%, rgba(31, 106, 168, 0.06) 0%, transparent 42%),
    var(--white) url('/assets/img/bg-blueprint.svg');
  background-blend-mode: normal, normal, multiply;
}
.section--light-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section--light-bg::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background: var(--gray-100);
}
.section--light-bg::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
  opacity: 0.18;
  mix-blend-mode: multiply;
}
.section--light-bg[data-bg="library"]::after { background-image: url('/assets/img/library-light.webp'); }
.section--light-bg[data-bg="trails"]::after { background-image: url('/assets/img/trails-light.webp'); }
.section--light-bg .container { position: relative; z-index: 2; }
.section--dark { background: var(--blue-900); color: var(--white); overflow: hidden; isolation: isolate; }
.section--dark .section__title { color: var(--white); }
.section--cinematic { color: var(--white); overflow: hidden; isolation: isolate; }
.section--cinematic .section__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  transform: scale(1.03);
  will-change: transform;
}
.section--cinematic[data-bg="method"] .section__bg { background-image: url('/assets/img/method-papers.webp'); }
.section--cinematic[data-bg="city"] .section__bg { background-image: url('/assets/img/city-aerial.webp'); }
.section--cinematic[data-bg="thinktank"] .section__bg { background-image: url('/assets/img/hero-thinktank.webp'); }
.section--cinematic[data-bg="auditorium"] .section__bg { background-image: url('/assets/img/cta-auditorium.webp'); }
.section--cinematic .section__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(1, 21, 40, 0.82) 0%, rgba(2, 41, 73, 0.6) 50%, rgba(1, 21, 40, 0.88) 100%);
  z-index: -1;
}
.section--lead { color: var(--white); }
.section--cta { color: var(--white); text-align: center; padding: 7rem 0; }
.section--cta h2 { color: var(--white); font-family: var(--font-display); }
.section--cta p { color: rgba(255, 255, 255, 0.88); max-width: 42em; margin: 0 auto 2em; font-size: 1.15rem; }

.section__head { margin-bottom: 3.5rem; max-width: 52em; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__title { color: var(--blue-900); margin-bottom: 0.4em; }
.section__title--light { color: var(--white); }
.section__lead { font-size: 1.15rem; color: var(--gray-700); margin: 0; line-height: 1.6; }
.section__lead--light { color: rgba(255, 255, 255, 0.88); }

/* === Cards 3 (Personas) — glass morphism === */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
  background: linear-gradient(160deg, var(--white) 0%, var(--gray-050) 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-300));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.card:hover { border-color: var(--orange-300); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card:hover::after { transform: scaleX(1); }
.card:hover .card__arrow { transform: translateX(4px); color: var(--orange-500); }
.card--featured {
  background: linear-gradient(160deg, var(--blue-050) 0%, var(--white) 60%, var(--orange-050) 100%);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-sm);
}
.card__ribbon {
  position: absolute; top: 18px; right: -32px;
  transform: rotate(35deg);
  background: var(--orange-500); color: var(--white);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35em 2.2em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.card__icon {
  width: 56px; height: 56px;
  margin-bottom: 1.1rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-050), var(--orange-050));
  color: var(--blue-900);
  border: 1px solid var(--blue-100);
}
.card__icon .icon { width: 28px; height: 28px; stroke-width: 1.7; }
.card--featured .card__icon { background: linear-gradient(135deg, var(--orange-100), var(--orange-050)); color: var(--orange-700); border-color: var(--orange-200); }
.card h3 { color: var(--blue-900); margin-bottom: 0.2em; font-size: 1.35rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.005em; }
.card__role { font-size: 0.78rem; color: var(--orange-500); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 1em; }
.card__arrow { position: absolute; bottom: 1.5rem; right: 1.5rem; font-size: 1.4rem; color: var(--gray-400); transition: all 0.3s var(--ease); }

/* === Eixos — cards com identidade dos cursos da plataforma + dropdown no hover ===
   Cada card tem o look do catálogo da plataforma (navy + radial yellow + chip CURSO)
   e revela no hover/focus a lista de cursos da trilha. */
.eixos {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  overflow: visible;
}
.eixo-card {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 20%, rgba(232, 119, 34, 0.32) 0%, transparent 55%),
    linear-gradient(160deg, var(--blue-950) 0%, var(--blue-900) 55%, var(--blue-800) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  cursor: pointer;
  overflow: visible;
  isolation: isolate;
}
.eixo-card::before {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 100% 0%, rgba(255, 179, 122, 0.18) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.eixo-card:hover,
.eixo-card.is-open {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(232, 119, 34, 0.35);
  border-color: rgba(232, 119, 34, 0.4);
  z-index: 10;
}
.eixo-card:hover::before,
.eixo-card.is-open::before { opacity: 1; }

.eixo-card__head {
  position: relative;
  padding: 1.4rem 1.4rem 1.3rem;
  display: flex; flex-direction: column;
  min-height: 180px;
}
.eixo-card__chip {
  display: inline-flex; align-items: center;
  align-self: flex-start;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.32em 0.85em;
  border-radius: 4px;
  margin-bottom: 0.9rem;
  box-shadow: 0 2px 8px rgba(232, 119, 34, 0.35);
}
.eixo-card__icon {
  position: absolute;
  top: 1.1rem; right: 1.2rem;
  color: rgba(255, 179, 122, 0.6);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.eixo-card:hover .eixo-card__icon,
.eixo-card.is-open .eixo-card__icon {
  color: var(--orange-300);
  transform: scale(1.08) rotate(-3deg);
}
.eixo-card__title {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 800;
  color: var(--white);
  margin: 0 0 0.35em;
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.eixo-card__desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.87rem;
  line-height: 1.45;
  margin: 0 0 1rem;
  flex: 1;
}
.eixo-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.8rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}
.eixo-card__count {
  font-size: 0.78rem;
  color: var(--orange-300);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.4em;
}
.eixo-card__count .icon { color: currentColor; }
.eixo-card__more {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.3em;
  transition: color 0.2s var(--ease), gap 0.25s var(--ease);
}
.eixo-card:hover .eixo-card__more,
.eixo-card.is-open .eixo-card__more {
  color: var(--orange-300);
  gap: 0.5em;
}

/* Dropdown — abre no hover (desktop) e em .is-open (mobile via click) */
.eixo-card__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: linear-gradient(170deg, var(--white) 0%, var(--gray-050) 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s var(--ease), transform 0.25s var(--ease), visibility 0s linear 0.25s;
  z-index: 50;
  max-height: 360px;
  overflow-y: auto;
}
.eixo-card__dropdown::before {
  content: ''; position: absolute; top: -6px; left: 2rem;
  width: 12px; height: 12px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
  transform: rotate(45deg);
}
@media (hover: hover) {
  .eixo-card:hover .eixo-card__dropdown,
  .eixo-card:focus-within .eixo-card__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.25s var(--ease), transform 0.3s var(--ease), visibility 0s;
  }
}
.eixo-card.is-open .eixo-card__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s var(--ease), transform 0.3s var(--ease), visibility 0s;
}

.eixo-course {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--blue-900);
  transition: background 0.18s var(--ease), transform 0.18s var(--ease);
  position: relative;
}
.eixo-course + .eixo-course { margin-top: 0.15rem; }
.eixo-course:hover {
  background: var(--blue-050);
  text-decoration: none;
  color: var(--blue-900);
  transform: translateX(2px);
}
.eixo-course__thumb {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 25%, rgba(232, 119, 34, 0.55) 0%, transparent 55%),
    linear-gradient(160deg, var(--blue-950) 0%, var(--blue-800) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-300);
  position: relative;
  overflow: hidden;
}
.eixo-course__thumb::after {
  content: 'CURSO';
  position: absolute; bottom: 3px; left: 0; right: 0;
  font-family: var(--font-display);
  font-size: 0.5rem; font-weight: 800; text-align: center;
  color: var(--orange-300);
  letter-spacing: 0.15em;
  line-height: 1;
}
.eixo-course__body { flex: 1; min-width: 0; padding-top: 0.1rem; }
.eixo-course__title {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--blue-900);
  margin: 0 0 0.15em;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.eixo-course__meta {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin: 0;
  display: flex; align-items: center; gap: 0.5em;
}
.eixo-course__meta .tag {
  background: var(--orange-100);
  color: var(--orange-700);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15em 0.5em;
  border-radius: 3px;
}
.eixo-course__meta .tag--soon { background: var(--blue-100); color: var(--blue-700); }
.eixo-course__arrow {
  align-self: center;
  color: var(--gray-400);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.eixo-course:hover .eixo-course__arrow {
  color: var(--orange-500);
  transform: translateX(3px);
}
.eixo-card__dropdown-foot {
  margin-top: 0.6rem;
  padding: 0.6rem 0.8rem 0.2rem;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}
.eixo-card__dropdown-foot a {
  font-size: 0.82rem;
  color: var(--blue-700);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.3em;
}
.eixo-card__dropdown-foot a:hover { color: var(--orange-500); }

/* === Cases === */
.cases { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; }
.case {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem;
  border: 1px solid var(--gray-200);
  border-left: 5px solid var(--orange-500);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.case::after {
  content: ''; position: absolute; top: 0; right: 0; width: 160px; height: 160px;
  background: radial-gradient(circle at top right, rgba(232, 119, 34, 0.10), transparent 70%);
  pointer-events: none;
}
.case:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-left-color: var(--orange-400); border-left-width: 7px; }
.case__chip {
  display: inline-block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--gray-500); text-transform: uppercase;
  margin-bottom: 0.5em;
}
.case__where {
  font-size: 0.82rem; color: var(--blue-700); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin: 0 0 0.5em;
  display: inline-flex; align-items: center; gap: 0.4em;
}
.case__where .icon { color: var(--orange-500); }
.case h3 { color: var(--blue-900); margin-bottom: 0.7em; font-family: var(--font-display); font-size: 1.55rem; text-transform: uppercase; letter-spacing: 0; line-height: 1.05; }
.case__stat { display: flex; flex-direction: column; gap: 0.2em; margin: 0 0 0.9em; }
.case__stat strong {
  color: var(--orange-500); font-size: 1.9rem; font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: -0.02em; line-height: 1;
}
.case__stat span { color: var(--gray-700); font-size: 0.92rem; line-height: 1.4; }

/* === Método === */
.metodo__head { margin-bottom: 3rem; max-width: 50em; }
.metodo__frameworks { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.metodo__framework {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.metodo__framework::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 179, 122, 0.5), transparent);
}
.metodo__framework:hover { border-color: rgba(255, 179, 122, 0.35); background: linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%); transform: translateY(-3px); }
.metodo__framework-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.metodo__chip {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--orange-300); text-transform: uppercase;
  padding: 0.3em 0.8em;
  border: 1px solid rgba(255, 179, 122, 0.4);
  border-radius: 999px;
  background: rgba(232, 119, 34, 0.10);
}
.metodo__framework h3 {
  color: var(--white); font-size: 2rem; margin: 0;
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: 0.01em;
}
.metodo__framework p { color: rgba(255, 255, 255, 0.85); }
.emmie-list, .sms-scale { margin: 1.2em 0; padding-left: 0; list-style: none; }
.emmie-list li {
  display: grid; grid-template-columns: 2em 1fr; gap: 0.6em;
  padding: 0.6em 0.4em 0.6em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  align-items: center;
}
.emmie-list li:last-child { border-bottom: 0; }
.emmie-list strong {
  color: var(--orange-400); font-weight: 900; font-size: 1.35em;
  font-family: var(--font-display);
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.4em; height: 1.4em;
  background: rgba(232, 119, 34, 0.18);
  border: 1px solid rgba(232, 119, 34, 0.4);
  border-radius: 8px;
}
.sms-scale { counter-reset: sms; padding-left: 0; }
.sms-scale li {
  counter-increment: sms;
  padding: 0.6em 0.4em 0.6em 2.6em; position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}
.sms-scale li:last-child { border-bottom: 0; }
.sms-scale li::before {
  content: counter(sms);
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1.9em; height: 1.9em;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9em;
  box-shadow: 0 2px 8px rgba(232, 119, 34, 0.4);
}
.metodo__source { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); font-style: italic; margin: 1.4em 0 0; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.08); }

/* === Cursos === */
.cursos { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.6rem; }
.curso {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem;
  display: flex; flex-direction: column;
  transition: all 0.3s var(--ease);
  position: relative;
}
.curso:hover { border-color: var(--orange-300); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.curso--free {
  border: 2px solid var(--orange-500);
  background: linear-gradient(160deg, var(--white) 0%, var(--orange-050) 100%);
  box-shadow: var(--shadow-glow-orange);
}
.curso--free:hover { box-shadow: var(--shadow-glow-orange-strong); transform: translateY(-7px); }
.curso--free::before {
  content: '★ Comece aqui';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4em 1.1em;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.curso--b2g { background: linear-gradient(160deg, var(--blue-050) 0%, var(--white) 100%); border-color: var(--blue-200); }
.curso__tag {
  display: inline-block; align-self: flex-start;
  background: var(--blue-100); color: var(--blue-700);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.4em 0.9em;
  border-radius: 999px;
  margin-bottom: 1em;
}
.curso--free .curso__tag { background: var(--orange-500); color: var(--white); }
.curso--b2g .curso__tag { background: var(--blue-200); color: var(--blue-900); }
.curso h3 { color: var(--blue-900); margin-bottom: 0.4em; font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase; letter-spacing: 0.005em; line-height: 1.1; }
.curso__meta {
  font-size: 0.85rem; color: var(--gray-500);
  margin-bottom: 1em; font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.4em;
  flex-wrap: wrap;
}
.curso__meta .icon { color: var(--blue-500); }
.curso p:not(.curso__meta):not(.curso__tag) { flex: 1; color: var(--gray-700); }
.curso .btn { margin-top: 1.4em; }

/* === Aulões === */
.auloes { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: center; }
.auloes__copy h2 { margin-bottom: 0.4em; }
.auloes__lead { font-size: 1.1rem; color: rgba(255, 255, 255, 0.88); line-height: 1.6; margin-bottom: 1.6em; }
.auloes__date {
  background: linear-gradient(160deg, rgba(1, 21, 40, 0.85) 0%, rgba(2, 41, 73, 0.75) 100%);
  color: var(--white);
  border: 1px solid rgba(255, 179, 122, 0.25);
  border-radius: var(--radius-xl);
  padding: 2.4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  position: relative;
  overflow: hidden;
}
.auloes__date-glow {
  position: absolute; bottom: -80px; right: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(232, 119, 34, 0.55) 0%, transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.auloes__date-label { margin: 0; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--orange-300); font-weight: 700; }
.auloes__when { font-size: 1rem; line-height: 1; margin: 1rem 0 !important; position: relative; }
.auloes__when strong { display: block; font-size: 5.5rem; color: var(--white); font-weight: 900; line-height: 0.95; margin-bottom: 0.1em; font-family: var(--font-display); letter-spacing: -0.04em; }
.auloes__when span { display: block; color: var(--orange-300); font-weight: 700; letter-spacing: 0.2em; font-size: 1.1rem; }
.auloes__date-when { font-size: 1rem; color: rgba(255, 255, 255, 0.85); margin: 0; }
.auloes__date-when span { color: var(--orange-300); font-weight: 600; }
.auloes__date-divider { width: 40%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 179, 122, 0.5), transparent); margin: 1.4rem auto; }
.auloes__date-meta { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); margin: 0; }

/* === Lead form === */
.lead { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; padding: 1.5rem 0; }
.lead__copy h2 { color: var(--white); }
.lead__desc { color: rgba(255, 255, 255, 0.88); font-size: 1.12rem; margin-bottom: 1.6em; line-height: 1.6; }
.lead__list { list-style: none; padding: 0; margin: 0 0 1.8em; }
.lead__list li { padding: 0.7em 0 0.7em 2em; position: relative; color: rgba(255, 255, 255, 0.95); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.lead__list li:last-child { border-bottom: 0; }
.lead__list li::before {
  content: '✓'; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1.4em; height: 1.4em;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78em; font-weight: 700;
  box-shadow: 0 2px 8px rgba(232, 119, 34, 0.4);
}
.lead__trust {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}
.lead__trust > span {
  color: var(--orange-300);
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 0.15rem;
}
.lead__trust > span .icon { color: var(--orange-300); width: 16px; height: 16px; }
.lead__trust p { margin: 0; font-size: 0.88rem; color: rgba(255, 255, 255, 0.85); line-height: 1.4; }

.lead__form {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 252, 0.96) 100%);
  padding: 2.6rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  color: var(--gray-900);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.lead__form-head { margin-bottom: 1.4rem; }
.lead__form-head h3 { color: var(--blue-900); margin-bottom: 0.2em; font-family: var(--font-display); }
.lead__form-head p { color: var(--gray-500); margin: 0; font-size: 0.92rem; }
.lead__form label { display: block; margin-bottom: 1.1rem; }
.lead__form label > span { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-700); margin-bottom: 0.45em; }
.lead__form input[type=text],
.lead__form input[type=email],
.lead__form select {
  width: 100%; padding: 0.95rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit; font-size: 1rem;
  color: var(--gray-900); background: var(--white);
  transition: all 0.18s var(--ease);
}
.lead__form input::placeholder { color: var(--gray-400); }
.lead__form input:focus, .lead__form select:focus {
  outline: 0; border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(232, 119, 34, 0.15);
}
.lead__form input:invalid:not(:placeholder-shown) { border-color: #D14545; }
.lead__form .checkbox { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: var(--gray-700); margin-bottom: 1.5rem; line-height: 1.5; }
.lead__form .checkbox input { width: auto; margin-top: 0.25em; flex-shrink: 0; accent-color: var(--orange-500); }
.lead__form .checkbox span { display: inline; margin: 0; }
.lead__status { margin-top: 1.1rem; padding: 0; border-radius: var(--radius); font-size: 0.9rem; min-height: 1em; }
.lead__status:not(:empty) { padding: 0.9em 1em; }
.lead__status.is-ok { background: #E6F4EA; color: #1B5E20; border: 1px solid #B7E0C2; }
.lead__status.is-err { background: #FDECEA; color: #B71C1C; border: 1px solid #F5C6C0; }
.lead__status.is-loading { background: var(--blue-100); color: var(--blue-700); border: 1px solid var(--blue-200); }

/* === FAQ === */
.faq { display: grid; gap: 0.8rem; max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s var(--ease);
}
.faq details:hover { border-color: var(--blue-200); }
.faq details[open] { border-color: var(--orange-500); box-shadow: var(--shadow-sm); }
.faq summary {
  padding: 1.3rem 1.6rem;
  cursor: pointer; font-weight: 600;
  color: var(--blue-900);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: background 0.15s var(--ease);
  font-size: 1.02rem;
}
.faq summary:hover { background: var(--gray-050); }
.faq summary::after {
  content: '+';
  font-size: 1.9rem; color: var(--orange-500);
  font-weight: 300; line-height: 1;
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { padding: 0 1.6rem 1.4rem; color: var(--gray-700); margin: 0; line-height: 1.65; }
.faq details a { color: var(--blue-700); text-decoration: underline; }

/* === CTA final === */
.cta-final { padding: 1.5rem 0; }
.cta-final__logo {
  width: 240px; height: auto; margin: 0 auto 1.8rem;
  filter: brightness(0) invert(1) drop-shadow(0 12px 40px rgba(232, 119, 34, 0.6));
  opacity: 0.96;
  animation: floatLogo 6s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.cta-final h2 { color: var(--white); font-size: clamp(2rem, 1.4rem + 2.2vw, 3.2rem); margin-bottom: 0.5em; font-family: var(--font-display); }

/* === Footer === */
.footer { background: var(--blue-950); color: rgba(255, 255, 255, 0.85); padding: 4rem 0 1.8rem; font-size: 0.93rem; position: relative; }
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-500), transparent);
  opacity: 0.4;
}
.footer h4 { color: var(--white); margin: 0 0 1em; font-size: 0.78rem; letter-spacing: 0.14em; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.4rem; padding-bottom: 2.4rem; border-bottom: 1px solid rgba(255, 255, 255, 0.10); }
.footer__logo { width: 220px; height: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.92; }
.footer__grid a { display: block; padding: 0.34em 0; color: rgba(255, 255, 255, 0.7); transition: color 0.15s var(--ease); }
.footer__grid a:hover { color: var(--orange-300); text-decoration: none; }
.footer__small { font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); margin-top: 1.2em; line-height: 1.5; }
.footer__bottom { padding-top: 1.6rem; text-align: center; font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }
.footer__bottom p { margin: 0; }
.footer__uplevel-credit {
  margin-top: 1rem !important;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.footer__uplevel-credit > span { white-space: nowrap; }
.footer__uplevel-credit a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer__uplevel-credit a:hover { opacity: 1; transform: translateY(-1px); }
.footer__uplevel-credit img {
  height: 22px; width: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.25));
}

/* === Reveal-on-scroll via Intersection Observer === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__glow, .seal-dot, .eyebrow__pulse, .hero__scroll-line, .cta-final__logo { animation: none; }
}

/* === VSL (Vídeo no hero) === */
.hero__vsl { width: 100%; max-width: 560px; margin-left: auto; }
.vsl {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--blue-950);
}
.vsl::before {
  content: ''; position: absolute; inset: -2px;
  background: linear-gradient(135deg, var(--orange-500) 0%, transparent 35%, transparent 65%, var(--blue-500) 100%);
  border-radius: var(--radius-xl);
  z-index: -1; opacity: 0.4;
  filter: blur(14px);
}
.vsl__frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: var(--blue-950); }
.vsl__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; pointer-events: none; }
.vsl__sound {
  position: absolute; bottom: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.9rem 0.55rem 0.7rem;
  background: rgba(1, 21, 40, 0.78);
  border: 1px solid rgba(255, 179, 122, 0.45);
  color: var(--white);
  border-radius: 999px;
  font-family: inherit; font-weight: 600; font-size: 0.82rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s var(--ease);
  z-index: 2;
}
.vsl__sound:hover { background: var(--orange-500); border-color: var(--orange-500); transform: translateY(-1px); }
.vsl__sound-icon { flex-shrink: 0; }
.vsl__sound-icon--on { display: none; }
.vsl[data-unmuted="true"] .vsl__sound-icon--off { display: none; }
.vsl[data-unmuted="true"] .vsl__sound-icon--on { display: block; }
.vsl[data-unmuted="true"] .vsl__sound-label::after { content: ' ativado'; }
.vsl[data-unmuted="true"] .vsl__sound { background: var(--orange-500); border-color: var(--orange-500); }

/* === Features (Sobre a plataforma) === */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.feature {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-300));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.feature:hover { border-color: var(--orange-300); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature:hover::after { transform: scaleX(1); }
.feature__icon { font-size: 2.2rem; margin-bottom: 0.8rem; line-height: 1; }
.feature h3 { color: var(--blue-900); margin-bottom: 0.4em; font-size: 1.1rem; font-family: var(--font-display); }
.feature p { font-size: 0.93rem; color: var(--gray-700); margin: 0; }

/* === Authority === */
.authority { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; }
.authority__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.authority__item:hover { border-color: var(--orange-300); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.authority__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.5rem + 1.5vw, 3.2rem);
  font-weight: 900;
  color: var(--orange-500);
  line-height: 1; margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
}
.authority__label { font-size: 0.78rem; color: var(--blue-900); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.3; margin-bottom: 0.6rem; }
.authority__detail { font-size: 0.84rem; color: var(--gray-700); line-height: 1.45; margin: 0; }
.authority__item--badge { background: linear-gradient(160deg, var(--blue-050) 0%, var(--white) 100%); border-color: var(--blue-200); }
.authority__partners { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; margin-bottom: 0.6rem; }
.authority__partners span {
  font-size: 0.7rem; font-weight: 700; color: var(--blue-700);
  background: var(--white);
  border: 1px solid var(--blue-200);
  padding: 0.3em 0.7em;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* === Trilhas === */
.trilhas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.trilha {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.trilha::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-300));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.trilha:hover { border-color: var(--orange-500); transform: translateY(-5px); box-shadow: var(--shadow-md); text-decoration: none; color: inherit; }
.trilha:hover::after { transform: scaleX(1); }
.trilha:hover .trilha__cta { color: var(--orange-500); transform: translateX(4px); }
.trilha__icon { font-size: 2.4rem; margin-bottom: 1rem; line-height: 1; }
.trilha h3 { color: var(--blue-900); margin-bottom: 0.4em; font-size: 1.2rem; font-family: var(--font-display); }
.trilha p { font-size: 0.93rem; color: var(--gray-700); margin: 0 0 1.4em; flex: 1; }
.trilha__cta { font-size: 0.88rem; font-weight: 700; color: var(--blue-700); letter-spacing: 0.02em; transition: all 0.3s var(--ease); display: inline-block; }
.trilha--cta { background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 100%); border-color: var(--blue-900); color: var(--white); }
.trilha--cta h3, .trilha--cta p { color: var(--white); }
.trilha--cta p { color: rgba(255, 255, 255, 0.85); }
.trilha--cta .trilha__cta { color: var(--orange-300); }
.trilha--cta:hover { color: var(--white); border-color: var(--orange-500); transform: translateY(-5px); }
.trilha--cta:hover .trilha__cta { color: var(--orange-400); }

/* === Aulas especiais === */
.especiais { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.especial {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.6rem;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: all 0.3s var(--ease);
}
.especial:hover { border-color: rgba(255, 179, 122, 0.45); background: linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%); transform: translateY(-3px); }
.especial__chip {
  display: inline-block;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--orange-300); text-transform: uppercase;
  padding: 0.3em 0.8em;
  border: 1px solid rgba(255, 179, 122, 0.4);
  border-radius: 999px;
  background: rgba(232, 119, 34, 0.10);
  margin-bottom: 0.9em;
}
.especial h3 { color: var(--white); font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.5em; }
.especial p { color: rgba(255, 255, 255, 0.84); font-size: 0.93rem; margin: 0; }

/* === Publico (Para quem é) === */
.publico { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.publico__col {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  border-top: 4px solid var(--orange-500);
}
.publico__col h3 { color: var(--blue-900); font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.8em; }
.publico__col ul { list-style: none; padding: 0; margin: 0; }
.publico__col li {
  padding: 0.4em 0 0.4em 1.4em;
  position: relative;
  color: var(--gray-700);
  font-size: 0.93rem;
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.45;
}
.publico__col li:last-child { border-bottom: 0; }
.publico__col li::before {
  content: '·';
  position: absolute; left: 0.4em; top: 50%; transform: translateY(-50%);
  color: var(--orange-500); font-weight: 900; font-size: 1.4em;
}

/* === Garantia === */
.section--guarantee { background: linear-gradient(135deg, var(--orange-050) 0%, var(--white) 60%, var(--blue-050) 100%); padding: 5rem 0; }
.guarantee {
  display: grid; grid-template-columns: auto 1fr; gap: 3rem;
  align-items: center;
  max-width: 920px; margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--orange-200);
}
.guarantee__badge { color: var(--orange-500); flex-shrink: 0; filter: drop-shadow(0 8px 16px rgba(232, 119, 34, 0.25)); animation: floatLogo 5s ease-in-out infinite; }
.guarantee__copy h2 { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem); margin-bottom: 0.5em; }
.guarantee__copy p { font-size: 1.05rem; color: var(--gray-700); margin-bottom: 1em; line-height: 1.6; }
.guarantee__small { font-size: 0.9rem; color: var(--gray-500); font-style: italic; margin: 0 !important; }

/* === Depoimentos === */
.depoimentos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.depoimento {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem;
  border: 1px solid var(--gray-200);
  margin: 0;
  position: relative;
  transition: all 0.3s var(--ease);
}
.depoimento::before {
  content: '"';
  position: absolute; top: -10px; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem; line-height: 1;
  color: var(--orange-300);
  font-weight: 900;
}
.depoimento:hover { border-color: var(--orange-300); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.depoimento blockquote { margin: 0 0 1.2em; padding: 0; font-size: 1.02rem; line-height: 1.55; color: var(--gray-900); font-style: italic; }
.depoimento figcaption { padding-top: 1em; border-top: 1px solid var(--gray-200); font-size: 0.85rem; }
.depoimento figcaption strong { display: block; color: var(--blue-900); margin-bottom: 0.15em; font-weight: 700; font-style: normal; }
.depoimento figcaption span { color: var(--gray-500); font-style: normal; }
.depoimentos__note { text-align: center; margin: 2rem 0 0; font-size: 0.85rem; color: var(--gray-500); }

/* === Livro === */
.section--book { background: var(--gray-100); }
.book { display: grid; grid-template-columns: 320px 1fr; gap: 4rem; align-items: center; max-width: 980px; margin: 0 auto; }
.book__cover {
  position: relative;
  aspect-ratio: 0.7 / 1;
  border-radius: 4px 8px 8px 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.06);
  transform: rotate(-2deg);
  transition: transform 0.4s var(--ease-out);
}
.book__cover:hover { transform: rotate(0) translateY(-4px) scale(1.02); }
.book__cover-inner {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 60%, var(--blue-900) 100%);
  padding: 1.8rem 1.6rem 2rem 1.9rem;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--white);
  border-left: 8px solid var(--orange-500);
}
.book__cover-brand { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange-300); }
.book__cover-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; line-height: 1.1; color: var(--white); margin: 0; letter-spacing: -0.02em; }
.book__cover-title span { display: block; color: var(--orange-300); font-weight: 700; font-size: 1.4rem; margin-top: 0.15em; }
.book__cover-line { width: 50px; height: 3px; background: var(--orange-500); margin: 0.6rem 0; }
.book__cover-meta { font-size: 0.78rem; color: rgba(255, 255, 255, 0.7); margin: 0; line-height: 1.4; }
.book__cover-spine { position: absolute; top: 0; left: 0; bottom: 0; width: 6px; background: linear-gradient(90deg, rgba(0,0,0,0.45), transparent); }
.book__copy h2 { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem); }
.book__lead { font-size: 1.05rem; color: var(--gray-700); margin-bottom: 1.4em; line-height: 1.6; }
.book__highlights { list-style: none; padding: 0; margin: 0 0 1.8em; }
.book__highlights li { padding: 0.55em 0 0.55em 1.7em; position: relative; color: var(--gray-700); }
.book__highlights li::before { content: '✓'; position: absolute; left: 0; top: 0.55em; width: 1.2em; height: 1.2em; background: var(--orange-500); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7em; font-weight: 700; }

/* === Instituto === */
.instituto-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start; }
.instituto__copy p { color: rgba(255, 255, 255, 0.92); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.2em; }
.instituto__copy strong { color: var(--white); }
.instituto__plataforma { border-left: 3px solid var(--orange-500); padding-left: 1.2em; margin-top: 1.8em !important; font-style: italic; }
.instituto__pactos {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem;
  backdrop-filter: blur(14px);
}
.instituto__pactos h3 { color: var(--orange-300); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 0.7em; font-family: var(--font-sans); font-weight: 700; }
.instituto__pactos h3 + ul { margin-bottom: 1.5em; }
.instituto__pactos h3:not(:first-child) { margin-top: 0; }
.instituto__pactos ul { list-style: none; padding: 0; margin: 0 0 1.4em; }
.instituto__pactos li { padding: 0.5em 0; color: rgba(255, 255, 255, 0.88); font-size: 0.92rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.instituto__pactos li:last-child { border-bottom: 0; }
.instituto__pactos strong { color: var(--white); font-weight: 700; }

/* === Form de contato — canais === */
.lead__channels { display: flex; flex-direction: column; gap: 0.8rem; }
.lead__channel {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.2s var(--ease);
}
.lead__channel:hover { background: rgba(232, 119, 34, 0.18); border-color: rgba(255, 179, 122, 0.45); color: var(--white); transform: translateX(4px); }
.lead__channel-icon { font-size: 1.4rem; flex-shrink: 0; }
.lead__channel div { display: flex; flex-direction: column; }
.lead__channel strong { font-size: 0.95rem; color: var(--white); }
.lead__channel span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.7); }

.lead__form textarea {
  width: 100%; padding: 0.95rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit; font-size: 1rem;
  color: var(--gray-900); background: var(--white);
  transition: all 0.18s var(--ease);
  resize: vertical;
  min-height: 110px;
}
.lead__form textarea:focus { outline: 0; border-color: var(--orange-500); box-shadow: 0 0 0 4px rgba(232, 119, 34, 0.15); }

/* === Responsive === */
@media (max-width: 1024px) {
  .hero__grid, .auloes, .lead, .metodo__frameworks { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__video { max-width: 620px; margin: 0 auto; }
  .hero__stats-strip { max-width: 560px; }
}

@media (max-width: 900px) {
  .hero { padding: 5rem 0 4rem; min-height: auto; }
  .cards-3 { grid-template-columns: 1fr; }
  .eixos { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .navmobile.is-open { display: flex; }
  .section { padding: 4rem 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__scroll { display: none; }
  .brand__logo { height: 44px; }
  .eixo-card__dropdown { position: relative; top: 0; box-shadow: none; border-top: 1px solid var(--gray-200); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .eixo-card__dropdown::before { display: none; }
}

@media (max-width: 640px) {
  .institutional__inner { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .auloes__when strong { font-size: 4rem; }
  .lead__form { padding: 2rem 1.6rem; }
  .hero__stats-strip { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .hero__stats-strip .stat-pill:nth-child(3) { grid-column: 1 / -1; }
  .eixos { grid-template-columns: 1fr; }
  .grain { opacity: 0.35; }
  .hero__video-play { width: 64px; height: 64px; }
  .hero__video-play svg { width: 24px; height: 24px; }
}
