/* =========================================================
   Alejandro Chalarca · Marketing Digital
   v2 — Landing de ALTO IMPACTO (dark + verde neón)
   Mega-titulares · sello giratorio · humo · parallax · cursor
   ========================================================= */

:root {
  --neon: #38FC82;
  --neon-2: #62FFAB;
  --neon-ink: #06140C;
  --neon-soft: rgba(61, 235, 138, .14);
  --neon-line: rgba(61, 235, 138, .38);

  --bg: #060708;
  --bg-2: #0B0D0F;
  --surface: #111316;
  --surface-2: #16191D;
  --line: rgba(255, 255, 255, .07);
  --line-2: rgba(255, 255, 255, .14);
  --text: #F4F6F5;
  --muted: #9AA1A0;
  --wa: #25D366;

  --radius: 22px;
  --radius-lg: 32px;
  --radius-sm: 12px;
  --container: 1300px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-2: cubic-bezier(.65, 0, .35, 1);
  --shadow: 0 40px 90px rgba(0, 0, 0, .55);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grano global */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 3; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }

/* ============ Tipografía display ============ */
.display { font-family: "Anton", "Archivo Black", sans-serif; text-transform: uppercase; letter-spacing: .002em; line-height: .9; font-weight: 400; }
.txt-neon { color: var(--neon); }
.txt-outline { color: transparent; -webkit-text-stroke: 1.6px var(--neon); }
@supports not (-webkit-text-stroke: 1px red) { .txt-outline { color: var(--neon); } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Space Grotesk", sans-serif; font-size: .82rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--neon); margin-bottom: 22px;
}
.eyebrow::before { content: "✦"; animation: spin 6s linear infinite; }
.eyebrow--both::after { content: "✦"; animation: spin 6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ Botones ============ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 30px; border-radius: 999px;
  background: var(--neon); color: var(--neon-ink);
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: .96rem;
  text-transform: uppercase; letter-spacing: .02em;
  border: none; cursor: pointer; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: 0 12px 34px rgba(61, 235, 138, .3);
}
.btn::after { content: ""; position: absolute; inset: 0; background: var(--neon-2); transform: translateY(101%); transition: transform .45s var(--ease); z-index: 0; }
.btn:hover { transform: translateY(-4px); box-shadow: 0 20px 46px rgba(61, 235, 138, .5); }
.btn:hover::after { transform: translateY(0); }
.btn > * { position: relative; z-index: 1; }
.btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.btn .arrow { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(6,20,12,.18); transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: rotate(45deg); }
.btn--sm { padding: 12px 20px; font-size: .82rem; }
.btn--lg { padding: 19px 36px; font-size: 1.02rem; }
.btn--block { width: 100%; justify-content: center; }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--line-2); box-shadow: none; }
.btn--ghost::after { background: var(--neon); }
.btn--ghost:hover { color: var(--neon-ink); border-color: var(--neon); }

/* ============ Cursor personalizado ============ */
.cursor, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; border-radius: 50%; mix-blend-mode: difference; }
.cursor { width: 8px; height: 8px; background: var(--neon); margin: -4px 0 0 -4px; }
.cursor-ring { width: 40px; height: 40px; border: 1.5px solid var(--neon); margin: -20px 0 0 -20px; transition: width .3s var(--ease), height .3s var(--ease), margin .3s var(--ease), opacity .3s; }
.cursor-ring.is-active { width: 66px; height: 66px; margin: -33px 0 0 -33px; background: var(--neon-soft); }
body.has-cursor { cursor: none; }
body.has-cursor a, body.has-cursor button { cursor: none; }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-ring { display: none !important; } }

