:root {
    --bg: #060810;
    --bg2: #0b0f1a;
    --surface: #111725;
    --border: #1e2a40;
    --accent: #00d4ff;
    --accent2: #7b2ff7;
    --gold: #f5c542;
    --text: #e8eaf0;
    --muted: #6b7a99;
    --red: #ff3b5c;
  }
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html {  scroll-behavior: smooth;  scroll-padding-top: 80px; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
  }

  /* NOISE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    background: rgba(6,8,16,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  /* LOGO LINK */
  .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .nav-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0,212,255,0.4));
  }
  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 6px;
    font-weight: 600 !important;
  }

  /* HAMBURGER */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* SCROLL PROGRESS */
  #scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    z-index: 9999;
    transition: width 0.1s linear;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 60px 80px;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,212,255,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(123,47,247,0.12) 0%, transparent 60%);
    z-index: 0;
  }
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
  }
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.3);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeDown 0.8s ease both;
  }
  .hero-badge span { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 8vw, 96px);
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 24px;
    animation: fadeDown 0.8s 0.15s ease both;
  }
  .hero h1 span { color: var(--accent); }
  .hero p {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
    animation: fadeDown 0.8s 0.3s ease both;
  }
  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeDown 0.8s 0.45s ease both;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 30px rgba(0,212,255,0.2);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(0,212,255,0.35); }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
  .hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    animation: fadeDown 0.8s 0.6s ease both;
  }
  .stat-num {
    font-family: 'Space Mono', monospace;
    font-size: 28px;
    color: var(--accent);
    font-weight: 700;
  }
  .stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 4px; }

  /* FEATURES STRIP */
  .features-strip {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 60px;
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
  }
  .feat-icon { font-size: 18px; }

  /* SECTION */
  section { padding: 96px 60px; }
  .section-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .section-sub { font-size: 16px; color: var(--muted); max-width: 480px; line-height: 1.7; }

  /* PLANS */
  #planes { background: var(--bg2); }
  .plans-header { text-align: center; margin-bottom: 60px; }
  .plans-header .section-sub { margin: 0 auto; }
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .plan-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    transition: transform 0.25s, border-color 0.25s;
    overflow: hidden;
  }
  .plan-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    opacity: 0;
    transition: opacity 0.25s;
  }
  .plan-card:hover { transform: translateY(-6px); border-color: rgba(0,212,255,0.4); }
  .plan-card:hover::before { opacity: 1; }
  .plan-card.featured {
    border-color: rgba(0,212,255,0.5);
    background: linear-gradient(160deg, rgba(0,212,255,0.06), var(--surface));
  }
  .plan-card.featured::before { opacity: 1; }
  .plan-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--gold);
    color: #111;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
  }
  .plan-period { font-size: 13px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
  .plan-price { font-family: 'Bebas Neue', sans-serif; font-size: 58px; line-height: 1; letter-spacing: 1px; margin-bottom: 4px; }
  .plan-price sup { font-size: 22px; vertical-align: top; margin-top: 10px; display: inline-block; color: var(--accent); }
  .plan-price .currency { color: var(--accent); }
  .plan-mo { font-size: 12px; color: var(--muted); margin-bottom: 28px; }
  .plan-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
  .plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
  .plan-features li { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
  .plan-features li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 12px; flex-shrink: 0; }
  .plan-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 13px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--accent);
    color: var(--accent);
    transition: background 0.2s, color 0.2s;
  }
  .plan-btn:hover, .plan-card.featured .plan-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    border-color: transparent;
  }
  .free-trial {
    text-align: center;
    margin-top: 40px;
    font-size: 15px;
    color: var(--muted);
  }
  .free-trial a { color: var(--accent); font-weight: 600; text-decoration: none; }
  .free-trial a:hover { text-decoration: underline; }

  /* HOW IT WORKS */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
  }
  .step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
  }
  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    line-height: 1;
    color: rgba(0,212,255,0.07);
    position: absolute;
    top: 16px; right: 24px;
  }
  .step-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(123,47,247,0.15));
    border: 1px solid rgba(0,212,255,0.25);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
  }
  .step h3 { font-size: 19px; font-weight: 600; margin-bottom: 12px; }
  .step p { font-size: 14px; color: var(--muted); line-height: 1.7; }

  /* DEVICES */
  #dispositivos { background: var(--bg2); }
  .devices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
  }
  .device-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: border-color 0.2s;
  }
  .device-card:hover { border-color: rgba(0,212,255,0.4); }
  .device-emoji { font-size: 30px; }
  .device-name { font-weight: 600; font-size: 15px; }
  .device-desc { font-size: 12px; color: var(--muted); margin-top: 2px; }

  /* FAQ */
  .faq-list { max-width: 780px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 12px; }
  .faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .faq-q .arrow { color: var(--accent); font-size: 18px; transition: transform 0.3s; flex-shrink: 0; }
  .faq-q.open .arrow { transform: rotate(45deg); }
  .faq-a {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .faq-a.open { max-height: 200px; padding: 0 24px 20px; }

  /* CONTACT */
  #contacto { background: var(--bg2); }
  .contact-box {
    max-width: 600px;
    margin: 60px auto 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 52px;
    text-align: center;
  }
  .contact-icon { font-size: 48px; margin-bottom: 20px; }
  .contact-box h3 { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 1px; margin-bottom: 12px; }
  .contact-box p { color: var(--muted); font-size: 15px; margin-bottom: 32px; line-height: 1.6; }
  .wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(37,211,102,0.25);
  }
  .wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.4); }

  /* FOOTER */
  footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { color: var(--muted); font-size: 13px; text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text); }
  .footer-copy { font-size: 13px; color: var(--muted); }

  /* ANIMATIONS */
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }

  /* RESPONSIVE */
  .plan-saving {
    display: inline-block;
    background: rgba(245,197,66,0.12);
    border: 1px solid rgba(245,197,66,0.3);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 16px;
  }

  /* WHY US */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
  }
  .why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
  }
  .why-card:hover { border-color: rgba(0,212,255,0.35); transform: translateY(-4px); }
  .why-icon { font-size: 36px; margin-bottom: 14px; }
  .why-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
  .why-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

  /* WHATSAPP FLOAT */
  .wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
  }
  .wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
  .wa-float svg { width: 30px; height: 30px; fill: #fff; }
  .wa-float-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.5);
    animation: waPulse 2s infinite;
  }
  @keyframes waPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
  }

  @media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 520px) {
    .why-grid { grid-template-columns: 1fr; }
    .wa-float { bottom: 20px; right: 20px; }
  }
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero { padding: 100px 24px 60px; }
    section { padding: 72px 24px; }
    .features-strip { padding: 24px; gap: 24px; }
    .plans-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .devices-grid { grid-template-columns: 1fr 1fr; }
    footer { padding: 28px 24px; flex-direction: column; text-align: center; }
    .contact-box { padding: 36px 24px; }
    .hero-stats { gap: 28px; }
  }
  @media (max-width: 520px) {
    .plans-grid { grid-template-columns: 1fr; }
    .devices-grid { grid-template-columns: 1fr; }
  }


