:root {
  --bg: #08070c;
  --bg-soft: #111018;
  --surface: #15131d;
  --surface-2: #1b1824;
  --card: #12111a;
  --text: #f8f3ee;
  --muted: #b8b0c3;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.16);
  --primary: #ff5a36;
  --primary-2: #ff8d64;
  --gold: #ffd451;
  --cyan: #18d4c4;
  --success: #8ad593;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.18);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --pill: 999px;
  --max: 1240px;
  --hero: clamp(3rem, 7.5vw, 6.6rem);
  --h2: clamp(2rem, 4.6vw, 4.2rem);
  --h3: clamp(1.3rem, 2vw, 1.9rem);
  --body: clamp(1rem, 1.15vw, 1.08rem);
  --section: clamp(4.5rem, 8vw, 8rem);
  --header-h: 78px;
  --grad-main: linear-gradient(135deg, var(--primary), var(--primary-2));
}

/* ===== SCROLLBAR PERSONALIZADA ===== */
::-webkit-scrollbar { width: 6px }
::-webkit-scrollbar-track { background: var(--bg) }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 999px }
::-webkit-scrollbar-thumb:hover { background: var(--primary-2) }



* { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  min-height: 100vh;
  font-family: "Outfit", system-ui, sans-serif;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 90, 54, 0.14), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(24, 212, 196, 0.10), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit }
img, svg { display: block; max-width: 100% }
button, input, textarea, select { font: inherit }
button { border: 0; background: none; color: inherit; cursor: pointer }
ul { list-style: none }
section { position: relative }
p { font-size: var(--body); color: var(--muted); max-width: 68ch }
h1, h2, h3 {
  font-family: "Outfit", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
}
h1 { font-size: var(--hero); max-width: 10ch }
h2 { font-size: var(--h2); max-width: 12ch }
h3 { font-size: var(--h3) }
.logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: currentColor; opacity: 0.85;
}

.btn {
  min-height: 52px;
  padding: 15px 22px;
  border-radius: var(--pill);
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-weight: 800; font-size: 0.95rem;
  transition: 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px) }
.btn-primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 90, 54, 0.22);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: var(--pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.78rem; font-weight: 700;
  color: var(--text);
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  box-shadow: 0 0 0 5px rgba(255, 90, 54, 0.12);
}

.header {
  position: sticky; top: 0; z-index: 90;
  backdrop-filter: blur(16px);
  background: rgba(8, 7, 12, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand {
  display: flex; align-items: center; gap: 12px; min-height: 44px;
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(255, 90, 54, 0.18), rgba(24, 212, 196, 0.08)), var(--surface);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.brand-mark svg { width: 22px; height: 22px }
.nav {
  display: none; align-items: center; gap: 26px;
}
.nav a {
  font-size: 0.92rem; font-weight: 700; color: var(--muted); transition: 0.2s ease;
}
.nav a:hover { color: var(--text) }
.header-actions {
  display: flex; align-items: center; gap: 10px;
}
.lang-toggle,
.menu-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}
.lang-toggle {
  display: flex; align-items: center; gap: 10px;
  min-height: 44px; padding: 0 14px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 800; color: var(--muted);
}
.lang-toggle button.active { color: var(--text) }
.menu-toggle {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  position: relative;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: ""; position: absolute; width: 18px; height: 2px; border-radius: 2px;
  background: var(--text); transition: 0.25s ease;
}
.menu-toggle::before { transform: translateY(-6px) }
.menu-toggle::after { transform: translateY(6px) }
.mobile-menu {
  display: none; border-top: 1px solid var(--line); padding: 10px 0 18px;
}
.mobile-menu.open { display: block }
.mobile-menu nav {
  display: grid; gap: 8px;
}
.mobile-menu a {
  padding: 14px 12px; border-radius: 14px; color: var(--muted); font-weight: 700;
}
.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.04); color: var(--text);
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid; align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0 3rem;
  overflow: hidden;
}
.hero-grid {
  display: grid; gap: 36px; align-items: center;
}
.hero-copy {
  position: relative; z-index: 3; display: grid; gap: 22px;
}
.hero-copy p {
  font-size: clamp(1.05rem, 1.75vw, 1.24rem);
  max-width: 34ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px }