/* ============ Navbar ============ */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 200; padding: 20px 0; transition: all .4s var(--ease); }
.nav.is-scrolled { background: rgba(6,7,8,.8); backdrop-filter: blur(18px); padding: 12px 0; border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; gap: 24px; }
.nav__logo { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.logo-mark { display: inline-flex; filter: drop-shadow(0 0 16px rgba(56,252,130,.45)); }
.brand-logo { height: 52px; width: auto; display: block; filter: drop-shadow(0 0 18px rgba(56,252,130,.35)); }
.nav__mark { height: 36px; width: auto; display: block; filter: drop-shadow(0 0 12px rgba(56,252,130,.45)); transition: height .4s var(--ease); }
.nav.is-scrolled .nav__mark { height: 30px; }
.nav__brand { display: flex; flex-direction: column; line-height: 1; }
.nav__brand strong { font-family: "Archivo Black", sans-serif; font-size: 1.04rem; text-transform: uppercase; }
.nav__brand small { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.nav__links { display: flex; gap: 32px; }
.nav__links a { font-family: "Space Grotesk", sans-serif; color: var(--muted); font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; transition: color .2s var(--ease); position: relative; }
.nav__links a:hover { color: var(--text); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 2px; background: var(--neon); transition: width .3s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Capas de fondo (globales) ============ */
.bg-layers { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.blob--1 { width: 620px; height: 620px; background: radial-gradient(circle, rgba(61,235,138,.5), transparent 62%); top: -180px; right: -120px; animation: floatA 16s var(--ease-2) infinite alternate; }
.blob--2 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(61,235,138,.22), transparent 65%); bottom: -200px; left: -120px; animation: floatB 20s var(--ease-2) infinite alternate; }
@keyframes floatA { to { transform: translate(-60px, 60px) scale(1.15); } }
@keyframes floatB { to { transform: translate(70px, -50px) scale(1.1); } }
.grid-bg { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 66px 66px; mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%); opacity: .55; }
.smoke { position: absolute; inset: -20%; opacity: .35; background-repeat: no-repeat; background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='800'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.006 .012' numOctaves='2' seed='7'/%3E%3CfeColorMatrix values='0 0 0 0 0.24 0 0 0 0 0.92 0 0 0 0 0.54 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23s)'/%3E%3C/svg%3E");
  animation: smokeDrift 40s linear infinite alternate; }
@keyframes smokeDrift { to { transform: translate(6%, -4%) scale(1.15); } }

/* Asteriscos flotantes */
.floaty { position: absolute; color: var(--neon); opacity: .5; font-size: 1.4rem; animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-18px) rotate(180deg); } }

/* ============ Hero ============ */
.hero { position: relative; padding: 190px 0 90px; overflow: hidden; }
.hero__inner { position: relative; z-index: 2; }
.hero__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.hero__title { font-size: clamp(3.2rem, 12vw, 9.5rem); line-height: 1.02; margin: 10px 0 0; max-width: 15ch; }
.hero__title .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero__title .word > span { display: inline-block; transform: translateY(110%); transition: transform .9s var(--ease); }
.hero__title.is-visible .word > span { transform: translateY(0); }
.hero__title.is-visible .word:nth-child(2) > span { transition-delay: .08s; }
.hero__title.is-visible .word:nth-child(3) > span { transition-delay: .16s; }
.hero__title.is-visible .word:nth-child(4) > span { transition-delay: .24s; }
.hero__title.is-visible .word:nth-child(5) > span { transition-delay: .32s; }

/* Sello giratorio */
.seal { width: clamp(128px, 12vw, 164px); aspect-ratio: 1; flex: none; position: relative; }
.seal__text { width: 100%; height: 100%; animation: spin 20s linear infinite; }
.seal__text text { font-family: "Space Grotesk", sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; fill: var(--muted); }
.seal__mark { position: absolute; inset: 23%; border-radius: 50%; background: var(--surface); border: 1px solid var(--line-2); display: grid; place-items: center; box-shadow: inset 0 0 0 1px rgba(56,252,130,.12); }
.seal__mark img { width: 66%; height: auto; filter: drop-shadow(0 0 10px rgba(56,252,130,.5)); }

