/* ===========================================================
   GENESIS · Landing Page · GLOBAL PLATFORM
   Estética cinematográfica · timeline visual · CTA dual
   =========================================================== */

:root {
  --bg: #FAFAF7;
  --bg-soft: #F8FAFC;
  --bg-warm: #FFF9EC;
  --bg-cool: #F4F7FF;
  --surface: #FFFFFF;
  --ink: #0F172A;
  --ink-2: #1E293B;
  --muted: #64748B;
  --muted-2: #94A3B8;
  --line: #E2E8F0;
  --line-2: #F1F5F9;

  --gold: #C58E1F;
  --gold-soft: #E5B96B;
  --gold-bg: rgba(197, 142, 31, 0.08);
  --gold-bg-strong: rgba(197, 142, 31, 0.16);
  --violet: #6366F1;
  --violet-soft: #818CF8;
  --violet-bg: rgba(99, 102, 241, 0.08);
  --teal: #0891B2;
  --teal-soft: #22D3EE;
  --teal-bg: rgba(8, 145, 178, 0.08);

  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 32px 80px rgba(15, 23, 42, 0.16);
  --shadow-gold: 0 16px 48px rgba(197, 142, 31, 0.2);

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
img, svg, canvas { max-width: 100%; height: auto; }
section, main, header, footer, article, aside { max-width: 100vw; }

::selection { background: rgba(197, 142, 31, 0.2); color: var(--ink); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--violet), var(--teal));
  border-radius: 100px;
}

/* === AURORA BG === */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  animation: auroraDrift 25s ease-in-out infinite;
}
.aurora-blob.b1 {
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(197, 142, 31, 0.45), transparent 65%);
  top: -20%; left: -20%;
  animation-delay: 0s;
}
.aurora-blob.b2 {
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.32), transparent 65%);
  top: 40%; right: -15%;
  animation-delay: -8s;
}
.aurora-blob.b3 {
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.28), transparent 65%);
  bottom: -20%; left: 30%;
  animation-delay: -16s;
}
@keyframes auroraDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(8vw, -5vw) scale(1.1); }
  66% { transform: translate(-6vw, 6vw) scale(0.95); }
}

@media (max-width: 1000px) {
  .aurora-blob.b1 { width: 80vw; height: 80vw; }
  .aurora-blob.b2 { width: 70vw; height: 70vw; }
  .aurora-blob.b3 { width: 75vw; height: 75vw; }
}

/* === BG GRID === */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* === CURSOR GLOW === */
.cursor-glow {
  position: fixed;
  width: 700px; height: 700px;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(197, 142, 31, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(20px);
  transition: opacity 0.3s;
  opacity: 0;
}
.cursor-glow.active { opacity: 1; }
@media (max-width: 900px), (pointer: coarse) { .cursor-glow { display: none; } }

/* === TOPBAR === */
.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 18px 10px 14px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--line);
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  max-width: calc(100vw - 32px);
  transition: transform 0.4s ease;
}
.brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
}
.brand-mark {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--violet) 100%);
  color: white;
  border-radius: 6px;
  font-size: 12px;
}
.topnav { display: flex; gap: 22px; color: var(--muted); font-weight: 500; }
.topnav a { transition: color 0.2s; }
.topnav a:hover { color: var(--ink); }
.topcta {
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--gold), #B07C16);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(197, 142, 31, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.topcta:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(197, 142, 31, 0.45); }

@media (max-width: 768px) {
  .topnav { display: none; }
  .topbar { gap: 14px; padding: 8px 14px 8px 10px; }
  .brand-name { display: none; }
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
  color: var(--ink);
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  background: var(--gold-bg);
  border: 1px solid rgba(197, 142, 31, 0.2);
  border-radius: 100px;
  margin-bottom: 16px;
}