/* INSTALL TABS */
.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.tab-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn:hover { border-color: var(--accent); color: var(--accent); }
.tab-btn.active { background: linear-gradient(135deg, var(--accent), var(--accent2)); border-color: transparent; color: #fff; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.install-intro { margin-bottom: 32px; }
.install-intro h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.install-intro p { color: var(--muted); font-size: 14px; }
.install-block { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; margin-bottom: 24px; }
.install-block h4 { font-size: 16px; font-weight: 700; margin-bottom: 24px; color: var(--accent); }
.install-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.install-step:last-of-type { border-bottom: none; }
.step-badge {
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(123,47,247,0.15));
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--accent);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 6px;
}
.step-body { flex: 1; }
.step-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.step-body strong { color: var(--text); }
.install-img {
  max-width: 100%;
  width: 480px;
  border-radius: 10px;
  margin-top: 12px;
  border: 1px solid var(--border);
  display: block;
}
.install-link {
  color: var(--accent);
  font-size: 13px;
  word-break: break-all;
}
.install-done {
  margin-top: 20px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 10px;
  text-align: center;
}
/* METODOS DE PAGO */
.pay-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 32px 24px;
  border-radius: 16px;
  min-width: 180px;
  flex: 1;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.pay-card:hover { 
  border-color: rgba(0,212,255,0.3); 
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.pay-card span { font-size: 14px; font-weight: 600; color: var(--text); text-align: center; }

@media (max-width: 768px) {
  .pay-card { min-width: 140px; padding: 24px 16px; }
}
/* LOGOS TICKER */
.logos-ticker-wrapper {
  overflow: hidden;
  padding: 30px 0;
  background: var(--bg2);
  white-space: nowrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.logos-ticker-wrapper::before,
.logos-ticker-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}
.logos-ticker-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg2) 0%, transparent 100%);
}
.logos-ticker-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg2) 0%, transparent 100%);
}
.logos-ticker {
  display: inline-flex;
  animation: 35s slide infinite linear;
}
.logos-ticker:hover { animation-play-state: paused; }
.logo-slide {
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 40px;
}
.logo-slide img {
  height: 48px;
  max-width: 120px;
  margin: 0 40px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease;
}
.logo-slide img:hover {
  filter: grayscale(0%) opacity(1);
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .logo-slide img { height: 36px; margin: 0 20px; }
  .logos-ticker-wrapper::before, .logos-ticker-wrapper::after { width: 40px; }
}

