/* =========================================================
   VengaJobs — Design system
   Colores corporativos: naranja / negro / blanco
   ========================================================= */

:root {
  /* Brand */
  --orange: #FF6A00;
  --orange-bright: #FF8A2A;
  --orange-deep: #E55700;
  --orange-soft: rgba(255, 106, 0, 0.12);
  --orange-ring: rgba(255, 106, 0, 0.35);

  /* Neutrales */
  --black: #0A0A0A;
  --ink: #0F0F10;
  --surface: #141416;
  --surface-2: #1A1A1D;
  --surface-3: #232327;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --white: #FFFFFF;
  --text: #F5F5F7;
  --text-muted: #A1A1A6;
  --text-dim: #6E6E73;

  /* Tipografía */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", "Inter", Georgia, serif;

  /* Layout */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --container: 1200px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--black);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select {
  font: inherit; color: inherit;
  background: transparent; border: 0; outline: 0;
}

/* Selection */
::selection { background: var(--orange); color: var(--white); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.gradient-text {
  background: linear-gradient(100deg, var(--orange) 0%, var(--orange-bright) 50%, #FFB27D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow.light { color: var(--orange-bright); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--orange-ring) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity .3s var(--ease);
  filter: blur(20px);
  mix-blend-mode: screen;
}
@media (hover: hover) {
  body:hover .cursor-glow { opacity: .55; }
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
  will-change: transform;
}
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow:
    0 1px 0 rgba(255,255,255,.15) inset,
    0 10px 30px -12px var(--orange);
}
.btn-primary:hover {
  background: var(--orange-bright);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.2) inset,
    0 18px 40px -12px var(--orange);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.05);
  border-color: var(--orange);
  color: var(--white);
}

/* ---------- Topbar ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 51;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  transition: color .2s var(--ease);
}
.topbar-link:hover { color: var(--orange); }
.topbar-link svg { color: var(--orange); flex-shrink: 0; }
@media (max-width: 640px) {
  .topbar { padding: 6px 0; font-size: 0.74rem; }
  .topbar-inner { justify-content: center; gap: 14px; flex-wrap: wrap; }
  .topbar-link svg { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: padding .3s var(--ease), background .3s var(--ease), backdrop-filter .3s var(--ease), top .3s var(--ease);
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  line-height: 0;
}
.logo-img {
  display: block;
  height: 54px;
  width: auto;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.logo:hover .logo-img { opacity: .9; transform: translateY(-1px); }
.logo-img-mark { display: none; height: 48px; }
.logo-footer .logo-img { height: 60px; }

@media (max-width: 480px) {
  .logo-img-full { display: none; }
  .logo-img-mark { display: block; }
}

.nav-desktop {
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
}
.nav-desktop a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-desktop a:hover { color: var(--white); background: rgba(255,255,255,.06); }

.header-cta { display: flex; gap: 10px; align-items: center; }
.header-cta .btn-ghost { display: none; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1.5px solid #FF6A00 !important;
  background: #0a0a0a !important;
  padding: 10px;
  -webkit-appearance: none;
  appearance: none;
}
.menu-toggle span,
.menu-toggle span:first-child,
.menu-toggle span:nth-child(2),
.menu-toggle span:last-child {
  display: block !important;
  height: 2px !important;
  width: 100% !important;
  background: #FF6A00 !important;
  border-radius: 2px !important;
  margin: 4px 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0 !important; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 18px 24px 24px;
  background: var(--ink);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a {
  padding: 14px 8px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 1.05rem;
}
.nav-mobile a.btn { margin-top: 14px; border-bottom: 0; justify-content: center; }
.nav-mobile.open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 160px 0 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(1000px 600px at 15% 30%, var(--orange-soft), transparent 60%),
    radial-gradient(800px 500px at 85% 75%, rgba(255, 138, 42, 0.10), transparent 60%),
    radial-gradient(500px 400px at 50% 0%, rgba(255, 106, 0, 0.08), transparent 55%);
  z-index: -2;
  animation: meshShift 18s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.05); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 78%);
  z-index: -1;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-strong);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px var(--orange-soft);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--orange-ring); }
  50%      { box-shadow: 0 0 0 10px rgba(255,106,0,0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 36px;
}
.lead strong { color: var(--white); font-weight: 600; }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 520px;
}
.stat {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.stat:hover { border-color: var(--orange-ring); transform: translateY(-2px); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat-label {
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Hero visual */
.hero-visual { position: relative; }
.visual-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.10);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orbit-1 { width: 100%; height: 100%; animation: spin 60s linear infinite; }
.orbit-2 { width: 70%;  height: 70%;  animation: spin 45s linear infinite reverse; border-color: rgba(255,106,0,.15); }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.card-float {
  position: absolute;
  width: 160px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  box-shadow:
    0 20px 50px -20px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,.03) inset;
  animation: floaty 6s ease-in-out infinite;
}
.card-float img {
  width: 100%; height: 140px; object-fit: cover; display: block;
}
.card-tag {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 10px;
  font-size: 0.72rem;
  color: var(--text);
  border-top: 1px solid var(--border);
}
.pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: #3BE39A;
  box-shadow: 0 0 10px #3BE39A;
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