.hero__bottom { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 64px); align-items: end; margin-top: 46px; }
.hero__sub { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--muted); max-width: 540px; margin: 0 0 30px; }
.hero__sub strong { color: var(--text); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 24px; padding: 0; margin: 0; }
.hero__badges li { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .88rem; font-weight: 500; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 12px var(--neon); }

.hero__photo { position: relative; width: 100%; display: flex; justify-content: center; align-items: flex-end; }
.hero__photo::before { content: ""; position: absolute; left: 50%; top: 46%; transform: translate(-50%,-50%); width: 76%; height: 72%; border-radius: 50%; background: radial-gradient(circle, rgba(56,252,130,.16), transparent 68%); filter: blur(56px); z-index: 0; }
.hero__photo img { position: relative; z-index: 1; width: 100%; max-width: 560px; height: auto; filter: drop-shadow(0 24px 44px rgba(0,0,0,.55)); -webkit-mask-image: linear-gradient(to bottom, #000 90%, transparent 100%); mask-image: linear-gradient(to bottom, #000 90%, transparent 100%); }
.pill-float { position: absolute; z-index: 3; background: var(--surface); border: 1px solid var(--line-2); border-radius: 999px; padding: 12px 20px; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; box-shadow: var(--shadow); display: inline-flex; align-items: center; gap: 8px; }
.pill-float .dot { animation: none; }
.pill-float--a { top: 120px; left: -8px; transform: rotate(-8deg); color: var(--neon); animation: bob 5s ease-in-out infinite; }
.pill-float--b { bottom: 80px; right: -8px; transform: rotate(7deg); animation: bob 6s ease-in-out infinite .5s; }
@keyframes bob { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }

/* ============ Marquee ============ */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; overflow: hidden; position: relative; z-index: 2; background: var(--bg-2); }
.marquee__track { display: flex; gap: 46px; width: max-content; animation: marquee 24s linear infinite; }
.marquee__track span { font-family: "Anton", "Archivo Black", sans-serif; text-transform: uppercase; font-size: 2rem; letter-spacing: .01em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.28); display: inline-flex; align-items: center; gap: 46px; }
.marquee__track span::after { content: "✦"; -webkit-text-stroke: 0; color: var(--neon); font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ============ Secciones ============ */
.section { padding: clamp(80px, 10vw, 140px) 0; position: relative; z-index: 2; overflow: hidden; }
.section--alt { background: linear-gradient(180deg, var(--bg), var(--bg-2) 55%, var(--bg)); }
#sobremi { padding-top: clamp(8px, 2.5vw, 40px); }
.section__head { max-width: 900px; margin: 0 auto 64px; text-align: center; }
.section__title { font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.05; margin: 0; }
.section__lead { color: var(--muted); font-size: 1.08rem; margin: 20px auto 0; max-width: 620px; }

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

.card { background: linear-gradient(165deg, #171a1f 0%, #101216 70%); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 32px; position: relative; overflow: hidden; transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease); }
.card::before { content: ""; position: absolute; inset: -1px; border-radius: var(--radius); background: radial-gradient(220px 220px at var(--mx,50%) var(--my,0%), var(--neon-soft), transparent 60%); opacity: 0; transition: opacity .45s var(--ease); pointer-events: none; }
.card__index { position: absolute; top: 6px; right: 18px; font-family: "Anton", sans-serif; font-size: 5.5rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--line-2); pointer-events: none; transition: -webkit-text-stroke-color .4s; }
.card:hover { transform: translateY(-8px); border-color: var(--neon-line); box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.card:hover::before { opacity: 1; }
.card:hover .card__index { -webkit-text-stroke-color: var(--neon-line); }
.card__icon { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(150deg, var(--neon-2), var(--neon)); color: var(--neon-ink); margin-bottom: 24px; transition: transform .45s var(--ease); position: relative; z-index: 1; box-shadow: 0 10px 26px rgba(56,252,130,.35); }
.card:hover .card__icon { transform: rotate(-8deg) scale(1.08); }
.card h3 { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.36rem; text-transform: uppercase; margin: 0 0 12px; position: relative; z-index: 1; }
.card p { color: var(--muted); margin: 0 0 24px; font-size: .97rem; position: relative; z-index: 1; }
.card__link { display: inline-flex; align-items: center; gap: 12px; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--neon); position: relative; z-index: 1; }
.card__link .arrow { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--neon-line); display: grid; place-items: center; transition: transform .4s var(--ease), background .3s, color .3s; }
.card__link:hover .arrow { background: var(--neon); color: var(--neon-ink); transform: rotate(45deg); }

/* ============ Sobre mí ============ */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; position: relative; z-index: 2; }
.about__media { display: flex; justify-content: center; }
.about__photo { position: relative; width: min(100%, 620px); margin-inline: auto; display: flex; justify-content: center; align-items: flex-end; }
.about__photo::before { content: ""; position: absolute; left: 50%; top: 48%; transform: translate(-50%,-50%); width: 78%; height: 74%; border-radius: 50%; background: radial-gradient(circle, rgba(56,252,130,.3), transparent 68%); filter: blur(48px); z-index: 0; }
.about__photo img { position: relative; z-index: 1; width: 100%; height: auto; filter: drop-shadow(0 22px 40px rgba(0,0,0,.55)); -webkit-mask-image: linear-gradient(to bottom, #000 90%, transparent 100%); mask-image: linear-gradient(to bottom, #000 90%, transparent 100%); }
.about__badge { position: absolute; left: -16px; bottom: 28px; background: var(--neon); color: var(--neon-ink); font-family: "Archivo Black", sans-serif; text-transform: uppercase; font-size: .92rem; padding: 15px 20px; border-radius: 16px; box-shadow: var(--shadow); line-height: 1; }
.about__badge span { display: block; font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: .62rem; letter-spacing: .12em; margin-top: 7px; opacity: .75; }
.about__copy > p { color: var(--muted); margin: 0 0 16px; }
.about__copy strong { color: var(--text); }
.about__list { list-style: none; padding: 0; margin: 10px 0 32px; display: grid; gap: 14px; }
.about__list li { position: relative; padding-left: 36px; font-weight: 500; }
.about__list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 23px; height: 23px; border-radius: 50%; background: var(--neon); color: var(--neon-ink); display: grid; place-items: center; font-size: .74rem; font-weight: 800; }

/* ============ Proceso (nodos con anillo giratorio) ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.step { text-align: center; position: relative; }
.step__node { width: 116px; height: 116px; margin: 0 auto 26px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line-2); color: var(--neon); position: relative; transition: all .45s var(--ease); }
.step__node::before { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 1.5px dashed var(--neon-line); animation: spin 14s linear infinite; opacity: .5; }
.step:hover .step__node { background: var(--neon); color: var(--neon-ink); border-color: var(--neon); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(61,235,138,.4); }
.step__num { position: absolute; top: -6px; right: -6px; width: 34px; height: 34px; border-radius: 50%; background: var(--bg); border: 1px solid var(--neon-line); color: var(--neon); font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: .82rem; display: grid; place-items: center; z-index: 1; }
.step h3 { font-family: "Space Grotesk", sans-serif; font-weight: 700; text-transform: uppercase; font-size: 1.16rem; margin: 0 0 10px; }
.step p { color: var(--muted); margin: 0; font-size: .93rem; }

/* ============ Resultados / stats ============ */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 60px; align-items: center; position: relative; z-index: 2; }
.stats__lead .display { font-size: clamp(3.4rem, 9vw, 7rem); }
.stats__lead p { color: var(--muted); max-width: 400px; margin: 20px 0 0; }
.bars { display: grid; gap: 16px; }
.bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 22px 34px; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.bar:hover { border-color: var(--neon-line); transform: translateX(8px); }
.bar__label { font-family: "Space Grotesk", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .92rem; }
.bar__num { font-family: "Anton", "Archivo Black", sans-serif; font-size: 2.1rem; color: var(--neon); line-height: 1; }