.gold { color: var(--gold) !important; }
.gold-tag { background: var(--gold-bg); color: var(--gold); border-color: rgba(197, 142, 31, 0.25); }
.violet-tag { background: var(--violet-bg); color: var(--violet); border-color: rgba(99, 102, 241, 0.25); }
.teal-tag { background: var(--teal-bg); color: var(--teal); border-color: rgba(8, 145, 178, 0.25); }

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 72px;
  padding: 0 16px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head .lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* === REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.8s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

/* =====================================================
   HERO · GENESIS
   ===================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 20px 100px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-warm) 100%);
  overflow: hidden;
}
.hero-particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-glow {
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, 110vw); height: min(1100px, 110vw);
  background: radial-gradient(circle, rgba(197, 142, 31, 0.18) 0%, rgba(99, 102, 241, 0.08) 40%, transparent 65%);
  pointer-events: none;
  filter: blur(40px);
  animation: heroGlowPulse 8s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.8; }
}

/* Orbs flutuantes */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.45;
  animation: orbFloat 14s ease-in-out infinite;
}
.orb-1 {
  width: 100px; height: 100px;
  top: 18%; left: 6%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 235, 153, 0.95), rgba(197, 142, 31, 0.7));
  animation-delay: 0s;
}
.orb-2 {
  width: 60px; height: 60px;
  top: 60%; left: 12%;
  background: radial-gradient(circle at 30% 30%, rgba(199, 210, 254, 0.9), rgba(99, 102, 241, 0.6));
  animation-delay: -4s;
}
.orb-3 {
  width: 80px; height: 80px;
  top: 22%; right: 8%;
  background: radial-gradient(circle at 30% 30%, rgba(191, 219, 254, 0.9), rgba(8, 145, 178, 0.6));
  animation-delay: -8s;
}
.orb-4 {
  width: 56px; height: 56px;
  top: 70%; right: 14%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 235, 153, 0.9), rgba(229, 185, 107, 0.6));
  animation-delay: -2s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  33% { transform: translate(20px, -30px) scale(1.1); opacity: 0.6; }
  66% { transform: translate(-15px, 25px) scale(0.95); opacity: 0.4; }
}
@media (max-width: 768px) {
  .orb-1 { width: 60px; height: 60px; }
  .orb-2 { width: 44px; height: 44px; }
  .orb-3 { width: 56px; height: 56px; }
  .orb-4 { width: 40px; height: 40px; }
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 1100px;
  z-index: 2;
}

.genesis-display {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin: 24px 0 28px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 30%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 8px 60px rgba(197, 142, 31, 0.3));
  animation: titleFade 1.2s var(--ease-out) 0.3s both;
}
@keyframes titleFade {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 auto 24px;
  max-width: 900px;
  color: var(--ink);
}
.hero-headline span { display: inline-block; margin: 0 4px; }
.hero-headline .gold {
  background: linear-gradient(135deg, var(--gold), #B07C16);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lede {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 44px;
  line-height: 1.5;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
  justify-content: center;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 14px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.stat span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}
.stat.highlight strong {
  background: linear-gradient(135deg, var(--gold), #B07C16);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 44px;
  background: linear-gradient(135deg, var(--gold), #B07C16);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  border-radius: 100px;
  box-shadow: 0 16px 40px rgba(197, 142, 31, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  margin: 8px 0 28px;
  animation: ctaBreath 3s ease-in-out infinite;
}
.hero-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 24px 56px rgba(197, 142, 31, 0.5);
}
.hero-cta span {
  transition: transform 0.3s;
  display: inline-block;
}
.hero-cta:hover span { transform: translateX(4px); }
@keyframes ctaBreath {
  0%, 100% { box-shadow: 0 16px 40px rgba(197, 142, 31, 0.35); }
  50% { box-shadow: 0 20px 56px rgba(197, 142, 31, 0.55); }
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color 0.2s;
}
.hero-scroll:hover { color: var(--gold); }
.hero-scroll .arrow {
  display: inline-block;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 600px) {
  .hero { padding: 100px 16px 60px; }
  .hero-stats { padding: 14px 18px; gap: 6px; }
  .stat { padding: 0 8px; }
  .stat strong { font-size: 1.3rem; }
  .stat span { font-size: 8px; letter-spacing: 0.1em; }
  .hero-cta { padding: 16px 32px; font-size: 1rem; }
}
@media (max-width: 400px) {
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 4px; padding: 14px; }
  .stat { border: none; }
}

/* =====================================================
   PROMESSA · 3 pilares
   ===================================================== */
.promessa {
  padding: 110px 0;
  background: var(--surface);
  position: relative;
}

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.pilar {
  padding: 44px 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.3s;
}
.pilar:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.1);
  border-color: rgba(197, 142, 31, 0.3);
}
.pilar-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  border-radius: 24px;
}
.pilar-icon.gold { background: var(--gold-bg); }
.pilar-icon.violet { background: var(--violet-bg); }
.pilar-icon.teal { background: var(--teal-bg); }
.pilar h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--ink);
}
.pilar p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .pilares-grid { grid-template-columns: 1fr; max-width: 500px; }
  .pilar { padding: 32px 24px; }
}