.card-1 { top: 6%;   left: -4%;   animation-delay: 0s; }
.card-2 { top: 12%;  right: 2%;   animation-delay: 1.2s; width: 150px; }
.card-3 { bottom: 10%; left: 5%;  animation-delay: 2.1s; width: 150px; }
.card-4 { bottom: 4%;  right: -5%; animation-delay: 3.1s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.brand-mark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  z-index: 0;
  pointer-events: none;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle, var(--orange-soft) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(30px);
  animation: breathe 4.5s ease-in-out infinite;
  z-index: 0;
}
.brand-mark img {
  position: relative;
  z-index: 1;
  width: 78%;
  height: auto;
  filter: drop-shadow(0 14px 34px rgba(255, 106, 0, 0.35));
  animation: breathe 4.5s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: .95; }
  50%      { transform: scale(1.04); opacity: 1; }
}

.match-indicator {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 16px;
  background: rgba(15, 15, 16, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--orange-ring);
  color: var(--orange);
  box-shadow:
    0 20px 60px -20px var(--orange),
    0 0 0 1px rgba(255,106,0,.2);
  z-index: 3;
}
.mi-title { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.mi-sub { color: var(--text-muted); font-size: 0.78rem; margin-top: 2px; }

.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollLine 2.5s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Marquee ---------- */
.vj-marquee-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--ink);
  overflow: hidden;
}
.vj-marquee-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.vj-marquee {
  width: 100%;
  overflow: hidden !important;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.vj-marquee-section .vj-marquee-track {
  display: inline-flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 32px !important;
  white-space: nowrap !important;
  animation: marquee 80s linear infinite;
  padding: 0 32px 0 0 !important;
  width: max-content !important;
  min-width: max-content !important;
  margin: 0 !important;
}
.vj-marquee-section .vj-marquee-track > img {
  height: 38px !important;
  width: auto !important;
  max-width: 220px !important;
  flex: 0 0 auto !important;
  display: block !important;
  vertical-align: middle !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  opacity: .55;
  filter: brightness(0) invert(1);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  object-fit: contain !important;
}
.vj-marquee-section .vj-marquee-track > img.keep-colors {
  filter: none !important;
  opacity: .85;
}
.vj-marquee-section .vj-marquee-track > img.logo-lg {
  height: 54px !important;
  max-width: 280px !important;
  opacity: .7;
}
.vj-marquee-section .vj-marquee-track > img:hover {
  opacity: 1;
  transform: scale(1.08);
}
.vj-marquee:hover .vj-marquee-track { animation-play-state: paused; }

@media (max-width: 768px) {
  .vj-marquee-section .vj-marquee-track { gap: 24px !important; padding-right: 24px !important; }
  .vj-marquee-section .vj-marquee-track > img { height: 30px !important; max-width: 150px !important; }
  .vj-marquee-section .vj-marquee-track > img.logo-lg { height: 40px !important; max-width: 180px !important; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Paths ---------- */
.paths { padding: 120px 0; }
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.path-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.path-card:hover { transform: translateY(-4px); border-color: var(--orange-ring); }

.path-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.path-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.path-card:hover .path-media img { transform: scale(1.06); }

.path-tag {
  position: absolute; top: 18px; left: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10,10,10,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--orange-ring);
}
.path-tag.alt { color: var(--white); border-color: var(--border-strong); }

.path-body { padding: 32px; }
.path-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--white);
}