.hero-art {
  position: relative; min-height: 560px; isolation: isolate;
}
.hero-glow {
  position: absolute; inset: 8% 8% auto 8%; height: 70%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 90, 54, 0.20), rgba(24, 212, 196, 0.08) 36%, transparent 72%);
  filter: blur(40px); z-index: 0;
}
.shape-a, .shape-b, .shape-c, .shape-d {
  position: absolute; border-radius: 32px; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)), var(--surface);
  box-shadow: var(--shadow);
}
.shape-a {
  inset: 46px 26px 36px 70px;
  clip-path: polygon(8% 0, 100% 0, 100% 82%, 92% 100%, 0 100%, 0 14%);
  background:
    linear-gradient(140deg, rgba(255, 90, 54, 0.16), rgba(24, 212, 196, 0.05) 60%, transparent 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--surface);
}
.shape-b {
  width: 170px; height: 170px; top: 0; left: 0;
  clip-path: polygon(20% 0, 100% 0, 82% 100%, 0 84%);
  background: linear-gradient(135deg, rgba(255, 212, 81, 0.24), rgba(255, 90, 54, 0.1)), var(--surface);
}
.shape-c {
  width: 220px; height: 128px; right: 0; bottom: 0;
  clip-path: polygon(0 20%, 84% 0, 100% 100%, 16% 100%);
  background: linear-gradient(135deg, rgba(24, 212, 196, 0.2), rgba(255, 255, 255, 0.03)), var(--surface);
}
.shape-d {
  width: 142px; height: 142px; right: 22%; top: 4%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.12), rgba(255, 90, 54, 0.06) 55%, transparent 80%);
  backdrop-filter: blur(8px);
}

.glass-card {
  position: absolute; z-index: 2;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(16px);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.card-chart {
  top: 11%; left: 15%; width: min(100%, 410px); padding: 24px;
}
.card-chart-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px;
}
.card-chart-head strong {
  font-size: 1.04rem; letter-spacing: -0.02em;
}
.eq {
  display: flex; gap: 5px; align-items: flex-end; height: 30px;
}
.eq span {
  width: 7px; border-radius: 999px; background: linear-gradient(180deg, var(--gold), var(--primary));
  animation: eq 1.2s infinite ease-in-out;
  transform-origin: bottom;
}
.eq span:nth-child(1) { height: 36%; animation-delay: 0s }
.eq span:nth-child(2) { height: 92%; animation-delay: 0.15s }
.eq span:nth-child(3) { height: 54%; animation-delay: 0.3s }
.eq span:nth-child(4) { height: 84%; animation-delay: 0.45s }
.eq span:nth-child(5) { height: 45%; animation-delay: 0.6s }
@keyframes eq {
  0%, 100% { transform: scaleY(0.75); opacity: 0.72 }
  50% { transform: scaleY(1.15); opacity: 1 }
}
.mini-graph {
  position: relative; height: 172px; border-radius: 22px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}
.mini-graph::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, transparent 28px, rgba(255, 255, 255, 0.05) 28px, rgba(255, 255, 255, 0.05) 29px, transparent 29px),
    linear-gradient(to right, transparent 20%, rgba(255, 255, 255, 0.04) 20.2%, transparent 20.4%, transparent 40%, rgba(255, 255, 255, 0.04) 40.2%, transparent 40.4%, transparent 60%, rgba(255, 255, 255, 0.04) 60.2%, transparent 60.4%, transparent 80%, rgba(255, 255, 255, 0.04) 80.2%, transparent 80.4%);
  opacity: 0.65;
}
.mini-graph svg { position: absolute; inset: 0; width: 100%; height: 100% }
.card-note {
  top: 8%; right: 4%; width: 190px; padding: 18px;
}
.card-note strong {
  display: block; font-size: 2.1rem; line-height: 0.9; letter-spacing: -0.05em; color: var(--gold); margin-bottom: 8px;
}
.card-note p, .card-stats p { font-size: 0.88rem }
.card-stats {
  right: 8%; bottom: 8%; width: 245px; padding: 18px; display: grid; gap: 10px;
}
.stat-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-row:last-child { border-bottom: 0; padding-bottom: 0 }
.stat-row strong {
  font-size: 1.35rem; line-height: 0.92; letter-spacing: -0.04em;
}

.hero-lines {
  position: absolute; left: -4%; bottom: 18px; width: 108%; height: 154px; opacity: 0.38; z-index: 1; pointer-events: none;
}

.platforms-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}
.platforms-band::before,
.platforms-band::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.platforms-band::before {
  left: 0; background: linear-gradient(90deg, var(--bg-soft), transparent);
}
.platforms-band::after {
  right: 0; background: linear-gradient(270deg, var(--bg-soft), transparent);
}
.platforms-track {
  display: flex; gap: 16px; width: max-content; padding: 20px 0;
  animation: scroll-x 24s linear infinite;
}
.platform-pill {
  padding: 12px 18px; border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.76rem; font-weight: 900;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: 0.22s ease;
}
.platform-pill:hover {
  color: var(--text);
  transform: translateY(-2px);
  border-color: rgba(255, 212, 81, 0.34);
}
@keyframes scroll-x {
  from { transform: translateX(0) }
  to { transform: translateX(-50%) }
}

