/* ═══════════════════════════════
   BLINDA — LANDING.CSS
═══════════════════════════════ */

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 80px; height: 68px;
  background: transparent;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(8,10,13,0.97);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--font-cond);
  font-size: 28px; font-weight: 900;
  letter-spacing: 4px; color: var(--white);
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: var(--gray); text-decoration: none;
  font-size: 14px; font-weight: 500;
  letter-spacing: .5px; transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--accent) !important;
  color: #000 !important;
  padding: 9px 22px !important;
  border-radius: 4px;
  font-family: var(--font-cond) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}
.nav-cta:hover { background: var(--accent2) !important; color: #000 !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(232,184,75,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(255,255,255,0.02) 0%, transparent 60%);
  pointer-events: none;
}

.hero-top-OLD { display: none; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-cond);
  font-size: 13px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
}

.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(232,184,75,.6);
  animation: pulse-ring 1.8s ease infinite;
  flex-shrink: 0;
}
.pulse-dot.small { width: 6px; height: 6px; }

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(232,184,75,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(232,184,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,184,75,0); }
}

.hero h1 {
  font-family: var(--font-cond);
  font-size: clamp(72px, 11vw, 130px);
  font-weight: 900; line-height: .92;
  letter-spacing: 2px; margin-bottom: 24px;
  color: var(--white);
}
.hero h1 em {
  font-style: normal; color: var(--accent);
  -webkit-text-stroke: 0px;
}
.hero > .hero-top > p {
  font-size: 18px; color: var(--gray); font-weight: 300;
  line-height: 1.7; margin-bottom: 40px; max-width: 460px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* VIDEO IMPACTO */
.hero-video-wrap {
  position: relative; z-index: 2;
  margin: 0 80px;
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border2);
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.hero-video-inner {
  position: relative; aspect-ratio: 16/9; background: #000;
}
.hero-video-inner iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,10,13,.2) 0%, transparent 30%, transparent 70%, rgba(8,10,13,.5) 100%);
}
.video-label {
  position: absolute; bottom: 16px; left: 20px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-cond);
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  background: rgba(0,0,0,.5);
  padding: 5px 12px; border-radius: 3px;
  backdrop-filter: blur(6px);
}
.rec-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--danger);
  animation: blink-red 1.2s ease infinite;
}
@keyframes blink-red { 0%,100%{opacity:1;} 50%{opacity:.2;} }

/* HERO BAR */
.hero-bar {
  display: flex; align-items: stretch;
  border-top: 1px solid var(--border2);
  margin-top: 0; flex-shrink: 0;
}
.hb-item {
  flex: 1; padding: 28px 36px;
  display: flex; flex-direction: column; gap: 4px;
}
.hb-item strong {
  font-family: var(--font-cond);
  font-size: 30px; font-weight: 700;
  color: var(--white); line-height: 1;
}
.hb-item span { font-size: 13px; color: var(--gray); }
.hb-divider { width: 1px; background: var(--border); flex-shrink: 0; }

/* ── PASOS ── */
.pasos {
  display: flex; align-items: flex-start; gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
}
.paso {
  flex: 1; padding: 36px 32px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.paso:last-child { border-right: none; }
.paso:hover { background: var(--surface2); }
.paso-num {
  font-family: var(--font-cond);
  font-size: 48px; font-weight: 900;
  color: var(--accent); opacity: .25;
  line-height: 1; margin-bottom: 16px;
}
.paso h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.paso p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.paso-arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px; color: var(--accent); font-size: 20px;
  opacity: .4; align-self: center;
}

/* ── PRODUCTOS ── */
.productos { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.producto {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.producto:hover { border-color: var(--border2); transform: translateY(-4px); }
.producto-img-wrap {
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--surface2);
}
.producto-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
  filter: brightness(.9);
}
.producto:hover .producto-img-wrap img { transform: scale(1.05); }
.producto-content { padding: 24px; }
.producto-badge {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(232,184,75,.3);
  padding: 3px 10px; border-radius: 3px; margin-bottom: 12px;
}
.producto-content h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.producto-content p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.producto-content ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.producto-content ul li {
  font-size: 13px; color: var(--gray);
  display: flex; align-items: center; gap: 8px;
}
.producto-content ul li::before { content: '→'; color: var(--accent); font-size: 12px; }

/* ── PRECIO ── */
.precio-wrap { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; max-width: 960px; margin: 0 auto; }
.precio-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 6px; overflow: hidden;
}
.precio-top {
  padding: 40px 40px 32px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.precio-name {
  font-family: var(--font-cond);
  font-size: 13px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.precio-monto {
  font-family: var(--font-cond);
  font-size: 64px; font-weight: 900;
  letter-spacing: 1px; line-height: 1;
  color: var(--white); margin-bottom: 6px;
}
.precio-periodo { font-size: 14px; color: var(--gray); }
.precio-lista {
  list-style: none; padding: 32px 40px;
  display: flex; flex-direction: column; gap: 14px;
}
.precio-lista li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--white);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.precio-lista li:last-child { border-bottom: none; padding-bottom: 0; }
.precio-lista li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.precio-lista + .btn-primary { margin: 0 40px 16px; width: calc(100% - 80px); }
.precio-nota { text-align: center; font-size: 13px; color: var(--gray); padding: 0 40px 32px; }
.precio-nota strong { color: var(--white); }

.precio-aside { display: flex; flex-direction: column; gap: 16px; }
.aside-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px; padding: 24px 28px;
  transition: border-color .2s;
}
.aside-item:hover { border-color: var(--border2); }
.aside-num {
  font-family: var(--font-cond);
  font-size: 44px; font-weight: 900;
  color: var(--accent); line-height: 1; margin-bottom: 4px;
}
.aside-label { font-size: 14px; color: var(--gray); }