.check-list { list-style: none; padding: 0; margin: 0 0 24px; }
.check-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--orange-soft);
  border: 1px solid var(--orange-ring);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'><path d='M5 13l4 4L19 7' stroke='%23FF6A00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.check-list strong { color: var(--white); font-weight: 600; }
.check-list span { color: var(--text-dim); }

.visados-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.10);
  border: 1px solid var(--orange-ring);
  color: var(--orange);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.visados-phone:hover {
  background: var(--orange);
  color: var(--white);
}
.visados-phone svg { flex-shrink: 0; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap .3s var(--ease);
  margin-left: 14px;
}
.arrow-link:hover { gap: 12px; color: var(--orange-bright); }
.arrow-link span { transition: transform .3s var(--ease); }
.arrow-link:hover span { transform: translateX(2px); }

/* ---------- Process ---------- */
.process {
  padding: 120px 0;
  background: var(--ink);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.02);
  position: relative;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.step:hover { border-color: var(--orange-ring); transform: translateY(-4px); }
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--orange);
  margin-bottom: 14px;
  line-height: 1;
}
.step h4 {
  font-size: 1.15rem;
  margin: 0 0 10px;
  font-weight: 600;
  color: var(--white);
}
.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* ---------- Pricing ---------- */
.pricing { padding: 120px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 36px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.price-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }

.price-card.featured {
  background:
    radial-gradient(600px 200px at 50% 0%, var(--orange-soft), transparent 70%),
    var(--surface);
  border-color: var(--orange-ring);
  box-shadow:
    0 0 0 1px var(--orange-ring) inset,
    0 30px 80px -30px var(--orange);
}

.badge-popular {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -8px var(--orange);
}

.price-head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  margin: 0 0 6px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.price-head p { color: var(--text-muted); font-size: 0.88rem; margin: 0 0 28px; }