/* REVIEWS SLIDER */
#testimonios {
  background: var(--bg);
  overflow: hidden;
}
.reviews-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 40px 60px;
  margin-top: 20px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.reviews-slider::-webkit-scrollbar {
  display: none;
}
.review-card {
  min-width: 300px;
  max-width: 340px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}
.review-card:hover { transform: translateY(-5px); border-color: rgba(0,212,255,0.4); }
.chat-mockup {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .reviews-slider { padding: 20px 24px; }
  .review-card { min-width: 260px; }
  .chat-mockup { height: 450px; }
}

/* GLOW MÁS POPULAR */
.plan-card.featured {
  position: relative;
  z-index: 2;
  border-color: rgba(0, 212, 255, 0.7);
  animation: glowPulse 2.5s infinite alternate;
}
@keyframes glowPulse {
  0% { box-shadow: 0 0 10px rgba(0,212,255,0.1); border-color: rgba(0,212,255,0.3); }
  100% { box-shadow: 0 0 30px rgba(0,212,255,0.5); border-color: rgba(0,212,255,1); }
}

/* ODOMETER FIX */
.stat-num { min-width: 90px; }

/* ── URGENCY BANNER ──────────────────────────────────── */
.urgency-banner {
  position: sticky;
  top: 73px;
  z-index: 90;
  background: linear-gradient(90deg, #0f0a1e 0%, #1a0535 40%, #0a1a2e 100%);
  border-top: 1px solid rgba(123,47,247,0.4);
  border-bottom: 1px solid rgba(0,212,255,0.25);
  padding: 12px 24px;
  box-shadow: 0 4px 30px rgba(123,47,247,0.2);
}
.urgency-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.urgency-badge {
  background: linear-gradient(135deg, var(--accent2), #a855f7);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.urgency-text {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.urgency-text strong { font-size: 16px; color: #fff; }
.urgency-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px !important;
  color: var(--accent) !important;
  letter-spacing: 1px;
}
.urgency-sub { font-size: 11px; color: var(--muted); }
.urgency-timer {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 8px;
  padding: 6px 12px;
  flex-shrink: 0;
}
.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 28px;
}
.timer-block span {
  font-family: 'Space Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.timer-block small {
  font-size: 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.timer-sep {
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  color: var(--accent);
  opacity: 0.6;
  padding-bottom: 8px;
}
.urgency-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 7px;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(0,212,255,0.25);
  flex-shrink: 0;
}
.urgency-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0,212,255,0.4); }
.urgency-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
  flex-shrink: 0;
  margin-left: auto;
}
.urgency-close:hover { color: var(--text); }
@media (max-width: 768px) {
  .urgency-banner { top: 65px; padding: 10px 16px; }
  .urgency-inner { gap: 10px; }
  .urgency-sub { display: none; }
  .urgency-text strong { font-size: 14px; }
  .urgency-price { font-size: 18px !important; }
  .timer-block span { font-size: 15px; }
}

/* ── MOBILE NAV OVERLAY ──────────────────────────────── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 32px;
    display: none;
    z-index: 140;
  }
  .nav-links.mobile-open {
    display: flex;
    animation: fadeDown 0.3s ease both;
  }
  .nav-links a {
    font-size: 18px;
    letter-spacing: 2px;
  }
  .nav-links .nav-cta {
    padding: 14px 40px;
    font-size: 16px !important;
  }
}

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── FOOTER RESPONSIVE FIX ───────────────────────────── */
@media (max-width: 900px) {
  footer { justify-content: center; }
}


