/* =============================================
   VANISUR — css/style.css
   Design System v2 — Premium SaaS
   ============================================= */

:root {
  --ink:     #07070a;
  --dark:    #07070a;
  --dark2:   #0d0d14;
  --surface: #12121c;
  --card:    #16162a;

  --border:  rgba(167,139,250,.08);
  --borderA: rgba(167,139,250,.25);
  --borderC: rgba(167,139,250,.15);

  /* Paleta púrpura / azul */
  --blue:    #a78bfa;   /* violet-400 — principal */
  --blue2:   #a78bfa;   /* violet-400 */
  --violet:  #3b82f6;   /* blue-500 */
  --cyan:    #93c5fd;   /* blue-300 */
  --amber:   #7c3aed;   /* violet-700 — soporte oscuro */
  --amber2:  #a78bfa;
  --success: #a78bfa;
  --red:     #F43F5E;

  --glow-b:  rgba(167,139,250,.35);
  --glow-v:  rgba(124, 58,237,.25);
  --glow-a:  rgba( 59,130,246,.25);
  --glow-c:  rgba( 59,130,246,.15);

  --white:   #F8F8F8;
  --gray:    #6B7280;
  --gray2:   #9CA3AF;
  --gray3:   #D1D5DB;

  --grad-primary: linear-gradient(135deg, #7c3aed, #a78bfa);
  --grad-hero:    linear-gradient(135deg, #7c3aed, #a78bfa, #3b82f6);
  --grad-warm:    linear-gradient(135deg, #a78bfa, #3b82f6);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* overflow-x SOLO en body — en html rompe el scroll container del desktop */
}
section[id], div[id].detail-section { scroll-margin-top: 108px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
  /* Evita el "rebote" y el scroll-jump en iOS Safari */
  overscroll-behavior-y: none;
  touch-action: pan-y;
}

/* Prevenir zoom accidental en inputs (iOS auto-zoom si font-size < 16px) */
input, select, textarea {
  font-size: 16px !important;
}
/* Eliminar delay de 300ms en tap + prevenir double-tap zoom en botones/links */
a, button, [role="button"] {
  touch-action: manipulation;
}

/* ── TEXTO GRADIENTE ── */
.g {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.g-hero {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   NAV
   ============================================= */
nav {
  position: fixed; top: 0; left: 0;
  width: 100%; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 80px;
  background: transparent;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: height .4s ease, background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease, border-color .4s ease;
}
nav.scrolled {
  height: 62px;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(32px) saturate(160%);
  box-shadow: 0 1px 0 rgba(167, 139, 250,.15), 0 8px 40px rgba(0,0,0,.6);
  border-bottom-color: rgba(167, 139, 250,.1);
}
/* Reposicionar marquee por CSS cuando nav se achica — sin JS durante scroll */
nav.scrolled ~ .marquee-wrap { top: 58px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img {
  height: 55px; width: auto; display: block;
  filter: none;
  transition: opacity .3s ease;
}
.nav-logo:hover img {
  opacity: .85;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.78); text-decoration: none;
  font-size: .83rem; font-weight: 500; letter-spacing: .04em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--grad-primary); color: var(--white);
  border: none; padding: 10px 26px; border-radius: 6px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .82rem;
  cursor: pointer; letter-spacing: .05em; text-transform: uppercase;
  transition: all .2s;
  box-shadow: 0 0 22px rgba(167, 139, 250,.35);
}
.nav-cta:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 4px 28px rgba(124, 58, 237,.45);
}

/* Language toggle */
.lang-toggle {
  display: flex; align-items: center; gap: 5px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.65);
  padding: 6px 12px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
  flex-shrink: 0;
}
.lang-toggle:hover {
  border-color: var(--blue);
  color: var(--white);
  background: rgba(167, 139, 250,.08);
}
.lang-toggle .lang-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 600;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: flex; position: fixed; inset: 0;
  background: rgba(4,4,4,.97); backdrop-filter: blur(28px) saturate(180%);
  z-index: 400; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  opacity: 0; pointer-events: none;
  transform: translateX(100%);
  transition: opacity .38s ease, transform .38s cubic-bezier(.4,0,.2,1);
  border-left: 1px solid rgba(167, 139, 250,.08);
}
.mobile-nav.open { opacity: 1; pointer-events: all; transform: translateX(0); }

/* Botón cerrar (×) */
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.65); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; z-index: 10;
}
.mobile-nav-close:hover {
  background: rgba(167, 139, 250,.15);
  border-color: rgba(167, 139, 250,.4);
  color: #F8F8F8;
}

/* Logo pequeño en la parte superior del menu mobile */
.mobile-nav-logo {
  position: absolute; top: 22px; left: 28px;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
  letter-spacing: 3px;
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Links de navegación */
.mobile-link {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem;
  letter-spacing: 4px; color: rgba(255,255,255,.82); text-decoration: none;
  transition: color .2s, transform .2s, letter-spacing .2s;
  padding: 10px 0; line-height: 1;
  position: relative;
}
.mobile-link::after {
  content: ''; position: absolute;
  left: 0; bottom: 6px;
  width: 0; height: 2px;
  background: var(--grad-primary);
  transition: width .25s ease;
  border-radius: 2px;
}
.mobile-link:hover { color: var(--blue2); transform: translateX(10px); }
.mobile-link:hover::after { width: 100%; }

/* Stagger links al abrir */
.mobile-nav.open .mobile-link:nth-child(3)  { animation: mlink-in .35s .06s both; }
.mobile-nav.open .mobile-link:nth-child(4)  { animation: mlink-in .35s .12s both; }
.mobile-nav.open .mobile-link:nth-child(5)  { animation: mlink-in .35s .18s both; }
.mobile-nav.open .mobile-link:nth-child(6)  { animation: mlink-in .35s .24s both; }
.mobile-nav.open .mobile-link:nth-child(7)  { animation: mlink-in .35s .30s both; }
.mobile-nav.open .mobile-nav-footer { animation: mlink-in .35s .38s both; }
@keyframes mlink-in {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Footer del menú mobile */
.mobile-nav-footer {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
  width: 220px;
}
.mobile-lang-toggle {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65);
  padding: 9px 20px; border-radius: 6px;
  font-family: 'Outfit', sans-serif; font-size: .76rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; width: 100%; justify-content: center;
  transition: all .2s;
}
.mobile-lang-toggle:hover {
  border-color: var(--blue); color: #F8F8F8;
  background: rgba(167, 139, 250,.1);
}
.mobile-nav-cta {
  width: 100%; text-align: center;
  padding: 14px 20px; font-size: .82rem;
}

/* =============================================
   HERO
   ============================================= */
/* =============================================
   HERO — HYPER STYLE
   ============================================= */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  background:
    radial-gradient(ellipse 70% 55% at 72% 35%, rgba(124, 58, 237, .14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 65% at 15% 65%, rgba(59, 130, 246, .09) 0%, transparent 65%),
    #07070a;
  padding: 140px 60px 80px;
}

/* Canvas particles (legacy — elemento eliminado del HTML) */
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* ─────────────────────────────────────────────
   HERO 3D BACKGROUND — grilla perspectiva + orbes
   ───────────────────────────────────────────── */
.hero-3d-bg {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}

/* Grilla de perspectiva — suelo tech tipo HUD */
.hero-grid-3d {
  position: absolute;
  bottom: -5%;
  left: -20%;
  width: 140%;
  height: 65%;
  background-image:
    linear-gradient(rgba(167, 139, 250,.1)  1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 139, 250,.1) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(600px) rotateX(78deg);
  transform-origin: bottom center;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 100%, black 25%, transparent 68%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 100%, black 25%, transparent 68%);
  animation: grid-scroll 14s linear infinite;
  opacity: .7;
}
@keyframes grid-scroll {
  from { background-position: 0 0; }
  to   { background-position: 0 80px; }
}

/* Orbes flotantes — glow ambiental */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(55px); pointer-events: none;
  animation: orb-float 10s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  right: 2%; top: -5%;
  background: radial-gradient(circle, rgba(167, 139, 250,.07) 0%, transparent 70%);
  animation-duration: 9s;
}
.hero-orb-2 {
  width: 260px; height: 260px;
  right: 28%; top: 55%;
  background: radial-gradient(circle, rgba(167, 139, 250,.05) 0%, transparent 70%);
  animation-duration: 12s; animation-delay: -4s;
}
.hero-orb-3 {
  width: 180px; height: 180px;
  left: 8%; top: 15%;
  background: radial-gradient(circle, rgba(167, 139, 250,.04) 0%, transparent 70%);
  animation-duration: 8s; animation-delay: -6s;
}
.hero-orb-4 {
  width: 340px; height: 340px;
  left: -4%; bottom: -5%;
  background: radial-gradient(circle, rgba(59, 130, 246,.06) 0%, transparent 70%);
  animation-duration: 14s; animation-delay: -2s;
}
@keyframes orb-float {
  0%, 100% { transform: translateY(0)    scale(1); }
  33%       { transform: translateY(-28px) scale(1.06); }
  66%       { transform: translateY(16px)  scale(.95); }
}