/* ── REDES ── */
.redes { display: flex; flex-direction: column; gap: 14px; max-width: 700px; margin: 0 auto; }
.red-card {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 28px; border-radius: 6px;
  border: 1px solid var(--border);
  text-decoration: none; background: var(--surface);
  transition: border-color .2s, transform .2s;
}
.red-card:hover { border-color: var(--border2); transform: translateX(4px); }
.red-icon {
  width: 52px; height: 52px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fb-icon { background: rgba(24,119,242,.12); color: #1877f2; }
.wa-icon { background: rgba(37,211,102,.12); color: #25d366; }
.red-body { flex: 1; }
.red-name { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.red-desc { font-size: 13px; color: var(--gray); }
.red-arrow { font-size: 20px; color: var(--accent); }

/* ── CTA FINAL ── */
.cta-final {
  text-align: center; padding: 120px 80px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.cta-final h2 {
  font-family: var(--font-cond);
  font-size: clamp(44px,7vw,88px);
  font-weight: 900; letter-spacing: 2px;
  line-height: 1; margin-bottom: 20px;
}
.cta-final p { font-size: 18px; color: var(--gray); font-weight: 300; max-width: 440px; margin: 0 auto 44px; }

/* ── FOOTER ── */
footer {
  padding: 56px 80px 36px;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
}
.footer-logo {
  font-family: var(--font-cond);
  font-size: 28px; font-weight: 900;
  letter-spacing: 3px; margin-bottom: 12px;
}
.footer-logo span { color: var(--accent); }
.main-col p { font-size: 14px; color: var(--gray); }
.footer-col h4 {
  font-family: var(--font-cond);
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 14px; color: var(--gray); text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 80px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--gray2);
}

/* ── WA FLOTANTE ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .productos { grid-template-columns: 1fr 1fr; }
  .ms-wrap { grid-template-columns: 1fr; gap: 40px; }
  .precio-wrap { grid-template-columns: 1fr; }
  .precio-aside { flex-direction: row; flex-wrap: wrap; }
  .aside-item { flex: 1; min-width: 140px; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-top { padding: 110px 20px 40px; }
  .hero-video-wrap { margin: 0 20px; }
  .hero-bar { flex-direction: column; }
  .hb-divider { display: none; }
  .hb-item { padding: 18px 20px; border-bottom: 1px solid var(--border); }
  .pasos { flex-direction: column; }
  .paso { border-right: none; border-bottom: 1px solid var(--border); }
  .paso-arrow { transform: rotate(90deg); padding: 8px 0; }
  .productos { grid-template-columns: 1fr; }
  .cta-final { padding: 80px 20px; }
  footer { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 20px; }
}

/* ── HERO 2 COLUMNAS ── */
.hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 80px 56px;
  position: relative; z-index: 2;
}
.hero-left { display: flex; flex-direction: column; }
.hero-right { display: flex; align-items: center; justify-content: flex-end; }

.hero h1 { font-family: var(--font-cond); font-size: clamp(64px, 9vw, 120px); font-weight: 900; line-height: .9; letter-spacing: 2px; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-left > p { font-size: 17px; color: var(--gray); font-weight: 300; line-height: 1.7; margin-bottom: 36px; max-width: 440px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-cond); font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }

/* MOCKUP */
.hero-mockup { background: #0d1117; border: 1px solid var(--border2); border-radius: 12px; overflow: hidden; width: 100%; max-width: 420px; box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 60px rgba(232,184,75,.05); }
.mockup-cam { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.mockup-cam img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.75); }
.mockup-overlay { position: absolute; inset: 0; display: flex; justify-content: space-between; align-items: flex-start; padding: 10px 14px; background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, transparent 60%); }
.mockup-rec { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; letter-spacing: 2px; color: white; text-transform: uppercase; }
.mockup-time { font-family: var(--font-cond); font-size: 13px; color: rgba(255,255,255,.65); letter-spacing: 1px; }
.mockup-devices { padding: 12px 16px; display: flex; flex-direction: column; gap: 8px; border-bottom: 1px solid rgba(255,255,255,.06); }
.mockup-dev { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #6a7a88; }
.mockup-dev strong { margin-left: auto; font-size: 12px; color: #4ade80; font-weight: 600; }
.mockup-dev.warn strong { color: var(--accent); }
.mockup-dev-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 6px #4ade80; flex-shrink: 0; }
.mockup-dev-dot.warn-dot { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.mockup-siren { padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; }
.siren-btn { background: rgba(224,82,82,.12); border: 1px solid rgba(224,82,82,.28); color: #e05252; font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 4px; letter-spacing: .5px; }
.siren-note { font-size: 10px; color: #2a3240; }

@media (max-width: 1024px) {
  .hero-top { grid-template-columns: 1fr; gap: 40px; padding: 120px 40px 48px; }
  .hero-right { justify-content: center; }
}
@media (max-width: 768px) {
  .hero-top { padding: 100px 20px 40px; }
  .hero-right { display: none; }
}