.section-alt {
  background: linear-gradient(180deg, #0e0d14 0%, #13121a 100%);
  color: var(--text);
  padding: var(--section) 0;
}
.section-alt p { color: var(--muted) }
.section-dark {
  background:
    radial-gradient(circle at 86% 18%, rgba(24, 212, 196, 0.08), transparent 22%),
    radial-gradient(circle at 12% 24%, rgba(255, 90, 54, 0.12), transparent 24%),
    linear-gradient(180deg, #0a0b10 0%, #10131a 100%);
  padding: var(--section) 0;
}
.section-head {
  display: grid; gap: 14px;
  margin-bottom: 34px;
}

.info-grid {
  display: grid;
  gap: 18px;
}
.info-card {
  border-radius: 30px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.info-inner {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}
.info-visual {
  min-height: 180px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 90, 54, 0.16), rgba(24, 212, 196, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
}
.info-points {
  display: grid;
  gap: 10px;
}
.info-points li {
  display: flex; gap: 10px; font-weight: 500;
  color: var(--muted);
}
.info-points li::before {
  content: "—"; color: var(--gold); font-weight: 900;
}

.audience-grid, .benefits-grid {
  display: grid;
  gap: 18px;
}
.audience-card, .benefit-card {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)), var(--surface);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: 0.22s ease;
}
.audience-card:hover, .benefit-card:hover {
  transform: translateY(-3px);
}
.icon-shape {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(255, 90, 54, 0.22), rgba(255, 212, 81, 0.12));
  border: 1px solid var(--line);
}
.icon-shape svg { width: 22px; height: 22px }

.process-wrap {
  border-radius: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)), var(--surface);
  padding: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.process-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}
.step {
  position: relative;
  padding-left: 52px;
  min-height: 100%;
}
.step-num {
  position: absolute; left: 0; top: 0;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-main);
  color: #fff; font-size: 0.78rem; font-weight: 900;
  box-shadow: 0 0 0 8px rgba(255, 90, 54, 0.10);
}
.step-card {
  border-radius: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  height: 100%;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 170px;
}
.step-card p {
  font-size: 0.96rem;
  max-width: 26ch;
}

.faq-wrap {
  display: grid;
  gap: 14px;
}
.faq-item {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.20);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 800; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none }
.faq-item summary::after {
  content: "+";
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; flex: 0 0 auto;
  border: 1px solid var(--line);
  color: var(--primary);
  font-size: 1.3rem;
}
.faq-item[open] summary::after { content: "–" }
.faq-item p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-shell {
  display: grid;
  gap: 18px;
  align-items: stretch;
}
.contact-card,
.form-card {
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)), var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.contact-inner,
.form-inner {
  padding: 28px;
  height: 100%;
}
.contact-list {
  display: grid; gap: 14px; margin-top: 24px;
}
.contact-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.contact-list strong { display: block; font-size: 1rem }
.contact-list p { font-size: 0.95rem }
.contact-badge {
  width: 12px; height: 12px; border-radius: 50%; flex: 0 0 auto; margin-top: 7px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  box-shadow: 0 0 0 6px rgba(255, 90, 54, 0.10);
}

form {
  display: grid;
  gap: 14px;
}
.field-grid {
  display: grid;
  gap: 14px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
  transition: 0.2s ease;
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255, 90, 54, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 90, 54, 0.08);
}
.field select option {
  background: var(--surface-2);
  color: var(--text);
}
.form-note {
  font-size: 0.88rem; color: var(--muted);
}

.footer {
  padding: 52px 0 36px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.12);
}
.footer-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}
.footer-socials {
  display: flex; align-items: center; gap: 12px;
}
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  transition: 0.2s ease;
}
.footer-socials a:hover {
  color: var(--text);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.footer-col {
  display: grid;
  gap: 18px;
}
.footer-col-title {
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text);
}
.footer-links {
  display: grid;
  gap: 12px;
}
.footer-links a {
  font-size: 0.92rem; color: var(--muted); transition: 0.2s ease;
}
.footer-links a:hover { color: var(--text) }
.footer-contact {
  display: grid;
  gap: 10px;
}
.footer-contact a,
.footer-contact span {
  font-size: 0.92rem; color: var(--muted);
}
.footer-contact a:hover { color: var(--text) }
.footer-note {
  font-size: 0.82rem; color: var(--muted); max-width: 80ch;
}