/* Watermark VANISUR gigante de fondo */
.hero-watermark {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30vw;
  font-weight: 900;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none; user-select: none;
  z-index: 0;
}

/* Glow ambiental naranja del lado derecho */
.hero-ambient-glow {
  position: absolute;
  width: 700px; height: 700px;
  right: -150px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(167, 139, 250,.22) 0%, rgba(167, 139, 250,.07) 45%, transparent 70%);
  filter: blur(70px);
  pointer-events: none; z-index: 0;
  animation: ambient-pulse 5s ease-in-out infinite;
}
@keyframes ambient-pulse {
  0%, 100% { opacity: 1;   transform: translateY(-50%) scale(1); }
  50%       { opacity: .75; transform: translateY(-50%) scale(1.12); }
}

/* Hero inner layout */
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
}
.hero-left { display: flex; flex-direction: column; }

/* Eyebrow pill más minimal */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(167, 139, 250,.06);
  border: 1px solid rgba(167, 139, 250,.2);
  color: rgba(167, 139, 250,.9); padding: 6px 16px; border-radius: 100px;
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; margin-bottom: 28px;
  width: fit-content;
  animation: fadeUp .5s ease both;
}
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue2);
  box-shadow: 0 0 8px var(--blue2);
  animation: pulse 2s infinite;
}

/* Tipografía hero — más grande y dominante */
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 8vw, 9.5rem);
  line-height: .9; letter-spacing: .5px;
  color: #F8F8F8;
  animation: fadeUp .6s .1s ease both;
}
/* Palabra en naranja — estilo HYPER */
.hero-em {
  font-style: normal;
  background: linear-gradient(
    175deg,
    #60a5fa  0%,
    #a78bfa 45%,
    #7c3aed 80%,
    #7c3aed 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255,255,255,.55); font-size: .95rem; line-height: 1.8;
  max-width: 440px; margin: 24px 0 36px;
  animation: fadeUp .6s .2s ease both;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp .6s .3s ease both;
}

/* Botón ghost (segundo botón) */
.btn-ghost {
  color: rgba(255,255,255,.75);
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: .88rem; letter-spacing: .04em;
  text-decoration: none; padding: 15px 28px;
  border-radius: 6px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  transition: all .25s;
}
.btn-ghost:hover {
  border-color: rgba(167, 139, 250,.4);
  color: var(--blue2);
  background: rgba(167, 139, 250,.06);
}

/* Trust bar */
.hero-trust {
  display: flex; align-items: center; gap: 0;
  margin-top: 44px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.06);
  animation: fadeUp .6s .4s ease both;
}
.trust-item { display: flex; flex-direction: column; gap: 3px; padding: 0 28px 0 0; }
.trust-item:first-child { padding-left: 0; }
.trust-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem;
  background: linear-gradient(110deg, #7c3aed 0%, #a78bfa 30%, #3b82f6 60%, #a78bfa 80%, #7c3aed 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; letter-spacing: 1px; line-height: 1;
  animation: btn-holo 4s ease-in-out infinite;
}
.trust-label { color: rgba(255,255,255,.4); font-size: .75rem; letter-spacing: .04em; }
.trust-sep {
  width: 1px; height: 36px; background: rgba(255,255,255,.07);
  margin: 0 28px 0 0; flex-shrink: 0;
}

/* Dashboard flotante */
.hero-right {
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp .7s .25s ease both;
}

/* Wrap con glow ring naranja — efecto HYPER */
.hero-dashboard-wrap {
  position: relative;
  width: 100%; max-width: 420px;
}

/* Glow ring naranja pulsante */
.dashboard-glow-ring {
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(167, 139, 250,.35) 0%,
    rgba(167, 139, 250,.12) 40%,
    transparent 68%
  );
  filter: blur(35px);
  pointer-events: none; z-index: 0;
  animation: ring-pulse 3.5s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { opacity: .85; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.1); }
}

/* Dashboard con animación 3D flotante */
.hero-dashboard {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 12px;
  width: 100%; max-width: 420px;
  animation: float3d 7s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes float3d {
  0%   { transform: perspective(900px) rotateY(-6deg) rotateX(4deg)  translateY(0px); }
  33%  { transform: perspective(900px) rotateY(2deg)  rotateX(-2deg) translateY(-12px); }
  66%  { transform: perspective(900px) rotateY(6deg)  rotateX(3deg)  translateY(-6px); }
  100% { transform: perspective(900px) rotateY(-6deg) rotateX(4deg)  translateY(0px); }
}
.dash-card {
  background: rgba(20,20,20,.88);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 22px;
  backdrop-filter: blur(20px);
  transition: border-color .3s, transform .3s;
}
.dash-card:hover { border-color: var(--borderA); transform: translateY(-2px); }

.dash-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 16px;
}
.dash-title { font-size: .78rem; font-weight: 600; color: var(--gray2); letter-spacing: .04em; }
.dash-status {
  font-size: .62rem; font-weight: 800; letter-spacing: .12em;
  padding: 3px 10px; border-radius: 100px;
  text-transform: uppercase;
}
.dash-status.live {
  background: rgba(167, 139, 250,.15);
  border: 1px solid rgba(167, 139, 250,.3);
  color: var(--success);
}

.dash-metric { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.dash-val { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; letter-spacing: 1px; color: var(--white); }
.dash-delta {
  font-size: .78rem; font-weight: 700; padding: 2px 8px;
  border-radius: 4px;
}
.dash-delta.up { background: rgba(167, 139, 250,.12); color: var(--success); }
.dash-label { font-size: .78rem; color: var(--gray); margin-bottom: 14px; }

.dash-bar-wrap {
  height: 4px; background: rgba(255,255,255,.06);
  border-radius: 2px; overflow: hidden;
}
.dash-bar {
  height: 100%;
  background: var(--grad-primary);
  border-radius: 2px;
  animation: barGrow 1.5s 1s ease both;
}
@keyframes barGrow { from { width: 0; } }

.dash-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dash-card.dash-small { padding: 16px 18px; }
.dash-icon { font-size: .7rem; color: var(--blue); margin-bottom: 8px; }
.dash-icon.neon { color: var(--violet); text-shadow: 0 0 12px var(--violet); }
.dash-s-val { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 1px; line-height: 1; }
.dash-s-label { font-size: .72rem; color: var(--gray); margin-top: 4px; }

.dash-card.dash-notif {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px;
}
.notif-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--violet); flex-shrink: 0;
  box-shadow: 0 0 10px var(--violet);
  animation: pulse 2s infinite;
}
.notif-title { font-size: .84rem; font-weight: 600; color: var(--white); }
.notif-sub { font-size: .74rem; color: var(--gray); margin-top: 2px; }

/* =============================================
   BOTONES
   ============================================= */
.btn-primary {
  /* Gradiente holográfico animado — mueve el fondo */
  background: linear-gradient(
    110deg,
    #7c3aed 0%,
    #a78bfa 25%,
    #3b82f6 50%,
    #a78bfa 75%,
    #7c3aed 100%
  );
  background-size: 250% 100%;
  animation: btn-holo 4s ease-in-out infinite;
  color: var(--white);
  padding: 16px 36px; border-radius: 8px; border: none;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .92rem;
  cursor: pointer; text-decoration: none; letter-spacing: .06em;
  transition: transform .2s, box-shadow .2s; display: inline-block;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(167, 139, 250,.4), 0 0 0 0 rgba(167, 139, 250,.3);
}
/* Barrido de luz interno en el botón */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -80%;
  width: 50%; height: 200%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,.22),
    transparent
  );
  transform: skewX(-15deg);
  animation: btn-shine 3.5s ease-in-out infinite;
}
@keyframes btn-holo {
  0%,100% { background-position: 0%   50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes btn-shine {
  0%,100% { left: -80%;  opacity: 0; }
  10%     { opacity: 1;  }
  45%     { left: 140%;  opacity: 0; }
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(167, 139, 250,.55), 0 0 0 3px rgba(167, 139, 250,.15);
}
.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 6px;
  border: 1px solid rgba(167, 139, 250,.25);
  font-family: 'Outfit', sans-serif; font-weight: 500; font-size: .9rem;
  cursor: pointer; text-decoration: none; transition: all .25s; display: inline-block;
}
.btn-outline:hover { border-color: var(--violet); color: var(--blue2); }

/* Legacy buttons (used in detail sections) */
.btn-green { background: var(--grad-primary); color: var(--white); padding: 15px 32px; border-radius: 6px; border: none; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .9rem; cursor: pointer; text-decoration: none; letter-spacing: .04em; transition: all .25s; display: inline-block; box-shadow: 0 4px 20px rgba(167, 139, 250,.3); }
.btn-green:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(167, 139, 250,.45); }
.btn-ghost { background: transparent; color: var(--white); padding: 14px 32px; border-radius: 6px; border: 1px solid rgba(167, 139, 250,.25); font-family: 'Outfit', sans-serif; font-weight: 500; font-size: .9rem; cursor: pointer; text-decoration: none; transition: all .25s; display: inline-block; }
.btn-ghost:hover { border-color: var(--violet); color: var(--blue2); }

/* =============================================
   MARQUEE
   ============================================= */