.price {
  display: flex; align-items: baseline; gap: 8px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.price-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-unit { color: var(--text-muted); font-size: 0.85rem; }

.price-anchor {
  font-style: italic;
  color: var(--orange);
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.price-features li {
  padding: 10px 0 10px 26px;
  font-size: 0.92rem;
  color: var(--text-muted);
  position: relative;
  border-bottom: 1px dashed var(--border);
}
.price-features li:last-child { border-bottom: 0; }
.price-features li::before {
  content: "+";
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-weight: 700;
}

.pricing-foot {
  text-align: center;
  color: var(--text-muted);
  margin-top: 40px;
}
.pricing-foot a { color: var(--orange); font-weight: 600; }
.pricing-foot a:hover { color: var(--orange-bright); }

/* ---------- Cases ---------- */
.cases {
  padding: 120px 0;
  background: var(--ink);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.case-card:hover { transform: translateY(-4px); border-color: var(--orange-ring); }
.case-img { aspect-ratio: 16 / 10; overflow: hidden; }
.case-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.case-card:hover .case-img img { transform: scale(1.05); }

.case-body { padding: 26px 28px 28px; }
.case-sector {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.case-body h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  margin: 0 0 10px;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.case-body > p { color: var(--text-muted); font-size: 0.92rem; margin: 0 0 22px; }
.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.case-metrics > div { display: flex; flex-direction: column; }
.case-metrics strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.case-metrics span {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* ---------- Testimonial ---------- */
.testimonial { padding: 100px 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.testimonial-inner {
  text-align: center;
  padding: 48px 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(500px 250px at 50% 0%, var(--orange-soft), transparent 70%),
    var(--surface);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 820px) {
  .testimonial-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-inner { padding: 40px 28px; }
}
.quote-mark {
  color: var(--orange);
  opacity: .25;
  margin-bottom: 8px;
}
.testimonial-inner p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  line-height: 1.4;
  color: var(--white);
  margin: 0 0 30px;
  letter-spacing: -0.01em;
}
.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.testimonial-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange-ring);
}
.author-name { font-weight: 600; color: var(--white); }
.author-role { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq {
  padding: 120px 0;
  background: var(--ink);
  border-top: 1px solid var(--border);
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  overflow: hidden;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.faq-item[open] {
  border-color: var(--orange-ring);
  background: rgba(255, 106, 0, 0.04);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ico {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq-ico::before, .faq-ico::after {
  content: "";
  position: absolute;
  background: var(--orange);
  transition: transform .3s var(--ease);
}
.faq-ico::before {
  width: 18px; height: 2px;
  top: 50%; left: 0;
  transform: translateY(-50%);
}
.faq-ico::after {
  width: 2px; height: 18px;
  left: 50%; top: 0;
  transform: translateX(-50%);
}
.faq-item[open] .faq-ico::after { transform: translateX(-50%) rotate(90deg); }
.faq-item p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---------- CTA final ---------- */
.cta-final {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  isolation: isolate;
}
.cta-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  z-index: -1;
}
.cta-orb.orb-1 {
  background: var(--orange);
  top: -200px; left: -200px;
}
.cta-orb.orb-2 {
  background: var(--orange-deep);
  bottom: -200px; right: -200px;
  opacity: .25;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--white);
}
.cta-inner > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0 0 40px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cta-form input,
.cta-form textarea,
.cta-form select {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: var(--text-dim); }
.cta-form input:focus,
.cta-form textarea:focus,
.cta-form select:focus {
  border-color: var(--orange);
  background: var(--surface-2);
}
.cta-form select option { background: var(--surface); color: var(--white); }
.cta-form textarea { resize: vertical; min-height: 96px; font-family: inherit; }

.form-note {
  color: var(--text-dim);
  font-size: 0.82rem;
  text-align: center;
  margin-top: 6px;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 80px 0 32px;
  background: var(--ink);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 0.9rem;
  max-width: 280px;
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-contact svg {
  color: var(--orange);
  flex-shrink: 0;
}
.footer-contact a {
  color: var(--text);
  padding: 0;
  transition: color .2s var(--ease);
}
.footer-contact a:hover {
  color: var(--orange);
}
.footer-grid h5 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-grid a {
  display: block;
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color .2s var(--ease);
}
.footer-grid a:hover { color: var(--orange); }
.footer-brand a { padding: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero { padding: 140px 0 100px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .visual-frame { max-width: 440px; margin: 0 auto; }
  .paths-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .cases-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .header-cta .btn-ghost { display: none; }
  .menu-toggle { display: block; }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero h1 { font-size: 2.6rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat-num { font-size: 1.6rem; }

  .visual-frame { max-width: 360px; }
  .card-float { width: 120px; }
  .card-float img { height: 100px; }

  .paths, .process, .pricing, .cases, .faq, .cta-final { padding: 80px 0; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .testimonial-inner { padding: 40px 24px; }
  .path-body { padding: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 2.2rem; }
  .btn-lg { padding: 14px 22px; font-size: 0.95rem; }
}

/* =========================================================
   FUTURISTIC LAYER — overlays sutiles sobre el diseño base
   Mantienen paleta naranja/negro/blanco, añaden movimiento
   y profundidad sin romper la estructura existente.
   ========================================================= */

/* --- Noise texture global (grano fino, premium feel) --- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .35;
  mix-blend-mode: overlay;
}


/* --- Aurora animada en el hero --- */
.hero {
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(40% 30% at 25% 35%, rgba(255,106,0,0.18), transparent 60%),
    radial-gradient(35% 25% at 75% 65%, rgba(255,138,42,0.14), transparent 65%),
    radial-gradient(30% 20% at 50% 15%, rgba(255,178,125,0.10), transparent 70%);
  filter: blur(40px);
  animation: aurora 22s ease-in-out infinite alternate;
  z-index: -3;
  pointer-events: none;
}
@keyframes aurora {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); opacity: .7; }
  50%  { transform: translate(-40px, 30px) rotate(2deg) scale(1.08); opacity: 1; }
  100% { transform: translate(30px, -20px) rotate(-1deg) scale(1.04); opacity: .85; }
}

/* --- Línea glow animada bajo el gradient-text del hero --- */
.hero h1 .gradient-text {
  position: relative;
  display: inline-block;
}
.hero h1 .gradient-text::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange) 30%, var(--orange-bright) 50%, var(--orange) 70%, transparent);
  background-size: 200% 100%;
  animation: shimmerSlide 4s ease-in-out infinite;
  filter: blur(.5px);
}
@keyframes shimmerSlide {
  0%, 100% { background-position: 200% 50%; opacity: .4; }
  50%      { background-position: -100% 50%; opacity: 1; }
}

/* --- Stat numbers con halo naranja sutil --- */
.stat-num {
  text-shadow: 0 0 30px rgba(255,106,0,0.18);
}
.stat:hover .stat-num {
  text-shadow: 0 0 40px rgba(255,106,0,0.35);
}

/* --- Tilt 3D en cards (selección, casos, pricing) --- */
.path-card,
.case-card,
.price-card,
.testimonial-inner {
  transform-style: preserve-3d;
  perspective: 1200px;
  will-change: transform;
}
.path-card:hover {
  transform: translateY(-6px) rotateX(1.5deg) rotateY(-1deg);
}
.case-card:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(1deg);
}
.price-card:hover:not(.featured) {
  transform: translateY(-6px) rotateX(1deg);
}

/* (Borde rotatorio del pricing eliminado) */

/* --- Botón primario: arrow slide on hover --- */
.btn-primary svg {
  transition: transform .35s var(--ease);
}
.btn-primary:hover svg {
  transform: translateX(4px);
}

/* --- Magnetic hover anchor (para el JS) --- */
.btn-primary {
  will-change: transform;
}

/* --- Form inputs: glow ring naranja al hacer focus --- */
.cta-form input:focus,
.cta-form textarea:focus,
.cta-form select:focus {
  border-color: var(--orange);
  background: var(--surface-2);
  box-shadow:
    0 0 0 3px rgba(255,106,0,0.18),
    0 0 24px -8px rgba(255,106,0,0.4);
}

/* --- Holographic shimmer pasa al hover en testimonios --- */
.testimonial-inner {
  position: relative;
  overflow: hidden;
}
.testimonial-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
  transition: left .9s ease;
  pointer-events: none;
}
.testimonial-inner:hover::after { left: 200%; }

/* --- Process steps: línea conectora con glow --- */
.steps {
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,0,0.35) 20%, rgba(255,106,0,0.35) 80%, transparent);
  z-index: 0;
  pointer-events: none;
}
.steps::after {
  content: "";
  position: absolute;
  top: 56px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 14px var(--orange), 0 0 30px rgba(255,106,0,0.4);
  animation: travelLine 8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes travelLine {
  0%   { left: 8%;  opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 92%; opacity: 0; }
}
@media (max-width: 1024px) {
  .steps::before, .steps::after { display: none; }
}

/* --- CTA final: partículas flotantes naranja --- */
.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 15% 30%, rgba(255,106,0,0.5), transparent 50%),
    radial-gradient(1px 1px at 70% 60%, rgba(255,138,42,0.4), transparent 50%),
    radial-gradient(2px 2px at 85% 25%, rgba(255,106,0,0.45), transparent 50%),
    radial-gradient(1px 1px at 35% 75%, rgba(255,178,125,0.35), transparent 50%),
    radial-gradient(1.5px 1.5px at 50% 50%, rgba(255,106,0,0.4), transparent 50%);
  background-size: 800px 800px;
  animation: particleDrift 28s linear infinite;
  pointer-events: none;
  z-index: -1;
  opacity: .8;
}
@keyframes particleDrift {
  0%   { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-200px) translateX(-50px); }
}