/* =====================================================
   MODALIDADE · 2 cards grandes
   ===================================================== */
.modalidade {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  position: relative;
}

.mod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.mod-card {
  padding: 44px 40px;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.mod-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.mod-presencial::before { background: linear-gradient(90deg, var(--gold), var(--gold-soft)); }
.mod-online::before { background: linear-gradient(90deg, var(--violet), var(--violet-soft)); }
.mod-card:hover { transform: translateY(-8px); box-shadow: 0 32px 80px rgba(15, 23, 42, 0.12); }
.mod-presencial:hover { border-color: rgba(197, 142, 31, 0.4); }
.mod-online:hover { border-color: rgba(99, 102, 241, 0.4); }

.mod-head { margin-bottom: 32px; }
.mod-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.mod-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 10px;
}
.mod-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

.mod-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mod-items li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 0.96rem;
  color: var(--ink-2);
  font-weight: 500;
}
.mod-items li:last-child { border-bottom: none; }
.mod-items li span {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-bg);
  color: var(--gold);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}
.mod-online .mod-items li span { background: var(--violet-bg); color: var(--violet); }

@media (max-width: 900px) {
  .mod-grid { grid-template-columns: 1fr; }
  .mod-card { padding: 32px 26px; }
}

/* =====================================================
   DIAS · TIMELINE
   ===================================================== */
.dias {
  padding: 110px 0;
  background: var(--surface);
  position: relative;
}

.dia-block {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 20px;
  position: relative;
}
.dia-block:last-child { margin-bottom: 0; }

.dia-head {
  text-align: center;
  margin-bottom: 48px;
}
.dia-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  padding: 8px 18px;
  background: var(--gold);
  color: white;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(197, 142, 31, 0.3);
}
.dia-num.violet-num {
  background: var(--violet);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}
.dia-head h3 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 12px;
  background: linear-gradient(135deg, var(--ink), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dia-2 .dia-head h3 {
  background: linear-gradient(135deg, var(--ink), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dia-head p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.timeline {
  position: relative;
  padding-left: 130px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 95px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--violet), var(--teal));
  opacity: 0.4;
  border-radius: 1px;
}

.time-item {
  position: relative;
  display: grid;
  grid-template-columns: 0 1fr;
  gap: 0;
  margin-bottom: 18px;
}
.time-item::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 22px;
  width: 14px;
  height: 14px;
  background: var(--surface);
  border: 3px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--surface), 0 4px 12px rgba(197, 142, 31, 0.25);
  z-index: 2;
}
.time-item.highlight::before {
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--surface), 0 0 24px var(--gold);
}
.time-item.big-highlight::before {
  background: linear-gradient(135deg, var(--gold), var(--violet));
  border-color: var(--gold);
  width: 20px;
  height: 20px;
  left: -45px;
  top: 19px;
  box-shadow: 0 0 0 4px var(--surface), 0 0 32px var(--gold);
}