.marquee-wrap {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 498;
  overflow: hidden;
  transition: top .4s ease;
  /* Fondo oscuro con borde flúor sutil — no full lime */
  background: rgba(10,10,10,.92);
  border-top: 1px solid rgba(167, 139, 250,.2);
  border-bottom: 1px solid rgba(167, 139, 250,.12);
  padding: 9px 0;
  backdrop-filter: blur(12px);
}
.marquee-item { color: rgba(255,255,255,.75) !important; }
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.marquee { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee-item { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: rgba(255,255,255,.9); letter-spacing: 2.5px; padding: 0 28px; }
.msep { color: rgba(255,255,255,.4); }

/* =============================================
   SECTION CHIP + TITLE
   ============================================= */
.section-chip {
  display: inline-block; color: var(--blue2);
  font-size: .7rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-chip::before { content: '// '; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: 1px; line-height: 1.05;
}

/* =============================================
   MANIFESTO — "No hacemos páginas web"
   ============================================= */
.manifesto {
  padding: 120px 60px;
  background: var(--dark);
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.manifesto::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: var(--grad-hero);
}
.manifesto-inner { max-width: 1280px; margin: 0 auto; }
.manifesto-header { margin-bottom: 72px; }
.manifesto-header h2 { margin-top: 16px; }

.manifesto-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

/* VS comparison */
.manifesto-vs {
  display: flex; align-items: stretch; gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.vs-col { flex: 1; padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; }
.vs-col.vs-yes { border-left: 1px solid var(--border); }
.vs-label {
  font-size: .7rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.vs-col.vs-no .vs-label { color: var(--gray); }
.vs-col.vs-yes .vs-label { color: var(--blue2); }

.vs-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .87rem; padding: 10px 12px;
  border-radius: 6px; font-weight: 500;
}
.vs-item::before { font-size: .8rem; flex-shrink: 0; font-weight: 900; }
.vs-item.no { color: var(--gray); background: rgba(244,63,94,.04); }
.vs-item.no::before { content: '✗'; color: var(--red); }
.vs-item.yes { color: var(--gray3); background: rgba(167, 139, 250,.04); }
.vs-item.yes::before { content: '✓'; color: var(--blue2); }

/* Pillars */
.manifesto-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 28px 24px;
  transition: border-color .3s, transform .3s;
}
.pillar:hover { border-color: var(--borderA); transform: translateY(-3px); }
.pillar-icon {
  font-size: 1.1rem; color: var(--blue2); margin-bottom: 14px;
  display: block;
  text-shadow: 0 0 16px var(--glow-b);
}
.pillar h4 { font-size: .96rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.pillar p { font-size: .82rem; color: var(--gray2); line-height: 1.65; }

/* =============================================
   PORTFOLIO — GRID CON FLIP 3D
   ============================================= */
.slider-section {
  padding: 100px 60px; background: var(--dark2);
  border-top: 1px solid var(--border);
}
.slider-header { margin-bottom: 52px; }

/* Grid 3 columnas */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Contenedor flip — aspect-ratio 16:9 para que coincida con screenshots 1920x1080 */
.slide {
  aspect-ratio: 16 / 9;  /* mismo ratio que la imagen → cover sin recorte */
  min-height: 180px;
  border-radius: 14px;
  perspective: 1100px; cursor: pointer; position: relative;
}

/* Tarjeta giratoria */
.slide-inner {
  width: 100%; height: 100%; position: relative;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
  border-radius: 14px;
}
.slide:hover .slide-inner { transform: rotateY(180deg); }

/* Cara frontal y trasera — base */
.slide-front,
.slide-back {
  position: absolute; inset: 0;
  border-radius: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ── CARA FRONTAL (imagen) ── */
.slide-front {
  border: 1px solid var(--border);
  background-color: #07070a;
  overflow: hidden;
  position: relative;
}

/* Con aspect-ratio 16:9 + object-fit: cover la imagen NO se recorta */
.slide-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 14px;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.slide:hover .slide-front img { transform: scale(1.04); }

/* Degradado inferior — más oscuro para que el badge destaque */
.slide-front::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0)    0%,
    rgba(0,0,0,.15) 45%,
    rgba(0,0,0,.65) 72%,
    rgba(0,0,0,.88) 100%
  );
  border-radius: 14px;
  pointer-events: none;
}
/* Tag categoría (esquina inf-izq) */
.slide-front-tag {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
}
/* Hint hover (esquina sup-der) — invisible en reposo, aparece al hover */
.slide-hover-hint {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-size: .58rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  padding: 4px 10px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.12);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .3s ease, transform .3s ease;
}
.slide:hover .slide-hover-hint {
  opacity: 1;
  transform: translateY(0);
}

/* ── CARA TRASERA (info) — más compacta para cards más bajas ── */
.slide-back {
  transform: rotateY(180deg);
  background: linear-gradient(145deg, rgba(18,18,18,.99), rgba(8,8,8,.99));
  border: 1px solid var(--borderA);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 22px 26px; gap: 10px;
}
/* Línea de acento en la parte superior */
.slide-back::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-primary);
  border-radius: 14px 14px 0 0;
}

/* ── IMÁGENES PORTFOLIO
   Cada slide usa un <img> dentro de .slide-front
   Para cambiar una imagen: reemplazá el archivo en assets/images/portfolio/
   — 01.png  Ecommerce SaaS
   — 02.png  Gastronomía SaaS  (ej: Tovani Burger)
   — 03.png  Inmobiliaria SaaS
   — 04.png  LMS Educativo
   — 05.png  App de Reservas
   — 06.png  CRM SaaS
   Tamaño recomendado: 1280×800 px mínimo (viewport screenshot)
   ──────────────────────────────────────────────── */

/* Tag de categoría */
.slide-tag {
  display: inline-block; background: var(--blue); color: var(--white);
  font-size: .64rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
}

/* Contenido cara trasera */
.slide-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem; letter-spacing: 1.5px;
  color: var(--white); line-height: 1; margin-top: 2px;
}
.slide-desc {
  color: var(--gray2); font-size: .82rem; line-height: 1.5;
  border-left: 2px solid var(--borderA); padding-left: 10px;
}
.slide-cta {
  display: inline-block; text-decoration: none; margin-top: 4px;
  font-family: 'Outfit', sans-serif; font-size: .75rem;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue2);
  border: 1px solid rgba(167, 139, 250,.35); padding: 8px 16px;
  border-radius: 6px; background: rgba(167, 139, 250,.07);
  transition: background .2s, border-color .2s, color .2s;
}
.slide-cta:hover {
  background: rgba(167, 139, 250,.18);
  border-color: rgba(167, 139, 250,.7);
  color: var(--white);
}

/* Glow naranja en hover sobre la tarjeta entera */
.slide::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: 15px; z-index: -1;
  background: var(--grad-primary); opacity: 0; transition: opacity .4s;
}
.slide:hover::before { opacity: .45; }

/* Botones nav (se mantienen aunque ya no son necesarios en grid) */
.slider-nav { display: flex; gap: 12px; margin-top: 24px; }
.sl-btn {
  width: 44px; height: 44px; border-radius: 6px;
  border: 1px solid var(--border); background: var(--card);
  color: var(--white); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.sl-btn:hover { border-color: var(--borderA); color: var(--blue2); }

/* =============================================
   SERVICIOS — 4 PILARES
   ============================================= */
.services-section { padding: 100px 60px; background: #07070a; }
.services-intro {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 72px; gap: 40px; flex-wrap: wrap;
}
.services-intro-sub { color: var(--gray2); font-size: .98rem; line-height: 1.75; max-width: 360px; }

/* Pillar tabs */
.svc-pillars {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; margin-bottom: 2px;
}
.svc-pillar-header {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 24px 24px;
  transition: background .3s, border-color .3s;
  cursor: default;
}
.svc-pillar-header:hover { background: rgba(167, 139, 250,.05); border-color: var(--borderA); }
.pillar-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 3rem;
  color: rgba(167, 139, 250,.08); position: absolute; right: 16px; top: 12px;
  letter-spacing: 2px; pointer-events: none;
}
.svc-pillar-header { position: relative; }
.pillar-tag {
  display: inline-block;
  font-size: .62rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--violet); margin-bottom: 14px;
}
.svc-pillar-header h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
  letter-spacing: .5px; margin-bottom: 8px; color: var(--white);
}
.svc-pillar-header p { font-size: .82rem; color: var(--gray); line-height: 1.6; }