/* --- Nav desktop: indicador de pill al hacer hover --- */
.nav-desktop a {
  position: relative;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateX(-50%) scale(0);
  transition: transform .3s var(--ease);
  box-shadow: 0 0 8px var(--orange);
}
.nav-desktop a:hover::after { transform: translateX(-50%) scale(1); }

/* --- FAQ: barra glow lateral en abierto --- */
.faq-item[open] {
  background:
    linear-gradient(90deg, var(--orange) 0, var(--orange) 3px, transparent 3px),
    rgba(255, 106, 0, 0.04);
}

/* --- Topbar: línea glow inferior --- */
.topbar {
  position: relative;
}
.topbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,0,0.4) 50%, transparent);
}

/* --- Logo header con glow al pasar el ratón --- */
.logo:hover .logo-img {
  filter: drop-shadow(0 0 16px rgba(255,106,0,0.4));
}

/* --- Marquee bordes con glow gradient --- */
.vj-marquee-section {
  position: relative;
}
.vj-marquee-section::before,
.vj-marquee-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,0,0.3) 50%, transparent);
  pointer-events: none;
}
.vj-marquee-section::before { top: 0; }
.vj-marquee-section::after { bottom: 0; }

/* --- Cursor glow más reactivo --- */
.cursor-glow {
  background: radial-gradient(circle, rgba(255,106,0,0.55) 0%, rgba(255,106,0,0.15) 30%, transparent 70%);
  width: 480px;
  height: 480px;
  filter: blur(30px);
}

