/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #060810;
  --deep:     #0b0e1a;
  --surface:  #111627;
  --card:     #161c2e;
  --border:   rgba(99, 120, 220, 0.18);
  --gold:     #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --violet:   #7c5cbf;
  --indigo:   #4f72e3;
  --glow:     rgba(79, 114, 227, 0.35);
  --text:     #e8eaf6;
  --muted:    #8890b0;
  --white:    #ffffff;
  --r: 16px;
  color-scheme: dark;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY HELPERS ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.section-eyebrow {
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 48px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), #e8c97a, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(6, 8, 16, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(201,168,76,0.5);
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-logo-text {
  letter-spacing: 0;
}

.nav-orb {
  position: relative;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-orb-core {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff, var(--gold) 50%, var(--violet));
  box-shadow: 0 0 10px rgba(201,168,76,0.8), 0 0 20px rgba(79,114,227,0.4);
}

.nav-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spin linear infinite;
}
.nav-orb-ring-1 {
  width: 18px; height: 18px;
  border-color: rgba(201,168,76,0.7);
  animation-duration: 6s;
}
.nav-orb-ring-2 {
  width: 26px; height: 26px;
  border-color: rgba(79,114,227,0.5);
  animation-duration: 11s;
  animation-direction: reverse;
}
.nav-orb-ring-3 {
  width: 34px; height: 34px;
  border-color: rgba(124,92,191,0.3);
  animation-duration: 18s;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--black);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  opacity: 0.9;
  box-shadow: 0 0 20px rgba(201,168,76,0.4);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  font-family: system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--black);
  background: linear-gradient(135deg, #d4af5a, var(--gold), #b8923e);
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}

.btn-ghost {
  display: inline-block;
  font-family: system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--text);
  background: transparent;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(99,120,220,0.5);
  color: var(--white);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(79,114,227,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 20% 80%, rgba(124,92,191,0.08) 0%, transparent 60%),
              var(--black);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(79,114,227,0.15), transparent 70%);
}
.orb-2 {
  width: 400px; height: 400px;
  bottom: 0; right: -100px;
  background: radial-gradient(circle, rgba(124,92,191,0.12), transparent 70%);
}
.orb-3 {
  width: 300px; height: 300px;
  top: 30%; left: -80px;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 32px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-aion {
  font-family: system-ui, sans-serif;
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  background: linear-gradient(160deg, #ffffff 20%, #c9a84c 60%, #7c5cbf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.3));
}

.hero-sub {
  font-family: Georgia, serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-style: italic;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Voice Wave */
.hero-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 48px;
}
.wave-bar {
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--violet));
  border-radius: 4px;
  animation: wave 1.4s ease-in-out infinite;
  opacity: 0.6;
}
.wave-bar:nth-child(1)  { height: 8px;  animation-delay: 0s; }
.wave-bar:nth-child(2)  { height: 16px; animation-delay: 0.07s; }
.wave-bar:nth-child(3)  { height: 28px; animation-delay: 0.14s; }
.wave-bar:nth-child(4)  { height: 38px; animation-delay: 0.21s; }
.wave-bar:nth-child(5)  { height: 44px; animation-delay: 0.28s; }
.wave-bar:nth-child(6)  { height: 36px; animation-delay: 0.35s; }
.wave-bar:nth-child(7)  { height: 24px; animation-delay: 0.42s; }
.wave-bar:nth-child(8)  { height: 40px; animation-delay: 0.49s; }
.wave-bar:nth-child(9)  { height: 48px; animation-delay: 0.56s; }
.wave-bar:nth-child(10) { height: 44px; animation-delay: 0.63s; }
.wave-bar:nth-child(11) { height: 48px; animation-delay: 0.56s; }
.wave-bar:nth-child(12) { height: 40px; animation-delay: 0.49s; }
.wave-bar:nth-child(13) { height: 24px; animation-delay: 0.42s; }
.wave-bar:nth-child(14) { height: 36px; animation-delay: 0.35s; }
.wave-bar:nth-child(15) { height: 44px; animation-delay: 0.28s; }
.wave-bar:nth-child(16) { height: 38px; animation-delay: 0.21s; }
.wave-bar:nth-child(17) { height: 28px; animation-delay: 0.14s; }
.wave-bar:nth-child(18) { height: 16px; animation-delay: 0.07s; }
.wave-bar:nth-child(19) { height: 8px;  animation-delay: 0s; }
.wave-bar:nth-child(20) { height: 4px;  animation-delay: 0s; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(1.7); opacity: 1; }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.6;
  animation: fadeInUp 2s ease 1s both;
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.3); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 0.6; transform: translateX(-50%) translateY(0); }
}