/* Service cards grid */
.services-main, .services-row2, .services-row3 {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; margin-bottom: 2px;
}
.services-row3 { grid-template-columns: repeat(2,1fr); }

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 32px; position: relative; overflow: hidden;
  transition: background .3s, border-color .3s;
  text-decoration: none; color: inherit; display: block; cursor: pointer;
}
.svc-card:hover { background: rgba(167, 139, 250,.04); border-color: var(--borderA); }
.svc-card::after {
  content: '→'; position: absolute; bottom: 22px; right: 24px;
  font-size: 1.1rem; color: var(--blue2); opacity: 0;
  transform: translateX(-8px); transition: opacity .25s, transform .25s;
}
.svc-card:hover::after { opacity: 1; transform: translateX(0); }
.svc-number {
  font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem;
  /* Número holográfico que pulsa suavemente */
  background: linear-gradient(135deg, rgba(167, 139, 250,.12), rgba(124, 58, 237,.08), rgba(167, 139, 250,.12));
  background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: num-holo 6s ease-in-out infinite;
  position: absolute; top: 12px; right: 20px;
  letter-spacing: 2px; pointer-events: none;
}
@keyframes num-holo {
  0%,100% { background-position: 0%   50%; }
  50%      { background-position: 100% 50%; }
}
.svc-img { width: 48px; height: 48px; object-fit: contain; margin-bottom: 18px; display: block; }
.svc-card h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
  letter-spacing: .5px; margin-bottom: 8px;
}
.svc-card p { color: var(--gray2); font-size: .85rem; line-height: 1.65; }

/* Badge holográfico con borde animado */
.svc-badge {
  display: inline-block;
  background: linear-gradient(110deg, rgba(167, 139, 250,.08), rgba(124, 58, 237,.12), rgba(167, 139, 250,.08));
  background-size: 200% 100%;
  animation: badge-holo 5s ease-in-out infinite;
  border: 1px solid rgba(167, 139, 250,.3);
  color: var(--blue2);
  font-size: .63rem; font-weight: 800; letter-spacing: .1em;
  padding: 4px 12px; border-radius: 100px;
  text-transform: uppercase; margin-top: 14px;
  box-shadow: 0 0 12px rgba(167, 139, 250,.15);
}
@keyframes badge-holo {
  0%,100% { background-position: 0%   50%; border-color: rgba(167, 139, 250,.3); }
  50%      { background-position: 100% 50%; border-color: rgba(124, 58, 237,.5); }
}
.svc-badge.cotiza {
  background: rgba(167, 139, 250,.08); border-color: rgba(167, 139, 250,.3); color: var(--amber);
  animation: none;
}

/* =============================================
   DETALLE DE SERVICIOS
   ============================================= */
.detail-section {
  padding: 100px 60px; background: var(--dark);
  border-top: 1px solid var(--border);
}
.detail-inner { max-width: 1280px; margin: 0 auto; }
.detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 60px;
}
.detail-grid.rev { direction: rtl; }
.detail-grid.rev > * { direction: ltr; }
.detail-visual {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
  display: flex; flex-direction: column;
  transition: border-color .3s;
}
.detail-visual:hover { border-color: var(--borderA); }
.detail-bar {
  background: var(--dark2); border-bottom: 1px solid var(--border);
  padding: 11px 16px; display: flex; align-items: center; gap: 8px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #FF5F57; }
.dot-y { background: #FEBC2E; }
.dot-g { background: var(--success); }
.detail-screen { flex: 1; display: flex; align-items: center; justify-content: center; }

.ss-tienda   { background: url('../assets/images/servicios/01.png') center/cover no-repeat, var(--dark2); }
.ss-web      { background: url('../assets/images/servicios/02.png') center/cover no-repeat, var(--dark2); }
.ss-inmo     { background: url('../assets/images/servicios/03.png') center/cover no-repeat, var(--dark2); }
.ss-ws       { background: url('../assets/images/servicios/04.png') center/cover no-repeat, var(--dark2); }
.ss-lms      { background: url('../assets/images/servicios/05.png') center/cover no-repeat, var(--dark2); }
.ss-reservas { background: url('../assets/images/servicios/06.png') center/cover no-repeat, var(--dark2); }
.ss-gastro   { background: url('../assets/images/servicios/07.png') center/cover no-repeat, var(--dark2); }
.ss-wsp      { background: url('../assets/images/servicios/08.png') center/cover no-repeat, var(--dark2); }
.ss-crm      { background:  url('../assets/images/servicios/09.png') center/cover no-repeat, var(--dark2); }

.screen-ph { opacity: .1; text-align: center; }
.screen-ph svg { width: 60px; fill: var(--blue2); }

.detail-badge {
  display: inline-block; background: rgba(167, 139, 250,.08);
  border: 1px solid var(--borderA); color: var(--blue2);
  padding: 5px 14px; border-radius: 3px;
  font-size: .68rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 20px;
}
.detail-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  letter-spacing: 1px; line-height: 1.05; margin-bottom: 20px;
}

.trial-banner {
  background: rgba(167, 139, 250,.06);
  border: 1px solid var(--borderA); border-radius: 8px;
  padding: 18px 22px; display: flex; align-items: center;
  gap: 16px; margin-bottom: 32px;
}
.trial-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--violet); flex-shrink: 0;
  box-shadow: 0 0 10px var(--violet);
}
.trial-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem;
  letter-spacing: .5px; color: var(--violet);
}
.trial-desc { color: var(--gray2); font-size: .83rem; margin-top: 2px; }

.detail-highlights { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 32px; }
.highlight {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 15px 18px; transition: border-color .3s;
}
.highlight:hover { border-color: var(--borderA); }
.h-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--violet); flex-shrink: 0; margin-top: 7px; box-shadow: 0 0 8px var(--violet); }
.h-title { font-weight: 700; font-size: .9rem; color: var(--blue2); }
.h-desc { color: var(--gray); font-size: .82rem; margin-top: 3px; line-height: 1.5; }

.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 28px 0 32px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 15px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 6px; transition: border-color .3s;
}
.feature-item:hover { border-color: var(--borderA); }
.fcheck {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(167, 139, 250,.08); border: 1px solid var(--borderA);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue2); font-size: .7rem; flex-shrink: 0; margin-top: 1px;
}
.ftext { font-size: .82rem; color: var(--gray2); line-height: 1.5; }
.ftext strong { color: var(--white); display: block; font-weight: 600; }

/* =============================================
   PLANES — TABS POR PRODUCTO
   ============================================= */
.pricing-section {
  padding: 100px 60px; background: var(--ink);
  border-top: 1px solid var(--border); position: relative;
}
.pricing-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--grad-hero);
}

.plan-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 40px 0 0; }
.plan-tab {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--gray2); padding: 10px 24px; border-radius: 6px;
  font-family: 'Outfit', sans-serif; font-size: .82rem;
  font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
}
.plan-tab:hover { border-color: var(--borderA); color: var(--blue2); }
.plan-tab.active {
  background: rgba(167, 139, 250,.1);
  border-color: var(--blue); color: var(--blue2);
}

.plan-panel { display: none; }
.plan-panel.active { display: block; }

.plans-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 40px;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 28px; position: relative;
  transition: transform .3s, border-color .3s;
}
.plan-card:hover { transform: translateY(-5px); border-color: rgba(148,163,184,.15); }
.plan-card.featured {
  background: linear-gradient(160deg, rgba(59, 130, 246,.12), rgba(167, 139, 250,.06));
  border-color: var(--borderA);
}
.badge-popular {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-primary); color: var(--white);
  font-size: .62rem; font-weight: 800; letter-spacing: .1em;
  padding: 4px 16px; border-radius: 100px; text-transform: uppercase;
  white-space: nowrap;
}
.plan-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
  letter-spacing: 1px; margin-bottom: 6px;
}
.plan-name.simple  { color: var(--gray2); }
.plan-name.medium, .plan-name.pro { color: var(--blue2); }
.plan-name.pro { color: var(--blue2); }
.plan-desc { color: var(--gray); font-size: .83rem; line-height: 1.55; margin-bottom: 6px; }

/* ── Currency bar ── */
.currency-bar {
  display: flex; align-items: center; gap: 12px;
  margin-top: 10px; margin-bottom: 6px; flex-wrap: wrap;
}
.currency-label {
  font-size: .78rem; color: var(--gray2); font-weight: 500;
}
.currency-switch {
  display: flex; border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
}
.cur-btn {
  padding: 5px 14px;
  background: transparent;
  border: none;
  color: var(--gray2);
  font-family: 'Outfit', sans-serif;
  font-size: .74rem; font-weight: 700; letter-spacing: .05em;
  cursor: pointer; transition: background .15s, color .15s;
}
.cur-btn.active {
  background: var(--blue);
  color: #F8F8F8;
}
.rate-info {
  font-size: .72rem; color: var(--gray); font-style: italic;
}

/* ── Plan price block ── */
.plan-price-block {
  margin: 6px 0 12px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.plan-price-monthly {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 10px;
}
.price-amount {
  font-size: 1.6rem; font-weight: 800; color: var(--white);
  letter-spacing: -.02em; transition: color .2s;
}
.plan-card.featured .price-amount { color: var(--blue2); }
.price-period {
  font-size: .8rem; color: var(--gray2); font-weight: 500;
}
.plan-price-onetime {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: 8px; border-top: 1px solid var(--border);
}
.price-ot-label {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--gray);
}
.price-ot-amount {
  font-size: 1rem; font-weight: 700; color: var(--gray2);
}
.price-ot-note {
  font-size: .66rem; color: var(--gray); line-height: 1.4; margin-top: 2px;
}