/* --- Smooth section transitions on scroll (compatible con .reveal) --- */
.reveal {
  filter: blur(8px);
}
.reveal.visible {
  filter: blur(0);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out);
}

/* --- Scrollbar futurista --- */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--orange-deep), var(--orange));
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--orange), var(--orange-bright));
  box-shadow: 0 0 8px var(--orange-ring);
}

/* =========================================================
   RECURSOS GRATIS — CV Builder + Guía LinkedIn
   ========================================================= */
.resources {
  padding: 100px 0;
  background: var(--ink);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.resource-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: inherit;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.resource-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 0% 0%, var(--orange-soft), transparent 60%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.resource-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange-ring);
}
.resource-card:hover::before { opacity: 1; }

.resource-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--orange-soft);
  border: 1px solid var(--orange-ring);
  color: var(--orange);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.resource-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}
.resource-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 24px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.resource-card .arrow-link {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .resources-grid { grid-template-columns: 1fr; }
  .resource-card { padding: 28px 24px; }
}

/* =========================================================
   FLAPPY EASTER EGG — botón flotante + modal con canvas
   ========================================================= */
.vj-game-trigger {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 99000 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 12px;
  background: rgba(20, 20, 22, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 106, 0, 0.35);
  color: var(--text-muted);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.6);
}
.vj-game-trigger:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(255, 106, 0, 0.5);
}
.vj-game-emoji {
  font-size: 1rem;
  line-height: 1;
}

.vj-game-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99500 !important;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: grid;
  place-items: center;
  padding: 20px;
  animation: vjGameFadeIn .25s ease;
}
.vj-game-modal[hidden] { display: none !important; }
@keyframes vjGameFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.vj-game-card {
  position: relative;
  text-align: center;
  padding: 28px 28px 20px;
  background:
    radial-gradient(500px 200px at 50% 0%, rgba(255, 106, 0, 0.15), transparent 70%),
    var(--surface);
  border: 1px solid var(--orange-ring);
  border-radius: var(--radius-xl);
  max-width: 92vw;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}
.vj-game-h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  margin: 0 0 6px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.vj-game-sub {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0 0 18px;
}
.vj-game-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: background .2s, color .2s, border-color .2s;
}
.vj-game-close:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
#vjGameCanvas {
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  cursor: pointer;
  touch-action: none;
  max-width: 100%;
  height: auto;
}
.vj-game-help {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.vj-game-help kbd {
  display: inline-block;
  padding: 2px 7px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  color: var(--text);
}
@media (max-width: 480px) {
  .vj-game-trigger {
    bottom: 14px;
    right: 14px;
    padding: 8px 14px 8px 10px;
    font-size: 0.78rem;
  }
  .vj-game-card { padding: 22px 18px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