/* ===== QUE ES ===== */
.que-es {
  padding: 100px 0;
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.que-es-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.que-es-text p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.85;
}
.que-es-text strong { color: var(--white); }

.check-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  padding-left: 28px;
  position: relative;
}
.check-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 5px;
}

/* AION Orb Visual */
.que-es-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.aion-orb-container {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aion-core {
  position: absolute;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff, var(--gold) 40%, var(--violet) 80%);
  box-shadow: 0 0 40px rgba(201,168,76,0.6), 0 0 80px rgba(79,114,227,0.3);
  animation: pulse-core 3s ease-in-out infinite;
}
@keyframes pulse-core {
  0%, 100% { box-shadow: 0 0 40px rgba(201,168,76,0.6), 0 0 80px rgba(79,114,227,0.3); }
  50%       { box-shadow: 0 0 60px rgba(201,168,76,0.9), 0 0 120px rgba(79,114,227,0.5); }
}

.aion-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spin linear infinite;
}
.ring-1 {
  width: 110px; height: 110px;
  border-color: rgba(201,168,76,0.4);
  animation-duration: 8s;
}
.ring-2 {
  width: 160px; height: 160px;
  border-color: rgba(79,114,227,0.25);
  animation-duration: 14s;
  animation-direction: reverse;
}
.ring-3 {
  width: 210px; height: 210px;
  border-color: rgba(124,92,191,0.15);
  animation-duration: 22s;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.aion-label {
  position: absolute;
  font-family: system-ui, sans-serif;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  bottom: 20px;
}

.quote-bubble {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 20px 24px;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  max-width: 280px;
  animation: float 4s ease-in-out infinite;
}
.quote-icon {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 0;
  vertical-align: -12px;
  margin-right: 4px;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ===== CAPACIDADES ===== */
.capacidades {
  padding: 100px 0;
  background: var(--black);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cap-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.cap-card:hover {
  border-color: rgba(79,114,227,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(79,114,227,0.1);
}

.cap-featured {
  border-color: rgba(201,168,76,0.3);
  background: linear-gradient(135deg, var(--card), rgba(201,168,76,0.04));
}
.cap-featured:hover {
  border-color: rgba(201,168,76,0.6);
  box-shadow: 0 8px 32px rgba(201,168,76,0.15);
}

.cap-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--gold);
}
.cap-featured .cap-icon { color: var(--gold); }

.cap-card h3 {
  font-family: system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.cap-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.cap-badge {
  display: inline-block;
  margin-top: 16px;
  font-family: system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ===== COMO FUNCIONA ===== */
.como-funciona {
  padding: 100px 0;
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.step-num {
  font-family: system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.4);
  min-width: 64px;
  text-align: right;
  padding-top: 4px;
}

.step-content h3 {
  font-family: system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.step-connector {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(201,168,76,0.3), rgba(201,168,76,0.05));
  margin-left: 96px;
}

/* ===== TESTIMONIOS ===== */
.testimonios {
  padding: 100px 0;
  background: var(--black);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testi-highlight {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 4px 40px rgba(201,168,76,0.08);
}

.testi-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 4px; }

.testi-text {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.8;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--indigo));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}
.testi-author span {
  font-family: system-ui, sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--deep);
  border-top: 1px solid var(--border);
}

.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.cta-orb-1 {
  width: 500px; height: 500px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(79,114,227,0.1), transparent 70%);
}
.cta-orb-2 {
  width: 400px; height: 400px;
  bottom: -150px; right: -80px;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
}

.cta-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Eye visual */
.aion-eye {
  position: relative;
  width: 80px; height: 80px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eye-outer {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  animation: spin 20s linear infinite;
}
.eye-inner {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(79,114,227,0.4);
  animation: spin 12s linear infinite reverse;
}
.eye-core {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold), var(--violet));
  box-shadow: 0 0 20px rgba(201,168,76,0.6);
  animation: pulse-core 2s ease-in-out infinite;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 0 auto 20px;
}

.cta-input {
  flex: 1;
  min-width: 260px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.cta-input::placeholder { color: var(--muted); }
.cta-input:focus { border-color: rgba(201,168,76,0.5); }

.cta-fine {
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.6;
}

/* Success message */
.cta-success {
  font-family: system-ui, sans-serif;
  font-size: 1rem;
  color: var(--gold);
  margin-top: 12px;
  display: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  font-family: system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--gold);
  opacity: 0.7;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.4;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .que-es-grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .que-es-visual { order: -1; }
}

@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  .cap-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