/* ============ Testimonios ============ */
.quote { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 32px; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.quote:hover { border-color: var(--neon-line); transform: translateY(-6px); }
.quote__stars { color: var(--neon); letter-spacing: 3px; margin-bottom: 18px; }
.quote p { margin: 0 0 22px; font-size: 1.06rem; }
.quote footer { display: flex; flex-direction: column; color: var(--muted); font-size: .86rem; }
.quote footer strong { color: var(--text); font-family: "Space Grotesk", sans-serif; text-transform: uppercase; letter-spacing: .04em; }
.note { text-align: center; color: var(--muted); font-size: .8rem; margin-top: 32px; opacity: .6; }

/* Tarjeta de testimonio destacada (verde de marca) */
#testimonios .grid { align-items: start; }
.quote--feature { background: linear-gradient(158deg, var(--neon-2), var(--neon)); border-color: transparent; color: var(--neon-ink); box-shadow: 0 24px 54px rgba(56,252,130,.32); }
.quote--feature .quote__stars { color: var(--neon-ink); }
.quote--feature p { color: var(--neon-ink); }
.quote--feature footer strong { color: var(--neon-ink); }
.quote--feature footer span { color: rgba(6,20,12,.72); }
.quote--feature:hover { border-color: transparent; transform: translateY(-6px); box-shadow: 0 30px 64px rgba(56,252,130,.4); }

/* ============ CTA final MASIVO ============ */
.cta { position: relative; padding: clamp(90px, 12vw, 170px) 0; overflow: hidden; background: var(--bg-2); text-align: center; }
.cta__mega { position: relative; z-index: 2; font-size: clamp(2.6rem, 12vw, 10rem); line-height: 1.04; margin: 0; }
.cta__mega .l2 { display: block; margin-top: .08em; }
.cta__row { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; margin: 40px 0 10px; }
.pill-rot { background: var(--surface); border: 1px solid var(--line-2); border-radius: 999px; padding: 16px 26px; font-family: "Space Grotesk", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .84rem; display: inline-flex; align-items: center; gap: 10px; transition: transform .4s var(--ease), border-color .3s; }
.pill-rot--l { transform: rotate(-6deg); }
.pill-rot--r { transform: rotate(6deg); }
.pill-rot:hover { transform: rotate(0) translateY(-4px); border-color: var(--neon); color: var(--neon); }
.cta__sub { position: relative; z-index: 2; color: var(--muted); margin-top: 20px; font-size: 1.05rem; }

/* CTA con formulario (secundario, tras el mega) */
.contact { position: relative; z-index: 2; padding: clamp(70px, 8vw, 110px) 0; background: var(--bg); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.contact__copy h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 16px; }
.contact__copy p { color: var(--muted); font-size: 1.05rem; margin: 0 0 24px; }
.contact__points { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.contact__points li { position: relative; padding-left: 30px; font-weight: 500; }
.contact__points li::before { content: "→"; position: absolute; left: 0; color: var(--neon); font-weight: 800; }

/* ============ Formulario ============ */
.form { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: "Space Grotesk", sans-serif; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.field label span { color: var(--muted); font-weight: 500; text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--bg); border: 1px solid var(--line-2); color: var(--text); font-family: inherit; font-size: .95rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.field input::placeholder, .field textarea::placeholder { color: #626a67; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--neon); box-shadow: 0 0 0 3px var(--neon-soft); }
.field textarea { resize: vertical; min-height: 80px; }
.form button { margin-top: 8px; }
.form__hint { text-align: center; color: var(--muted); font-size: .8rem; margin: 14px 0 0; }

/* ============ Footer ============ */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: 64px; position: relative; z-index: 2; }
.footer__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px; padding-bottom: 44px; }
.footer__brand { display: flex; justify-content: center; align-items: center; }
.footer__logo { height: clamp(58px, 14vw, 80px); }
.footer__cols { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px clamp(40px, 6vw, 80px); }
.footer__col h4 { font-family: "Space Grotesk", sans-serif; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; color: var(--muted); margin: 0 0 14px; }
.footer__col a { display: block; color: var(--text); margin-bottom: 10px; transition: color .2s var(--ease); font-size: .95rem; }
.footer__col a:hover { color: var(--neon); }
.footer__bottom { border-top: 1px solid var(--line); padding: 24px 0; color: var(--muted); font-size: .82rem; text-align: center; }

/* ============ Cohete (scroll) ============ */
.rocket { position: fixed; left: 0; top: 0; width: clamp(300px, 46vw, 520px); z-index: 85; pointer-events: none; opacity: 0; will-change: transform, opacity; transform: translate3d(-999px,0,0); backface-visibility: hidden; }

/* ============ Botón flotante WhatsApp ============ */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 190; width: 62px; height: 62px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 34px rgba(37,211,102,.5); transition: transform .3s var(--ease); animation: waPulse 2.8s var(--ease) infinite; }
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse { 0%,100% { box-shadow: 0 14px 34px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4); } 50% { box-shadow: 0 14px 34px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); } }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-stagger].is-visible > * { opacity: 1; transform: none; }
[data-stagger].is-visible > *:nth-child(1){transition-delay:.05s}
[data-stagger].is-visible > *:nth-child(2){transition-delay:.13s}
[data-stagger].is-visible > *:nth-child(3){transition-delay:.21s}
[data-stagger].is-visible > *:nth-child(4){transition-delay:.29s}
[data-stagger].is-visible > *:nth-child(5){transition-delay:.37s}
[data-stagger].is-visible > *:nth-child(6){transition-delay:.45s}