.plan-trial {
  text-align: center;
  background: rgba(167, 139, 250,.06); border: 1px solid var(--borderC);
  border-radius: 4px; padding: 7px;
  font-size: .74rem; color: var(--violet); font-weight: 700;
  margin-top: 12px; margin-bottom: 0; letter-spacing: .04em;
}
.plan-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.plan-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 9px; margin-bottom: 28px;
}
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .84rem; color: var(--gray2); line-height: 1.4;
}
.plan-features li .ck { color: var(--violet); flex-shrink: 0; margin-top: 1px; }
.plan-btn {
  display: block; width: 100%; text-align: center; padding: 13px;
  border-radius: 6px; font-family: 'Outfit', sans-serif;
  font-size: .88rem; font-weight: 700; cursor: pointer;
  text-decoration: none; transition: all .25s;
  border: 1px solid var(--border); background: transparent;
  color: var(--white); letter-spacing: .04em; text-transform: uppercase;
}
.plan-btn:hover { background: rgba(255,255,255,.05); }
.plan-card.featured .plan-btn {
  background: var(--grad-primary); border-color: transparent; color: var(--white);
  box-shadow: 0 4px 20px rgba(167, 139, 250,.3);
}
.plan-card.featured .plan-btn:hover { opacity: .9; }
.plan-btn-featured {
  background: var(--grad-primary) !important; border-color: transparent !important;
  color: var(--white) !important; box-shadow: 0 4px 20px rgba(167, 139, 250,.35) !important;
}
.plan-btn-featured:hover { opacity: .88 !important; }

/* ── Pricing sub-text ── */
.pricing-sub-text {
  color: var(--gray2); font-size: .9rem; margin-top: 10px; margin-bottom: 0;
  max-width: 560px;
}

/* ── Level toggle (Sitios Web / Plataformas SaaS) ── */
.level-toggle {
  display: flex; gap: 6px; margin-top: 36px; margin-bottom: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 4px; width: fit-content;
}
.lvl-btn {
  background: transparent; border: none; border-radius: 5px;
  padding: 9px 22px; font-family: 'Outfit', sans-serif;
  font-size: .8rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--gray); cursor: pointer;
  transition: all .2s;
}
.lvl-btn.active {
  background: var(--blue); color: var(--white);
  box-shadow: 0 2px 12px rgba(167, 139, 250,.4);
}
.lvl-btn:hover:not(.active) { color: var(--white); }

/* ── Price level panels ── */
.price-level { display: none; }
.price-level.active { display: block; }

.level-desc {
  color: var(--gray2); font-size: .88rem; line-height: 1.6;
  margin-top: 20px; margin-bottom: 36px; max-width: 640px;
}

/* ── Web plans — tier cards ── */
.web-plans { margin-top: 0; }

/* Tier badges */
.plan-tier-badge {
  display: inline-block; font-size: .6rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; padding: 3px 10px;
  border-radius: 100px; margin-bottom: 12px;
}
.starter-badge {
  background: rgba(107,114,128,.12); color: var(--gray2);
  border: 1px solid rgba(107,114,128,.2);
}
.pro-badge {
  background: rgba(167, 139, 250,.12); color: var(--blue2);
  border: 1px solid rgba(167, 139, 250,.25);
}
.enterprise-badge {
  background: rgba(124, 58, 237,.08); color: var(--violet);
  border: 1px solid rgba(124, 58, 237,.2);
}

/* Tier card visual hierarchy */
.tier-starter {
  background: var(--card); border-color: var(--border);
  opacity: .9;
}
.tier-starter:hover { opacity: 1; border-color: rgba(148,163,184,.2); }

.tier-pro {
  background: linear-gradient(160deg, rgba(59, 130, 246,.14), rgba(167, 139, 250,.07));
  border-color: var(--borderA);
  box-shadow: 0 0 30px rgba(167, 139, 250,.08);
  transform: translateY(-6px);
}
.tier-pro:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 50px rgba(167, 139, 250,.18);
  border-color: rgba(167, 139, 250,.5);
}

.tier-enterprise {
  background: linear-gradient(160deg, rgba(124, 58, 237,.06), rgba(107,114,128,.04));
  border-color: var(--borderC);
}
.tier-enterprise:hover { border-color: rgba(124, 58, 237,.35); }

/* ── SaaS level ── */
.saas-intro { margin-bottom: 0; }
.saas-note {
  display: inline-block; margin-top: 8px; margin-bottom: 36px;
  font-size: .72rem; color: var(--gray); letter-spacing: .05em;
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px;
}

.saas-products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.saas-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 24px;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.saas-card:hover {
  border-color: rgba(167, 139, 250,.3);
  transform: translateY(-3px);
}
.saas-card-custom {
  background: linear-gradient(135deg, rgba(124, 58, 237,.05), rgba(167, 139, 250,.04));
  border-color: var(--borderC);
}
.saas-card-custom:hover { border-color: rgba(124, 58, 237,.4); }

.saas-card-tag {
  display: inline-block; font-size: .58rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  background: rgba(167, 139, 250,.08); color: var(--blue);
  border: 1px solid rgba(167, 139, 250,.15);
  padding: 3px 9px; border-radius: 100px;
  margin-bottom: 14px; width: fit-content;
}
.saas-card-custom .saas-card-tag {
  background: rgba(124, 58, 237,.08); color: var(--violet);
  border-color: rgba(124, 58, 237,.2);
}
.saas-card h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem;
  letter-spacing: .5px; color: var(--white); margin-bottom: 8px;
}
.saas-card > p {
  color: var(--gray); font-size: .81rem; line-height: 1.6;
  margin-bottom: 18px;
}
.saas-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 7px; margin-bottom: 22px; flex: 1;
}
.saas-features li {
  font-size: .78rem; color: var(--gray2); padding-left: 14px;
  position: relative; line-height: 1.4;
}
.saas-features li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--blue); font-size: .7rem;
}
.saas-cta {
  display: block; text-align: center; text-decoration: none;
  font-family: 'Outfit', sans-serif; font-size: .78rem;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 11px; border-radius: 6px; margin-top: auto;
  border: 1px solid rgba(167, 139, 250,.3); color: var(--blue2);
  background: rgba(167, 139, 250,.05);
  transition: all .2s;
}
.saas-cta:hover {
  background: rgba(167, 139, 250,.12); border-color: var(--blue);
  color: var(--white);
}
.saas-cta-special {
  border-color: rgba(124, 58, 237,.3); color: var(--violet);
  background: rgba(124, 58, 237,.04);
}
.saas-cta-special:hover {
  background: rgba(124, 58, 237,.1); border-color: var(--violet);
  color: var(--white);
}

/* =============================================
   SISTEMAS A MEDIDA
   ============================================= */
.quote-section {
  padding: 100px 60px; background: var(--dark);
  border-top: 1px solid var(--border);
}
.quote-inner { max-width: 1280px; margin: 0 auto; }
.quote-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 60px; }
.quote-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 44px 40px;
  position: relative; overflow: hidden; transition: border-color .3s;
}
.quote-card:hover { border-color: var(--borderA); }
.quote-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-primary);
}
.quote-img { width: 52px; height: 52px; object-fit: contain; margin-bottom: 20px; display: block; }
.quote-card h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
  letter-spacing: .5px; margin-bottom: 12px;
}
.quote-card p { color: var(--gray); font-size: .88rem; line-height: 1.7; margin-bottom: 24px; }
.quote-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.qf { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: var(--gray2); }
.qf::before { content: '◆'; color: var(--blue2); font-size: .5rem; flex-shrink: 0; }
.quote-note {
  background: rgba(167, 139, 250,.06); border: 1px solid rgba(167, 139, 250,.2);
  border-radius: 4px; padding: 12px 16px;
  font-size: .8rem; color: var(--amber); margin-bottom: 24px;
}

/* =============================================
   DISEÑO GRÁFICO
   ============================================= */
.design-section {
  padding: 100px 60px; background: var(--ink);
  border-top: 1px solid var(--border);
}
.design-inner { max-width: 1280px; margin: 0 auto; }
.design-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 60px; }
.design-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 32px 24px; text-align: center;
  transition: all .3s; cursor: pointer;
}
.design-card:hover { border-color: var(--borderA); transform: translateY(-4px); }
.design-card h4 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem;
  letter-spacing: .5px; margin-bottom: 10px;
}
.design-card p { color: var(--gray); font-size: .82rem; line-height: 1.6; }

/* =============================================
   CONTACTO
   ============================================= */
.contact-section {
  padding: 100px 60px; background: var(--dark);
  border-top: 1px solid var(--border);
}
.contact-inner { max-width: 1280px; margin: 0 auto; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 60px; align-items: start;
}
.contact-info p { color: var(--gray2); font-size: 1rem; line-height: 1.75; margin-bottom: 40px; }
.contact-channels { display: flex; flex-direction: column; gap: 12px; }
.channel {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 17px 20px; text-decoration: none;
  color: inherit; transition: border-color .3s;
}
.channel:hover { border-color: var(--borderA); }
.ch-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--violet); flex-shrink: 0; box-shadow: 0 0 8px var(--violet); }
.ch-label { color: var(--gray); font-size: .73rem; text-transform: uppercase; letter-spacing: .08em; }
.ch-value { color: var(--white); font-weight: 600; margin-top: 2px; font-size: .9rem; }