[data-parallax] { will-change: transform }
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .container { width: min(calc(100% - 64px), var(--max)) }
  .field-grid { grid-template-columns: 1fr 1fr }
  .audience-grid,
  .benefits-grid { grid-template-columns: repeat(2, 1fr) }
  .contact-shell { grid-template-columns: 0.9fr 1.1fr }
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 0.9fr;
    align-items: start;
  }
  .info-grid { grid-template-columns: 1fr 1fr }
}

@media (min-width: 1024px) {
  .nav { display: flex }
  .menu-toggle, .mobile-menu { display: none !important }
  .hero-grid { grid-template-columns: 1.02fr 0.98fr }
  .audience-grid { grid-template-columns: repeat(4, 1fr) }
  .benefits-grid { grid-template-columns: repeat(3, 1fr) }
  .process-grid { grid-template-columns: repeat(4, 1fr) }
  .step { padding-left: 0; padding-top: 38px }
  .step-num { left: 20px; top: 0 }
  .step-card { min-height: 186px }
  .info-grid { grid-template-columns: repeat(3, 1fr) }
}

@media (max-width: 1023px) {
  .hero-art { min-height: 470px }
  .card-chart { left: 8%; width: min(100%, 360px) }
  .card-note { right: 2%; top: 5% }
  .card-stats { right: 5%; bottom: 4%; width: 210px }
}

@media (max-width: 767px) {
  .hero-copy p { font-size: 1.04rem }

  /* Hero art: layout de flujo normal en lugar de absoluto */
  .hero-art {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px 0;
  }
  .hero-glow { display: none }
  .shape-a, .shape-b, .shape-c, .shape-d, .hero-lines { display: none }

  .glass-card {
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    width: 100%;
    transform: none !important;
  }
  .card-chart {
    padding: 18px;
    order: 1;
  }
  .card-chart-head { margin-bottom: 12px }
  .card-chart-head strong { font-size: 0.95rem }
  .mini-graph { height: 120px }
  .card-note {
    display: block;
    padding: 16px;
    order: 2;
  }
  .card-note strong { font-size: 1.6rem }
  .card-stats {
    padding: 16px;
    order: 3;
    display: grid;
    gap: 8px;
  }
  .stat-row { padding: 10px 0 }
  .stat-row strong { font-size: 1.2rem }

  .lang-toggle { min-height: 38px; padding: 0 10px; font-size: 0.75rem }

  /* Footer en móvil: marca arriba, nav y contacto lado a lado */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-col-title { font-size: 0.72rem; }
}

/* ===== PARTÍCULAS ===== */
#particles {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}

/* ===== SPOTLIGHT ===== */
.spotlight {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 90, 54, 0.07), transparent 40%
  );
}

/* ===== INDICADOR SCROLL ===== */
.scroll-indicator {
  position: absolute; left: 50%; bottom: 24px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 5;
  opacity: 0.6;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ""; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { top: -100% }
  100% { top: 100% }
}
.scroll-text {
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}

/* ===== FAQ ACORDEÓN ANIMADO ===== */
.faq-item {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.20);
}
.faq-header {
  cursor: pointer;
  padding: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 800; color: var(--text);
  list-style: none;
  background: none; border: none; width: 100%; text-align: left;
}
.faq-header::-webkit-details-marker { display: none }
.faq-icon {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; flex: 0 0 auto;
  border: 1px solid var(--line);
  color: var(--primary);
  font-size: 1.3rem;
  transition: transform 0.4s ease, border-color 0.3s ease;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--primary);
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.is-open .faq-body {
  grid-template-rows: 1fr;
}
.faq-inner {
  overflow: hidden;
}
.faq-inner p {
  padding: 0 22px 22px;
  color: var(--muted);
}

/* ===== CONTADORES ANIMADOS ===== */
.stat-num {
  font-size: 2.4rem; font-weight: 900;
  line-height: 0.92; letter-spacing: -0.04em;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.82rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700;
}

/* ===== MICRO-INTERACCIONES HOVER ===== */
.info-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.info-card:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-4px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}
.audience-card .icon-shape {
  transition: transform 0.4s ease, background 0.4s ease;
}
.audience-card:hover .icon-shape {
  transform: rotate(10deg) scale(1.05);
  background: linear-gradient(135deg, rgba(255, 212, 81, 0.35), rgba(255, 90, 54, 0.25));
}
.benefit-card {
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 54, 0.3);
}
.footer-links a {
  position: relative; display: inline-block;
}
.footer-links a::after {
  content: ""; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.footer-links a:hover::after {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto }
  .platforms-track, .eq span { animation: none !important }
  [data-parallax] { transform: none !important }
  .fade-up { opacity: 1; transform: none }
  .scroll-line::after { animation: none }
  .info-card:hover, .benefit-card:hover { transform: none }
  .audience-card:hover .icon-shape { transform: none }
}