/* ============ Responsive ============ */
@media (max-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero__bottom { grid-template-columns: 1fr; }
  .hero__top { justify-content: center; text-align: center; }
  .hero__top .eyebrow { justify-content: center; }
  .hero__bottom > .reveal { text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .hero__badges { justify-content: center; }
  .hero__photo { max-width: 460px; margin-inline: auto; order: -1; }
  .stats__lead { text-align: center; }
  .stats__lead .eyebrow { justify-content: center; }
  .about { grid-template-columns: 1fr; }
  .about__media { order: -1; }
  .about__copy { text-align: center; }
  .about__copy .eyebrow { justify-content: center; }
  .about__list { width: max-content; max-width: 100%; margin-inline: auto; text-align: left; gap: 16px; }
  .stats { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__copy { text-align: center; }
  .contact__copy .eyebrow { justify-content: center; }
  .contact__points { width: max-content; max-width: 100%; margin-inline: auto; text-align: left; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .smoke { display: none; }
}
@media (max-width: 640px) {
  .nav__links { position: fixed; inset: 64px 0 auto 0; flex-direction: column; gap: 0; background: rgba(6,7,8,.98); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); padding: 12px 24px 22px; transform: translateY(-140%); transition: transform .4s var(--ease); }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
  .nav__toggle { display: flex; }
  .nav .btn--sm { display: none; }
  .nav__mark { height: 32px; }
  .nav__brand strong { font-size: .82rem; letter-spacing: 0; }
  .nav__brand small { font-size: .52rem; letter-spacing: .2em; }
  .grid--3, .steps { grid-template-columns: 1fr; }
  .pill-float, .seal { display: none; }
  body::after { display: none; }
  .blob { animation: none; }
  .smoke { display: none; }
  .hero { padding-top: 124px; }
  .hero__title { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero__photo { max-width: 100%; }
  .hero__photo img { max-width: 460px; }
  .about__photo { width: min(100%, 600px); }
  #sobremi .about { gap: 12px; }
  .blob { opacity: .35; }
  .marquee__track span { font-size: 1.5rem; }
}

/* ============ Reduce motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto; transition-duration: .01ms !important; }
  .reveal, [data-stagger] > *, .hero__title .word > span { opacity: 1; transform: none; }
  .cursor, .cursor-ring, .rocket { display: none !important; }
  body.has-cursor { cursor: auto; }
}