/* ── Trabajá con nosotros ── */
.jobs-section {
  padding: 100px 60px; background: var(--dark2);
  border-top: 1px solid var(--border);
}
.jobs-areas { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.jobs-area-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px 20px; transition: border-color .3s;
}
.jobs-area-item:hover { border-color: var(--borderA); }

.contact-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label {
  font-size: .74rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--gray2);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 5px; padding: 12px 16px;
  color: var(--white); font-family: 'Outfit', sans-serif;
  font-size: .9rem; outline: none; transition: border-color .2s; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--dark2); }
.form-group textarea { resize: vertical; min-height: 90px; }
.btn-submit {
  width: 100%; background: var(--grad-primary); color: var(--white); border: none;
  padding: 15px; border-radius: 6px; font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: .9rem; cursor: pointer;
  letter-spacing: .06em; text-transform: uppercase; transition: all .25s;
  box-shadow: 0 4px 20px rgba(167, 139, 250,.25);
}
.btn-submit:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(167, 139, 250,.4); }

/* =============================================
   NOSOTROS
   ============================================= */
.about-section {
  padding: 80px 60px; background: var(--dark2);
  border-top: 1px solid var(--border); text-align: center;
}
.about-section p {
  color: var(--gray2); font-size: 1rem; line-height: 1.8;
  max-width: 680px; margin: 20px auto 36px;
}
.about-section img {
  filter: none;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--ink); border-top: 1px solid var(--border);
  padding: 48px 60px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 2px; }
.footer-logo span {
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: .83rem; transition: color .2s; }
.footer-links a:hover { color: var(--blue2); }
.footer-copy { color: var(--gray); font-size: .78rem; }
.footer-legal {
  max-width: 1280px; margin: 16px auto 0; padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.footer-legal-link {
  background: none; border: none; padding: 0; cursor: pointer;
  color: var(--gray); font-family: 'Outfit', sans-serif;
  font-size: .74rem; text-decoration: underline;
  text-decoration-color: transparent; transition: color .2s, text-decoration-color .2s;
}
.footer-legal-link:hover { color: var(--blue2); text-decoration-color: var(--blue2); }
.footer-legal-sep { color: var(--gray); font-size: .74rem; }

/* ── Quote sub ── */
.quote-sub {
  color: var(--gray2); font-size: .95rem; margin-top: 14px; max-width: 560px;
}

/* =============================================
   BANNER MEDIOS DE PAGO
   ============================================= */
.pay-banner {
  width: 100%; background: #07070a; overflow: hidden;
  height: 52px; display: flex; align-items: center;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  opacity: 0; transform: scaleY(0); transform-origin: top;
  max-height: 0;
  transition: opacity .5s ease, transform .5s ease, max-height .5s ease;
}
.pay-banner.visible {
  opacity: 1; transform: scaleY(1); max-height: 52px;
}
.pay-marquee-track {
  display: flex; width: 100%; overflow: hidden;
}
.pay-marquee {
  display: flex; align-items: center; white-space: nowrap;
  animation: paymarquee 22s linear infinite; flex-shrink: 0;
}
@keyframes paymarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
.pay-item {
  display: inline-flex; align-items: center;
  padding: 0 28px; color: #F8F8F8; font-family: 'Outfit', sans-serif;
}
.pay-sep { color: rgba(255,255,255,.3); font-size: .8rem; padding: 0 10px; }
.pay-label-txt {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.pay-logo-wrap { padding: 0 16px; }
.pay-logo-svg { height: 22px; display: block; }

/* =============================================
   MODAL TÉRMINOS Y CONDICIONES
   ============================================= */
.tc-modal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.78); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.tc-modal.open { display: flex; }
.tc-modal-box {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 14px; width: 100%; max-width: 740px;
  max-height: 88vh; display: flex; flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
.tc-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.tc-modal-header h2 {
  font-family: 'Outfit', sans-serif; font-size: 1rem;
  font-weight: 700; color: var(--white); letter-spacing: .02em;
}
.tc-close {
  background: none; border: none; color: var(--gray2);
  font-size: 1.4rem; cursor: pointer; line-height: 1;
  padding: 4px 8px; border-radius: 4px; transition: color .2s, background .2s;
}
.tc-close:hover { color: var(--white); background: rgba(255,255,255,.07); }
.tc-modal-body {
  overflow-y: auto; padding: 28px; flex: 1;
  scroll-behavior: smooth;
  /* Scrollbar sutil */
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.tc-modal-body::-webkit-scrollbar { width: 5px; }
.tc-modal-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
.tc-modal-body h3 {
  font-family: 'Outfit', sans-serif; font-size: .88rem;
  font-weight: 700; color: var(--blue2); letter-spacing: .04em;
  text-transform: uppercase; margin: 24px 0 8px;
}
.tc-modal-body h3:first-child { margin-top: 0; }
.tc-modal-body p {
  color: var(--gray2); font-size: .84rem; line-height: 1.75;
  margin-bottom: 4px;
}
.tc-updated {
  margin-top: 28px; font-size: .74rem !important;
  color: var(--gray) !important; font-style: italic;
}

/* =============================================
   WHATSAPP FLOTANTE
   ============================================= */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 8px 28px rgba(37,211,102,.4);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* =============================================
   STATS 3D — SECCIÓN DIFERENCIAL
   ============================================= */
.stats-section {
  padding: 100px 60px;
  background: #07070a;
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
}
.stats-inner { max-width: 1100px; margin: 0 auto; }
.stats-label {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--blue2);
  margin-bottom: 20px;
}
.stats-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: .95; color: #F8F8F8;
  margin-bottom: 64px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card 3D con tilt CSS */
.stat-3d {
  position: relative;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 52px 32px 44px;
  overflow: hidden;
  cursor: default;
  transition: transform .15s ease, box-shadow .15s ease, border-color .2s;
  transform-style: preserve-3d;
}
.stat-3d:hover {
  border-color: rgba(167, 139, 250,.3);
  box-shadow: 0 24px 60px rgba(167, 139, 250,.12), 0 0 0 1px rgba(167, 139, 250,.1);
}
.stat-3d-featured {
  background: rgba(167, 139, 250,.05);
  border-color: rgba(167, 139, 250,.2);
}
.stat-3d-featured:hover {
  border-color: rgba(167, 139, 250,.5);
  box-shadow: 0 32px 80px rgba(167, 139, 250,.2);
}

/* Glow interno */
.stat-3d-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(167, 139, 250,.12) 0%, transparent 60%);
  pointer-events: none;
}

.stat-3d-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  letter-spacing: 1px; line-height: 1;
  background: linear-gradient(110deg, #7c3aed 0%, #a78bfa 25%, #3b82f6 50%, #a78bfa 75%, #7c3aed 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: btn-holo 5s ease-in-out infinite;
  margin-bottom: 12px;
  text-shadow: none; /* no aplica a texto clip */
  filter: drop-shadow(0 0 20px rgba(167, 139, 250,.3));
}
.stat-3d-label {
  font-size: 1.05rem; font-weight: 700;
  color: #F8F8F8; letter-spacing: .02em;
  margin-bottom: 8px;
}
.stat-3d-sub {
  font-size: .8rem; color: rgba(255,255,255,.35);
  letter-spacing: .02em;
}

/* =============================================
   EFECTO TILT 3D EN CARDS (JS via CSS vars)
   ============================================= */
.svc-card, .plan-card, .saas-card, .design-card, .stat-3d {
  transform-style: preserve-3d;
  transition: transform .12s ease, box-shadow .2s ease, border-color .2s;
  will-change: transform;
}
/* El tilt real lo aplica el JS via style inline */

/* =============================================
   PAGE LOADER
   ============================================= */