.time {
  position: absolute;
  left: -118px;
  top: 18px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  white-space: nowrap;
}

.time-content {
  padding: 20px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.3s;
  grid-column: 2;
}
.time-content:hover {
  transform: translateX(4px);
  border-color: rgba(197, 142, 31, 0.3);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
.time-item.highlight .time-content {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--surface) 0%, var(--gold-bg) 100%);
  box-shadow: 0 12px 40px rgba(197, 142, 31, 0.15);
}
.time-item.big-highlight .time-content {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--surface) 0%, var(--gold-bg) 50%, var(--violet-bg) 100%);
  box-shadow: 0 16px 48px rgba(197, 142, 31, 0.2);
  padding: 28px 32px;
}
.time-content.break {
  background: var(--bg-soft);
  border-style: dashed;
}
.time-content strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}
.time-item.big-highlight .time-content strong {
  font-size: 1.25rem;
}
.time-content p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.time-extra {
  margin-top: 8px !important;
  font-style: italic;
  font-size: 0.85rem !important;
  color: var(--gold) !important;
  font-weight: 500;
}

.dia-saida {
  margin-top: 56px;
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--gold-bg) 100%);
  border: 1.5px solid rgba(197, 142, 31, 0.3);
  border-radius: 24px;
  box-shadow: var(--shadow-gold);
}
.dia-saida.violet-saida {
  background: linear-gradient(135deg, var(--surface) 0%, var(--violet-bg) 100%);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.18);
}
.saida-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}
.violet-saida .saida-label { color: var(--violet); }
.dia-saida ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dia-saida ul li {
  position: relative;
  padding-left: 26px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-2);
  font-weight: 500;
  line-height: 1.5;
}
.dia-saida ul li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
}
.violet-saida ul li::before { color: var(--violet); }

/* Day divider */
.day-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 32px 32px;
  max-width: 700px;
  margin: 0 auto 64px;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  opacity: 0.5;
}
.divider-glyph {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--violet);
  font-weight: 700;
  animation: dividerSpin 12s linear infinite;
  display: inline-block;
}
@keyframes dividerSpin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .timeline { padding-left: 0; }
  .timeline::before { left: 24px; }
  .time-item { display: block; }
  .time-item::before {
    left: 17px;
    top: -2px;
  }
  .time-item.big-highlight::before { left: 14px; top: -4px; }
  .time {
    position: relative;
    left: 0;
    top: 0;
    padding-left: 56px;
    display: block;
    margin-bottom: 8px;
  }
  .time-content { margin-left: 56px; padding: 16px 20px; }
  .time-item.big-highlight .time-content { padding: 22px 22px; }
  .dia-saida ul { grid-template-columns: 1fr; }
  .dia-saida { padding: 26px 22px; }
}

/* =====================================================
   3 AGENTES
   ===================================================== */
.agentes {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--surface) 100%);
}
.agentes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.agente-card {
  padding: 44px 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.3s;
}
.agente-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.1);
  border-color: rgba(197, 142, 31, 0.3);
}
.agente-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 18px;
}
.agente-icon {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.agente-icon.gold { background: var(--gold-bg); }
.agente-icon.violet { background: var(--violet-bg); }
.agente-icon.teal { background: var(--teal-bg); }
.agente-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.agente-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 20px;
}
.agente-card ul { display: flex; flex-direction: column; gap: 10px; }
.agente-card ul li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.agente-card ul li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
}
.agente-card:nth-child(2) ul li::before { color: var(--violet); }
.agente-card:nth-child(3) ul li::before { color: var(--teal); }
@media (max-width: 900px) {
  .agentes-grid { grid-template-columns: 1fr; max-width: 500px; }
}

/* =====================================================
   O QUE VOCÊ LEVA
   ===================================================== */
