/* ===========================================================================
   NeoWeb agencIA — Landing v2
   Componentes nuevos (hero diferenciadores, ventanas en vivo, comparativa,
   bloque fundador) + capa "wow". CSS propio para no depender del build de Tailwind.
   Tokens: --neon #00e87b · --accent #8b5cf6 · fondos #0a0a0f/#13131a.
   Regla: contenido visible por defecto; animaciones solo de entrada/hover.
   =========================================================================== */

:root {
  --nw-neon: #00e87b;
  --nw-accent: #8b5cf6;
  --nw-dark-900: #0a0a0f;
  --nw-dark-800: #13131a;
  --nw-dark-700: #1c1c26;
  --nw-border: rgba(255, 255, 255, 0.08);
}

/* ── Hero: diferenciadores honestos ───────────────────────────────────── */
.hero-diff {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--nw-border);
  border-radius: 1rem;
  padding: 1.1rem 1rem;
  text-align: center;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, background .35s;
}
.hero-diff:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 232, 123, 0.35);
  background: rgba(0, 232, 123, 0.05);
}

/* ── Ventanas en vivo (portafolio navegable) ──────────────────────────── */
.live-window {
  background: var(--nw-dark-800);
  border: 1px solid var(--nw-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s, box-shadow .4s;
}
.live-window:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 232, 123, 0.35);
  box-shadow: 0 30px 70px -20px rgba(0, 232, 123, 0.18);
}
.lw-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  background: #0d0d14;
  border-bottom: 1px solid var(--nw-border);
}
.lw-dots { display: inline-flex; gap: 6px; flex-shrink: 0; }
.lw-dots i { width: 11px; height: 11px; border-radius: 50%; background: #2c2c38; display: block; }
.lw-dots i:nth-child(1) { background: #ff5f57; }
.lw-dots i:nth-child(2) { background: #febc2e; }
.lw-dots i:nth-child(3) { background: #28c840; }
.lw-url {
  flex: 1; text-align: center; font-size: 12px; color: #8b93a1;
  background: #15151d; border: 1px solid var(--nw-border); border-radius: 8px;
  padding: 4px 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.lw-open { color: #8b93a1; text-decoration: none; font-size: 16px; padding: 2px 6px; border-radius: 6px; transition: color .2s, background .2s; flex-shrink: 0; }
.lw-open:hover { color: var(--nw-neon); background: rgba(0,232,123,.1); }
.lw-expand {
  background: #15151d; border: 1px solid var(--nw-border); color: #8b93a1;
  font-size: 15px; line-height: 1; padding: 4px 8px; border-radius: 7px; cursor: pointer;
  flex-shrink: 0; transition: color .2s, background .2s, border-color .2s;
}
.lw-expand:hover { color: var(--nw-neon); background: rgba(0,232,123,.1); border-color: rgba(0,232,123,.3); }
.lw-body {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0a0a0f;
  cursor: pointer;
}
.lw-frame {
  position: absolute; top: 0; left: 0;
  border: 0;
  transform-origin: top left;
  background: #fff;
  pointer-events: none; /* preview no-interactivo: no atrapa el scroll; para navegar → ampliar */
  opacity: 0; transition: opacity .5s ease;
}
.live-window.lw-ready .lw-frame { opacity: 1; }
.lw-skeleton {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, #14141c 30%, #1d1d28 50%, #14141c 70%);
  background-size: 220% 100%;
  animation: lwShimmer 1.4s linear infinite;
}
.live-window.lw-ready .lw-skeleton { opacity: 0; }
.live-window.lw-noembed .lw-skeleton { animation: none; background: #101019; }
@keyframes lwShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.lw-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  gap: 10px; padding-bottom: 22px;
  background: linear-gradient(180deg, transparent 55%, rgba(8,8,12,.78));
  opacity: 0; transition: opacity .3s ease;
}
.live-window:hover .lw-overlay { opacity: 1; }
.lw-cat { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--nw-neon); background: rgba(0,232,123,.12); border: 1px solid rgba(0,232,123,.3); padding: 3px 10px; border-radius: 999px; }
.lw-overlay-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--nw-neon); color: #06371f; font-weight: 700; font-size: 13px;
  padding: 9px 18px; border-radius: 999px; box-shadow: 0 8px 24px -6px rgba(0,232,123,.5);
}

/* ── Modal grande (lightbox) navegable ────────────────────────────────── */
.lw-modal {
  position: fixed; inset: 0; z-index: 2147483600;
  display: none; align-items: center; justify-content: center;
  background: rgba(4,4,8,.82); backdrop-filter: blur(6px); padding: 2.5vh 2vw;
}
.lw-modal.open { display: flex; animation: lwFade .2s ease; }
@keyframes lwFade { from { opacity: 0; } to { opacity: 1; } }
.lw-modal-win {
  width: min(1200px, 96vw); height: min(860px, 92vh);
  display: flex; flex-direction: column;
  background: var(--nw-dark-800); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; overflow: hidden; box-shadow: 0 40px 120px -20px rgba(0,0,0,.8);
}
.lw-modal-bar { display: flex; align-items: center; gap: 12px; padding: 11px 14px; background: #0d0d14; border-bottom: 1px solid var(--nw-border); }
.lw-modal-dots i { cursor: pointer; }
.lw-dot-x { background: #ff5f57 !important; }
.lw-dot-min { background: #febc2e !important; }
.lw-dot-max { background: #28c840 !important; }
.lw-modal-url { flex: 1; }
.lw-modal-open { color: var(--nw-neon); text-decoration: none; font-size: 13px; font-weight: 600; white-space: nowrap; padding: 5px 12px; border: 1px solid rgba(0,232,123,.3); border-radius: 8px; transition: background .2s; }
.lw-modal-open:hover { background: rgba(0,232,123,.1); }
.lw-modal-close { background: transparent; border: 0; color: #8b93a1; font-size: 18px; cursor: pointer; padding: 2px 8px; border-radius: 6px; transition: color .2s, background .2s; }
.lw-modal-close:hover { color: #fff; background: rgba(255,255,255,.08); }
.lw-modal-body { position: relative; flex: 1; background: #fff; }
.lw-modal-frame { width: 100%; height: 100%; border: 0; }
.lw-modal-load { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: var(--nw-dark-900); color: #8b93a1; font-size: 14px; }
.lw-noembed-msg { text-align: center; color: #cdd3db; line-height: 1.7; }
.lw-noembed-msg a { color: var(--nw-neon); }
@media (max-width: 640px) { .lw-modal-win { height: 88vh; width: 98vw; } .lw-modal-open { display: none; } }

/* ── Cotizador modular ────────────────────────────────────────────────── */
.cot-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .cot-grid { grid-template-columns: 1.7fr 1fr; align-items: start; } }
.cot-section { margin-bottom: 1.6rem; }
.cot-section-title { font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #a78bfa; margin-bottom: .8rem; }
.cot-cards { display: grid; gap: .7rem; }
.cot-card {
  display: flex; align-items: center; gap: 1rem; width: 100%; text-align: left;
  background: rgba(255,255,255,.025); border: 1px solid var(--nw-border); border-radius: 14px;
  padding: 1rem 1.1rem; cursor: pointer; color: #fff;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), border-color .25s, background .25s, box-shadow .25s;
}
.cot-card:hover { transform: translateY(-3px); border-color: rgba(0,232,123,.35); background: rgba(0,232,123,.04); }
.cot-card.selected { border-color: var(--nw-neon); background: rgba(0,232,123,.08); box-shadow: 0 0 0 1px var(--nw-neon) inset, 0 14px 36px -16px rgba(0,232,123,.4); }
.cot-check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 7px; border: 1.5px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center; color: #06371f; font-size: 14px; font-weight: 900;
  background: transparent; transition: background .2s, border-color .2s, transform .2s;
}
.cot-card.selected .cot-check { background: var(--nw-neon); border-color: var(--nw-neon); transform: scale(1.05); }
.cot-check { color: transparent; }
.cot-card.selected .cot-check { color: #06371f; }
.cot-card-main { flex: 1; min-width: 0; }
.cot-card-name { display: block; font-weight: 700; font-size: .98rem; }
.cot-card-desc { display: block; color: #9aa3b0; font-size: .8rem; margin-top: 2px; line-height: 1.4; }
.cot-card-price { flex-shrink: 0; font-weight: 800; color: var(--nw-neon); font-size: 1rem; white-space: nowrap; }
.cot-card-price small { color: #9aa3b0; font-weight: 600; font-size: .72rem; }

.cot-summary { position: relative; }
@media (min-width: 1024px) { .cot-summary { position: sticky; top: 90px; } }
.cot-summary-inner {
  background: linear-gradient(180deg, rgba(20,20,28,.95), rgba(13,13,20,.95));
  border: 1px solid rgba(0,232,123,.25); border-radius: 18px; padding: 1.5rem;
  box-shadow: 0 30px 70px -28px rgba(0,232,123,.25);
}
.cot-cupo { font-size: .78rem; color: #febc2e; background: rgba(254,188,46,.08); border: 1px solid rgba(254,188,46,.2); border-radius: 999px; padding: 6px 12px; display: inline-block; margin-bottom: 1rem; }
.cot-total-label { color: #9aa3b0; font-size: .85rem; }
.cot-total { font-size: 2.6rem; font-weight: 800; color: #fff; line-height: 1.1; margin: .1rem 0 .3rem; }
.cot-mensual { font-size: 1.1rem; color: var(--nw-neon); font-weight: 700; }
.cot-sel-list { list-style: none; margin: .8rem 0; padding: 0; max-height: 190px; overflow-y: auto; }
.cot-sel-list li { display: flex; justify-content: space-between; gap: 1rem; font-size: .83rem; color: #c9cfd8; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.cot-sel-list li span { color: var(--nw-neon); font-weight: 600; white-space: nowrap; }
.cot-cta {
  width: 100%; margin-top: .6rem; background: var(--nw-neon); color: #06371f; font-weight: 800; font-size: 1rem;
  border: 0; border-radius: 999px; padding: 14px; cursor: pointer; transition: transform .25s, box-shadow .25s, opacity .25s;
}
.cot-cta:hover:not(:disabled) { transform: scale(1.03); box-shadow: 0 12px 34px -8px rgba(0,232,123,.55); }
.cot-cta:disabled { opacity: .4; cursor: not-allowed; }
.cot-disclaimer { color: #8b93a1; font-size: .76rem; text-align: center; margin-top: .8rem; }

.cot-form-wrap { margin-top: 1.8rem; animation: lwFade .3s ease; }
.cot-form-card { position: relative; max-width: 620px; margin: 0 auto; background: var(--nw-dark-800); border: 1px solid rgba(0,232,123,.25); border-radius: 18px; padding: 1.8rem; }
.cot-form-close { position: absolute; top: 1rem; right: 1rem; background: transparent; border: 0; color: #8b93a1; font-size: 18px; cursor: pointer; }
.cot-form-title { font-size: 1.4rem; font-weight: 800; color: #fff; }
.cot-form-sub { color: #9aa3b0; font-size: .9rem; margin: .3rem 0 1.2rem; }
.cot-form-sub span { color: var(--nw-neon); font-weight: 600; }
#cot-form { display: grid; gap: .8rem; }
.cot-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
@media (max-width: 520px) { .cot-form-row { grid-template-columns: 1fr; } }
#cot-form input, #cot-form textarea {
  width: 100%; background: #0e0e15; border: 1px solid var(--nw-border); border-radius: 11px;
  padding: 12px 14px; color: #fff; font-size: .95rem; font-family: inherit; transition: border-color .2s, box-shadow .2s;
}
#cot-form input:focus, #cot-form textarea:focus { outline: none; border-color: var(--nw-neon); box-shadow: 0 0 0 3px rgba(0,232,123,.12); }
.cot-rgpd { display: flex; align-items: center; gap: 8px; color: #9aa3b0; font-size: .82rem; }
.cot-rgpd a { color: var(--nw-neon); }
.cot-rgpd input { width: 16px; height: 16px; accent-color: var(--nw-neon); }
.cot-submit { width: 100%; background: var(--nw-neon); color: #06371f; font-weight: 800; font-size: 1rem; border: 0; border-radius: 999px; padding: 14px; cursor: pointer; text-decoration: none; text-align: center; transition: transform .25s, box-shadow .25s; }
.cot-submit:hover { transform: scale(1.02); box-shadow: 0 12px 34px -8px rgba(0,232,123,.55); }

.cot-success { margin-top: 1rem; animation: lwFade .3s ease; }
.cot-success-card { max-width: 560px; margin: 0 auto; text-align: center; background: linear-gradient(180deg, rgba(0,232,123,.06), rgba(13,13,20,.95)); border: 1px solid rgba(0,232,123,.3); border-radius: 20px; padding: 2.4rem 1.8rem; }
.cot-success-icon { font-size: 3rem; margin-bottom: .5rem; }
.cot-success-card h3 { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: .6rem; }
.cot-success-card p { color: #c9cfd8; margin-bottom: .6rem; }
.cot-turno { color: var(--nw-neon) !important; font-size: 1rem; }

.cot-toast { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 20px); background: #1c1c26; border: 1px solid rgba(255,90,90,.4); color: #fff; padding: 12px 20px; border-radius: 12px; font-size: .88rem; z-index: 2147483640; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; }
.cot-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ── Servicios: foco principal "Webs con propósito" (Fase 3) ──────────── */
.svc-focus {
  position: relative;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(0,232,123,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(13,13,20,.6));
  border: 1px solid rgba(0,232,123,.28);
  border-radius: 22px;
  padding: 2.4rem;
  overflow: hidden;
}
@media (max-width: 700px) { .svc-focus { padding: 1.6rem; } }
.svc-focus-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--nw-neon); background: rgba(0,232,123,.1);
  border: 1px solid rgba(0,232,123,.3); border-radius: 999px; padding: .35rem .8rem;
}
.svc-focus h3 { font-size: clamp(1.55rem, 3.2vw, 2.3rem); font-weight: 800; color: #fff; line-height: 1.18; margin: .9rem 0 .8rem; }
.svc-focus h3 .hl { color: var(--nw-neon); }
.svc-focus > p { color: #c4cbd6; font-size: 1.02rem; line-height: 1.7; max-width: 46rem; }
.svc-focus-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.3rem; }
.svc-focus-tag { font-size: .82rem; color: #dfe5ec; background: rgba(255,255,255,.05); border: 1px solid var(--nw-border); border-radius: 999px; padding: .4rem .9rem; }

/* ── Comparativa: agencia tradicional vs NeoWeb (Fase 3) ──────────────── */
.cmp-wrap { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 1rem; margin-bottom: 3.5rem; }
@media (max-width: 760px) { .cmp-wrap { grid-template-columns: 1fr; } .cmp-vs { justify-self: center; } }
.cmp-col { border-radius: 20px; padding: 1.8rem; border: 1px solid var(--nw-border); }
.cmp-old { background: rgba(255,255,255,.02); }
.cmp-neo { background: linear-gradient(180deg, rgba(0,232,123,.07), rgba(13,13,20,.92)); border-color: rgba(0,232,123,.32); box-shadow: 0 0 50px -18px rgba(0,232,123,.4); }
.cmp-tag { font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.cmp-old .cmp-tag { color: #8b94a3; }
.cmp-neo .cmp-tag { color: var(--nw-neon); }
.cmp-price { margin: .55rem 0 1.1rem; font-size: 1.9rem; font-weight: 800; color: #fff; }
.cmp-old .cmp-price { color: #7a828f; }
.cmp-old .cmp-price s { text-decoration-color: rgba(255,90,90,.6); }
.cmp-price small { display: block; font-size: .76rem; font-weight: 500; color: #8b94a3; margin-top: .25rem; }
.cmp-row { display: flex; align-items: flex-start; gap: .6rem; padding: .55rem 0; border-top: 1px solid rgba(255,255,255,.05); font-size: .9rem; line-height: 1.4; }
.cmp-row:first-of-type { border-top: 0; }
.cmp-old .cmp-row { color: #9aa3b0; }
.cmp-neo .cmp-row { color: #e7ecf2; }
.cmp-ico { flex: 0 0 auto; margin-top: .05rem; font-weight: 800; }
.cmp-old .cmp-ico { color: #ff6b6b; }
.cmp-neo .cmp-ico { color: var(--nw-neon); }
.cmp-vs { align-self: center; font-weight: 800; color: #6b7280; font-size: .85rem; text-transform: uppercase; background: var(--nw-dark-800); border: 1px solid var(--nw-border); border-radius: 999px; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; }

/* ── Galería "Contenido con IA" (showcase) ────────────────────────────── */
.sc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.sc-item { display: flex; flex-direction: column; }
.sc-head { margin-bottom: .7rem; }
.sc-head h4 { font-size: 1.05rem; font-weight: 700; color: #fff; }
.sc-head p { font-size: .85rem; color: #9aa3b0; margin-top: .15rem; }

/* Comparador */
.sc-slider {
  position: relative; width: 100%; aspect-ratio: 16 / 10; overflow: hidden;
  border-radius: 16px; border: 1px solid var(--nw-border); background: #0a0a0f;
  cursor: ew-resize; user-select: none; box-shadow: 0 22px 55px -22px rgba(0,0,0,.7);
}
.sc-before, .sc-after { position: absolute; inset: 0; }
.sc-after { will-change: clip-path; }
.sc-before img, .sc-after img, .sc-before video, .sc-after video {
  width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none;
}
.sc-tag {
  position: absolute; bottom: 12px; font-size: .68rem; font-weight: 800; letter-spacing: .05em;
  padding: 4px 11px; border-radius: 999px; backdrop-filter: blur(6px); color: #fff;
}
.sc-tag-before { left: 12px; background: rgba(239,68,68,.85); }
.sc-tag-after  { right: 12px; background: rgba(0,232,123,.9); color: #06371f; }
.sc-desc {
  position: absolute; top: 12px; max-width: 62%; font-size: .68rem; line-height: 1.35; color: #cbd2dc;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 6px 9px;
}
.sc-desc-before { left: 12px; }
.sc-desc-after  { right: 12px; text-align: right; border-color: rgba(0,232,123,.25); }
.sc-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; margin-left: -1px;
  background: rgba(255,255,255,.9); box-shadow: 0 0 14px rgba(0,0,0,.5); z-index: 3;
}
.sc-handle-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 40px; height: 40px; border-radius: 999px; background: #fff; color: #0a0a0f;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.45); transition: transform .2s;
}
.sc-slider.sc-active .sc-handle-btn { transform: translate(-50%,-50%) scale(1.12); }
.sc-hint {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  font-size: .68rem; color: #fff; background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
  padding: 3px 10px; border-radius: 999px; opacity: 1; transition: opacity .3s; pointer-events: none; z-index: 4;
}
.sc-slider.sc-active .sc-hint { opacity: 0; }

/* Tarjeta de audio */
.sc-audio {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--nw-border);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(13,13,20,.92));
}
.sc-audio-cover {
  position: relative; aspect-ratio: 16 / 10; background-size: cover; background-position: center;
  background-color: #14141d; display: flex; align-items: center; justify-content: center;
}
.sc-audio-cover::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55)); }
.sc-audio-play {
  position: relative; z-index: 2; width: 62px; height: 62px; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--nw-neon); color: #06371f; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(0,232,123,.6); transition: transform .2s;
}
.sc-audio-play:hover { transform: scale(1.08); }
.sc-audio.sc-playing .sc-audio-play { box-shadow: 0 0 0 6px rgba(0,232,123,.18), 0 10px 30px -8px rgba(0,232,123,.6); }
.sc-audio-badge { position: absolute; z-index: 2; top: 12px; left: 12px; font-size: .68rem; font-weight: 700; color: #fff; background: rgba(0,0,0,.5); backdrop-filter: blur(4px); padding: 3px 10px; border-radius: 999px; }
.sc-audio-body { padding: 1rem 1.1rem 1.2rem; }
.sc-audio-body h4 { font-size: 1rem; font-weight: 700; color: #fff; }
.sc-audio-body p { font-size: .85rem; color: #9aa3b0; margin-top: .15rem; }
.sc-audio-progress { margin-top: .8rem; height: 4px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; }
.sc-audio-bar { display: block; height: 100%; width: 0%; background: var(--nw-neon); transition: width .15s linear; }

@media (prefers-reduced-motion: reduce) { .sc-hint { opacity: 0; } }

/* ── Capa wow (Fase 4) ────────────────────────────────────────────────── */
.btn-cta-main { will-change: transform; }

/* Spotlight del hero que sigue el cursor (lo mueve js/app/ui-effects.js) */
.hero-spotlight {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(560px circle at var(--hx, 50%) var(--hy, 30%),
    rgba(0, 232, 123, 0.10), rgba(139, 92, 246, 0.05) 38%, transparent 62%);
  opacity: 0; transition: opacity .5s ease;
}
.hero-spotlight.on { opacity: 1; }

/* Micro-interacción: las ventanas de la galería se elevan al hover */
.sc-slider, .sc-audio { transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s; }
.sc-item:hover .sc-slider, .sc-audio:hover { transform: translateY(-4px); border-color: rgba(0, 232, 123, 0.3); }

@media (prefers-reduced-motion: reduce) {
  .hero-spotlight { display: none; }
  .sc-slider, .sc-audio { transition: none; }
  .sc-item:hover .sc-slider, .sc-audio:hover { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ── Mini-auditoría gratuita (#auditoria) ─────────────────────────────── */
.ma-form { max-width: 640px; margin: 0 auto; }
.ma-fields { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; transition: opacity .3s; }
.ma-input {
  flex: 1 1 200px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px; padding: .85rem 1.3rem; color: #e7ecf2; font-size: .95rem; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.ma-input:focus { border-color: rgba(0,232,123,.55); box-shadow: 0 0 0 3px rgba(0,232,123,.12); }
.ma-input::placeholder { color: #6b7280; }
.ma-btn {
  flex: 0 0 auto; background: #00e87b; color: #06371f; font-weight: 800; border: none; cursor: pointer;
  border-radius: 999px; padding: .85rem 1.6rem; font-size: .95rem; transition: transform .15s, box-shadow .2s;
}
.ma-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,232,123,.35); }
.ma-btn:disabled { opacity: .7; cursor: default; }
.ma-rgpd { display: block; margin-top: .9rem; font-size: .78rem; color: #9aa3b0; }
.ma-rgpd input { accent-color: #00e87b; margin-right: .35rem; }
.ma-status { min-height: 1.4rem; margin-top: .8rem; font-size: .92rem; color: #9aa3b0; }
.ma-status.ok { color: #00e87b; font-weight: 600; }
.ma-status.err { color: #ff7a7a; }