#pageLoader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .55s ease, visibility .55s ease;
}
#pageLoader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  height: 110px; width: auto;
  filter: none;
  animation: loaderIn .7s ease both;
}
@keyframes loaderIn {
  from { opacity: 0; transform: scale(.88); }
  to   { opacity: 1; transform: scale(1); }
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* =============================================
   NAV SCROLL + HAMBURGER
   ============================================= */
nav { transition: height .3s ease, background .3s ease, box-shadow .3s ease; }

/* =============================================
   ANIMACIONES
   ============================================= */
@keyframes fadeUp  { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse   { 0%,100% { opacity: .5; box-shadow: 0 0 6px currentColor; } 50% { opacity: 1; box-shadow: 0 0 14px currentColor; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes float   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* =============================================
   LUCES & GLOWS GLOBALES
   ============================================= */

/* ─────────────────────────────────────────────
   GLOW BORDER — box-shadow multicapa (sin bugs)
   ───────────────────────────────────────────── */
.svc-card:hover, .saas-card:hover, .design-card:hover {
  box-shadow:
    0 0 0 1px  rgba(167, 139, 250,.4),
    0 0  18px  rgba(167, 139, 250,.18),
    0 24px 60px rgba(167, 139, 250,.12),
    0  4px 20px rgba(0,0,0,.7);
}

/* ─────────────────────────────────────────────
   SHIMMER HOLOGRÁFICO — barra de luz diagonal
   que recorre todas las cards (::after)
   ───────────────────────────────────────────── */
.svc-card::after, .saas-card::after,
.design-card::after, .stat-3d::after,
.plan-card::after, .pillar::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(
    110deg,
    transparent   0%,
    rgba(167, 139, 250,.04) 30%,
    rgba(124, 58, 237,.12) 48%,
    rgba(255,255,255,.06) 52%,
    rgba(167, 139, 250,.04) 70%,
    transparent  100%
  );
  transform: skewX(-12deg);
  pointer-events: none;
  border-radius: inherit;
  animation: holo-sweep 5s ease-in-out infinite;
  z-index: 1;
}
@keyframes holo-sweep {
  0%        { left: -120%; opacity: 0; }
  8%        { opacity: 1; }
  48%, 100% { left: 160%; opacity: 0; }
}
/* Retrasar el shimmer por card para que no sean todas iguales */
.svc-card:nth-child(2)::after, .plan-card:nth-child(2)::after { animation-delay: .8s; }
.svc-card:nth-child(3)::after, .plan-card:nth-child(3)::after { animation-delay: 1.6s; }
.svc-card:nth-child(4)::after { animation-delay: 2.4s; }
.svc-card:nth-child(5)::after { animation-delay: 3.2s; }
.svc-card:nth-child(6)::after { animation-delay: 0.4s; }
.saas-card:nth-child(2)::after { animation-delay: 1.2s; }
.saas-card:nth-child(3)::after { animation-delay: 2.4s; }
.stat-3d:nth-child(2)::after   { animation-delay: 1.8s; }
.stat-3d:nth-child(3)::after   { animation-delay: 3.2s; }

/* ─────────────────────────────────────────────
   BORDE ANIMADO — stat featured
   Box-shadow pulsante (sin bugs de z-index)
   ───────────────────────────────────────────── */
.stat-3d-featured {
  overflow: hidden;
  animation: featured-border-pulse 3s ease-in-out infinite;
}
@keyframes featured-border-pulse {
  0%, 100% {
    border-color: rgba(167, 139, 250,.3);
    box-shadow:
      0 0 0 1px  rgba(167, 139, 250,.15),
      0 0  35px  rgba(167, 139, 250,.18),
      0 0  70px  rgba(167, 139, 250,.06),
      inset 0 0 24px rgba(167, 139, 250,.06);
  }
  50% {
    border-color: rgba(124, 58, 237,.65);
    box-shadow:
      0 0 0 1px  rgba(167, 139, 250,.5),
      0 0  55px  rgba(167, 139, 250,.35),
      0 0 110px  rgba(167, 139, 250,.16),
      inset 0 0 36px rgba(167, 139, 250,.12);
  }
}

/* Glow interno en svc-card hover */
.svc-card {
  position: relative;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  transition: transform .12s ease, box-shadow .2s, border-color .2s, background .2s;
}
.svc-card:hover {
  background: rgba(167, 139, 250,.04);
  border-color: rgba(167, 139, 250,.25);
  box-shadow:
    0 0 0 1px rgba(167, 139, 250,.1),
    0 20px 60px rgba(167, 139, 250,.12),
    0 4px 20px rgba(0,0,0,.5);
}
.svc-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.svc-card p  { font-size: .83rem; color: rgba(255,255,255,.45); line-height: 1.5; margin: 0; }

/* Espaciado secciones compacto */
.services-section { padding: 80px 70px; }
.detail-section   { padding: 80px 70px; }
.pricing-section  { padding: 80px 70px; }
.quote-section    { padding: 80px 70px; }
.design-section   { padding: 80px 70px; }
.about-section    { padding: 60px 70px; }
.contact-section  { padding: 80px 70px; }
.manifesto        { padding: 80px 70px; }
.stats-section    { padding: 80px 70px; }

/* Gaps entre cards más respirable */
.services-main, .services-row2, .services-row3 { gap: 20px; margin-top: 20px; }
.stats-grid { gap: 28px; }
.svc-pillars { gap: 20px; margin-bottom: 56px; }

/* Hero — más alto en desktop */
.hero { padding: 160px 70px 100px; }
.hero-inner { gap: 80px; }

/* Pillar cards — glassmorphism */
.pillar {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 36px 28px;
  transition: transform .12s ease, box-shadow .2s, border-color .2s;
}
.pillar:hover {
  border-color: rgba(167, 139, 250,.2);
  box-shadow: 0 20px 50px rgba(167, 139, 250,.1);
}

/* Stat 3D — glow más intenso */
.stat-3d {
  padding: 60px 40px 52px;
  border-radius: 24px;
}
/* .stat-3d-featured box-shadow manejado por @keyframes featured-border-pulse */

/* Separadores de sección — línea de luz naranja */
.section-divider {
  width: 60px; height: 3px;
  background: var(--grad-primary);
  border-radius: 2px;
  margin: 20px auto 0;
  box-shadow: 0 0 16px rgba(167, 139, 250,.5);
}

/* Section chip mejorado */
.section-chip {
  background: rgba(167, 139, 250,.08);
  border: 1px solid rgba(167, 139, 250,.2);
  color: var(--blue2);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Section title más grande */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: .9;
  margin-top: 20px;
}

/* =============================================
   GLASSMORPHISM — efectos vidrio en elementos clave
   ============================================= */

/* Cards de servicios — glass */
.svc-card {
  background: rgba(255,255,255,.025) !important;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(167, 139, 250,.1);
}
.svc-card:hover {
  background: rgba(167, 139, 250,.05) !important;
  border-color: rgba(167, 139, 250,.3) !important;
}

/* Stats 3D — glass */
.stat-3d {
  background: rgba(255,255,255,.02) !important;
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  border: 1px solid rgba(167, 139, 250,.08);
}

/* Plan cards — glass */
.plan-card {
  background: rgba(255,255,255,.02) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.07);
}
.plan-card.featured {
  background: rgba(167, 139, 250,.06) !important;
  border-color: rgba(167, 139, 250,.25) !important;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

/* Saas cards — glass */
.saas-card {
  background: rgba(255,255,255,.02) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Pillar cards — glass */
.pillar {
  background: rgba(255,255,255,.025) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(167, 139, 250,.07);
}

/* Highlight rows — glass */
.highlight {
  background: rgba(255,255,255,.02) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(167, 139, 250,.08);
}
.highlight:hover {
  border-color: rgba(167, 139, 250,.25) !important;
}

/* Quote cards — glass */
.quote-card {
  background: rgba(255,255,255,.025) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(167, 139, 250,.1);
}

/* Contact form — glass */
.contact-form {
  background: rgba(255,255,255,.025) !important;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(167, 139, 250,.12);
}

/* Design cards — glass */
.design-card {
  background: rgba(255,255,255,.02) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(167, 139, 250,.08);
}
.design-card:hover {
  border-color: rgba(167, 139, 250,.3) !important;
}

/* =============================================
   EFECTOS NEON VERDE — GLOW EN TÍTULOS Y TEXTOS
   ============================================= */

/* Glow verde en títulos de sección */
.section-title {
  text-shadow: 0 0 40px rgba(167, 139, 250,.08);
}
/* Subtítulo verde (.g class) — glow muy sutil */
.g {
  filter: drop-shadow(0 0 6px rgba(167, 139, 250,.2));
}
/* Hero em — sin pulso, glow estático muy sutil */
.hero-em {
  filter: drop-shadow(0 0 6px rgba(167, 139, 250,.25));
}

/* Stat números — glow sutil */
.stat-3d-num {
  filter: drop-shadow(0 0 10px rgba(167, 139, 250,.3)) !important;
}
/* Dot del eyebrow hero */
.pulse-dot {
  box-shadow: 0 0 10px rgba(167, 139, 250,.8), 0 0 20px rgba(167, 139, 250,.4);
}

/* Badges — glow sutil */
.svc-badge {
  box-shadow: 0 0 10px rgba(167, 139, 250,.2), inset 0 0 6px rgba(167, 139, 250,.05);
}

/* Línea decorativa superior de secciones */
.pricing-section::before, .manifesto::before, .quote-card::before {
  box-shadow: 0 0 12px rgba(167, 139, 250,.4);
}

/* Nav CTA — glow verde */
.nav-cta {
  box-shadow: 0 0 18px rgba(167, 139, 250,.3);
}
.nav-cta:hover {
  box-shadow: 0 4px 28px rgba(167, 139, 250,.55);
}

/* Btn primary — glow verde */
.btn-primary {
  box-shadow: 0 4px 24px rgba(167, 139, 250,.35), 0 0 0 0 rgba(167, 139, 250,.2) !important;
}
.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(167, 139, 250,.55), 0 0 0 3px rgba(167, 139, 250,.15) !important;
}

/* =============================================
   ANIMACIONES DE SCROLL — MÚLTIPLES VARIANTES
   ============================================= */

/* Base — fade + sube */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* Desde la izquierda */
.reveal-left {
  opacity: 0;
  transform: translateX(-48px) translateY(16px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-left.revealed { opacity: 1; transform: translateX(0) translateY(0); }

/* Desde la derecha */
.reveal-right {
  opacity: 0;
  transform: translateX(48px) translateY(16px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-right.revealed { opacity: 1; transform: translateX(0) translateY(0); }

/* Scale 3D */
.reveal-scale {
  opacity: 0;
  transform: scale(.88) translateY(24px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.34,1.3,.64,1);
}
.reveal-scale.revealed { opacity: 1; transform: scale(1) translateY(0); }

/* Desde abajo con profundidad (3D flip suave) */
.reveal-3d {
  opacity: 0;
  transform: perspective(600px) rotateX(14deg) translateY(40px);
  transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1);
}
.reveal-3d.revealed { opacity: 1; transform: perspective(600px) rotateX(0deg) translateY(0); }

/* Delays escalonados */
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }
.reveal-delay-6 { transition-delay: .48s; }

/* Línea de luz que aparece debajo de sección al entrar en viewport */
.section-reveal-line {
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #a78bfa, transparent);
  box-shadow: 0 0 16px rgba(167, 139, 250,.6);
  transition: width 1s cubic-bezier(.4,0,.2,1);
  margin: 0 auto 40px;
}
.section-reveal-line.revealed { width: 120px; }

/* ── ANIMACIONES DE CARGA (page-load sequence) ── */

/* Elementos que entran al cargar la página */
.load-fade   { opacity: 0; animation: loadFade .7s ease forwards; }
.load-up     { opacity: 0; animation: loadUp  .65s cubic-bezier(.22,1,.36,1) forwards; }
.load-left   { opacity: 0; animation: loadLeft .65s cubic-bezier(.22,1,.36,1) forwards; }
.load-right  { opacity: 0; animation: loadRight .65s cubic-bezier(.22,1,.36,1) forwards; }
.load-scale  { opacity: 0; animation: loadScale .7s cubic-bezier(.34,1.4,.64,1) forwards; }

/* Delays para stagger */
.ld-1 { animation-delay: .1s; }
.ld-2 { animation-delay: .2s; }
.ld-3 { animation-delay: .3s; }
.ld-4 { animation-delay: .42s; }
.ld-5 { animation-delay: .56s; }
.ld-6 { animation-delay: .72s; }
.ld-7 { animation-delay: .9s; }
.ld-8 { animation-delay: 1.1s; }

@keyframes loadFade  { to { opacity: 1; } }
@keyframes loadUp    { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes loadLeft  { from { opacity: 0; transform: translateX(-36px); } to { opacity: 1; transform: translateX(0); } }
@keyframes loadRight { from { opacity: 0; transform: translateX(36px); } to { opacity: 1; transform: translateX(0); } }
@keyframes loadScale { from { opacity: 0; transform: scale(.88); } to { opacity: 1; transform: scale(1); } }

/* ── ANIMACIONES DE SCROLL — extras ────────────── */

/* Flip desde abajo — más dramático */
.reveal-flip {
  opacity: 0;
  transform: perspective(800px) rotateX(22deg) translateY(60px) scale(.97);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.reveal-flip.revealed { opacity: 1; transform: perspective(800px) rotateX(0) translateY(0) scale(1); }

/* Zoom desde atrás */
.reveal-zoom {
  opacity: 0;
  transform: scale(.8) translateY(20px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.34,1.2,.64,1);
}
.reveal-zoom.revealed { opacity: 1; transform: scale(1) translateY(0); }

/* Slash — entra desde abajo con bounce */
.reveal-bounce {
  opacity: 0;
  transform: translateY(50px) scale(.95);
  transition: opacity .5s ease, transform .6s cubic-bezier(.34,1.5,.64,1);
}
.reveal-bounce.revealed { opacity: 1; transform: translateY(0) scale(1); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-watermark { font-size: 50vw; }
  .hero-ambient-glow { width: 400px; height: 400px; right: -80px; }
  .svc-pillars { grid-template-columns: repeat(2,1fr); }
  .saas-products-grid { grid-template-columns: repeat(2, 1fr); }
  .web-plans { gap: 14px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3,1fr); gap: 16px; }
}

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .lang-toggle { padding: 5px 9px; font-size: .68rem; }
  .hamburger { display: flex; }
  .marquee-item { font-size: .82rem; padding: 0 18px; letter-spacing: 1.5px; }

  /* Hero mobile — 128px: nav(80) + marquee(34) + aire(14) */
  .hero { padding: 128px 24px 70px; }
  .hero-inner { gap: 48px; }
  .hero-watermark { font-size: 60vw; opacity: .5; }

  /* Secciones — padding mobile */
  .services-section, .detail-section, .pricing-section,
  .quote-section, .design-section, .contact-section, .jobs-section,
  .about-section, .manifesto, .stats-section { padding: 56px 20px; }

  /* Stats en mobile — 1 col */
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .stat-3d { padding: 44px 28px 36px; }
  .stat-3d-featured { order: -1; } /* destaca al tope */

  /* Slider / portfolio */
  .slider-section { padding: 60px 24px; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Grids → 1 col */
  .services-main, .services-row2, .services-row3,
  .svc-pillars { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .detail-grid.rev { direction: ltr; }
  .plans-grid { grid-template-columns: 1fr; }
  .tier-pro { transform: none; }
  .saas-products-grid { grid-template-columns: 1fr; }
  .level-toggle { width: 100%; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .quote-grid, .design-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }

  /* Tilt — desactivar en touch (sin hover) */
  .svc-card, .plan-card, .saas-card, .design-card, .stat-3d {
    transform: none !important;
  }
}

@media (max-width: 540px) {
  .quote-grid, .design-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 20px; }
  .trust-sep { display: none; }
  .lvl-btn { padding: 8px 14px; font-size: .72rem; }
  .stats-title { font-size: 2.4rem; }
  .section-title { font-size: 2.6rem; }
  .svc-pillars { grid-template-columns: 1fr; }
  nav { padding: 0 16px; }
}

/* =============================================
   PERFORMANCE — mobile & general
   ============================================= */

/* En mobile desactivamos blur pesado (backdrop-filter es muy caro en GPU) */
@media (max-width: 768px) {
  .svc-card,
  .plan-card,
  .stat-3d,
  .quote-card,
  .contact-form,
  .contact-info,
  .saas-card,
  .highlight {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Desactivar animaciones de orbes — ahorran CPU/GPU */
  .hero-orb { animation: none !important; }

  /* Reducir sombras complejas */
  .stat-3d { box-shadow: 0 4px 20px rgba(0,0,0,.4) !important; }
  .plan-card.featured { box-shadow: 0 4px 24px rgba(0,0,0,.5) !important; }

  /* El tilt 3D no funciona bien en touch — desactivar */
  .svc-card, .plan-card, .stat-3d, .pillar {
    transform: none !important;
    transition: border-color .2s, opacity .2s !important;
  }
}

/* prefers-reduced-motion — respeta la preferencia del usuario */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Contención de layout para secciones pesadas */
.portfolio-section,
.pricing-section,
.services-section,
.stats-section {
  contain: layout style;
}

/* Optimizar will-change — solo en elementos que realmente se animan */
.hero-orb,
.demo-stage,
.slide-inner,
.marquee {
  will-change: transform;
}
/* Reset will-change para todo lo demás — no ponerlo en elementos estáticos */
.svc-card,
.plan-card,
.stat-3d,
.quote-card {
  will-change: auto;
}

/* ─────────────────────────────────────────────
   SVC CARDS — variantes IA & Custom
   ───────────────────────────────────────────── */
.svc-card-ia {
  border-color: rgba(166, 255, 0, 0.08);
}
.svc-card-ia:hover {
  border-color: rgba(166, 255, 0, 0.28);
  box-shadow: 0 0 20px rgba(166, 255, 0, 0.06);
}
.svc-card-ia .svc-number {
  color: #a6ff00;
  opacity: 0.7;
}
.svc-card-custom-cta {
  border-style: dashed;
  border-color: rgba(167, 139, 250, 0.2);
  background: rgba(167, 139, 250, 0.02);
}
.svc-card-custom-cta:hover {
  border-color: rgba(167, 139, 250, 0.45);
  background: rgba(167, 139, 250, 0.04);
}

/* ─────────────────────────────────────────────
   TECH SECTION
   ───────────────────────────────────────────── */
.tech-section {
  padding: 100px 5vw;
  background: var(--ink);
  position: relative;
}
.tech-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.tech-sub {
  color: var(--gray2);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
.tech-col {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  transition: border-color .2s;
}
.tech-col:hover {
  border-color: rgba(167,139,250,.22);
}
.tech-col-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 14px;
}
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tech-tag {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.78rem;
  color: var(--gray3);
  transition: all .15s;
}
.tech-tag:hover {
  background: rgba(167,139,250,0.08);
  border-color: rgba(167,139,250,0.25);
  color: var(--white);
}
.tech-tag-ia {
  background: rgba(166,255,0,0.05);
  border-color: rgba(166,255,0,0.18);
  color: #c8ff70;
}
.tech-tag-ia:hover {
  background: rgba(166,255,0,0.12);
  border-color: rgba(166,255,0,0.35);
}

/* Quote grid — 2 cols desktop, adaptable a 4 */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; }
  .tech-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .tech-grid  { grid-template-columns: 1fr; }
}