.leva {
  padding: 110px 0;
  background: var(--bg-soft);
}
.leva-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.leva-item {
  padding: 32px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
}
.leva-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.leva-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  border-radius: 16px;
}
.leva-icon.gold { background: var(--gold-bg); }
.leva-icon.violet { background: var(--violet-bg); }
.leva-icon.teal { background: var(--teal-bg); }
.leva-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.leva-item p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .leva-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .leva-grid { grid-template-columns: 1fr; max-width: 380px; }
}

/* =====================================================
   POR QUE AGORA
   ===================================================== */
.agora {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-cool) 100%);
}
.agora-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.agora-card {
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.3s;
}
.agora-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99, 102, 241, 0.3);
}
.agora-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 16px;
}
.agora-card:nth-child(2) .agora-num { color: var(--violet); }
.agora-card:nth-child(3) .agora-num { color: var(--teal); }
.agora-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 12px;
}
.agora-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  font-size: 0.95rem;
}
@media (max-width: 900px) {
  .agora-grid { grid-template-columns: 1fr; max-width: 500px; }
}

/* =====================================================
   FAQ
   ===================================================== */
.faq {
  padding: 110px 0;
  background: var(--bg);
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 28px;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover {
  border-color: rgba(197, 142, 31, 0.3);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-bg);
  color: var(--gold);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.3s, background 0.3s;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--gold);
  color: white;
  transform: rotate(180deg);
}
.faq-item p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

/* =====================================================
   INSCRIÇÃO / CTA FINAL
   ===================================================== */
.inscricao {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg) 100%);
  overflow: hidden;
}
.cta-particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.cta-glow {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(197, 142, 31, 0.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: heroGlowPulse 8s ease-in-out infinite;
}
.inscricao-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 24px 0 28px;
  color: var(--ink);
}
.cta-title span { display: block; }
.cta-title .gold {
  background: linear-gradient(135deg, var(--gold), #B07C16);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-lede {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 48px;
  line-height: 1.5;
}

.inscricao-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 24px;
}
.opt-btn {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 22px 28px;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 20px;
  text-align: left;
  position: relative;
  transition: transform 0.4s, border-color 0.3s, box-shadow 0.4s;
  overflow: hidden;
}
.opt-presencial { border-color: rgba(197, 142, 31, 0.4); }
.opt-online { border-color: rgba(99, 102, 241, 0.4); }
.opt-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.opt-presencial:hover { box-shadow: 0 16px 40px rgba(197, 142, 31, 0.25); }
.opt-online:hover { box-shadow: 0 16px 40px rgba(99, 102, 241, 0.25); }

.opt-tag {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.opt-presencial .opt-tag { color: var(--gold); }
.opt-online .opt-tag { color: var(--violet); }
.opt-btn strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}
.opt-arrow {
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.3s;
}
.opt-presencial .opt-arrow { color: var(--gold); }
.opt-online .opt-arrow { color: var(--violet); }
.opt-btn:hover .opt-arrow { transform: translateX(6px); }

@media (max-width: 700px) {
  .inscricao-options { grid-template-columns: 1fr; }
}

.cta-tiny {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  margin: 14px 0 0;
  font-weight: 500;
}

.page-foot {
  margin-top: 72px;
  padding: 32px 20px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  text-transform: uppercase;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 700px) {
  .page-foot { flex-direction: column; align-items: center; text-align: center; }
}

/* =====================================================
   MOBILE OTIMIZAÇÕES
   ===================================================== */
@media (max-width: 768px) {
  .promessa, .modalidade, .dias, .agentes, .leva, .agora, .faq { padding: 72px 0; }
  .inscricao { padding: 80px 0 60px; }
  .section-head { margin-bottom: 48px; }
  .container { padding: 0 16px; }
  .reveal { transform: translateY(20px) scale(0.98); }
}
@media (max-width: 480px) {
  .promessa, .modalidade, .dias, .agentes, .leva, .agora, .faq { padding: 60px 0; }
  .inscricao { padding: 70px 0 50px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .aurora-blob, .hero-glow, .cta-glow { animation: none !important; }
}
