﻿/* ============================================================
  BRAND DIRECTV
============================================================ */
:root {
  --dtv-blue:       #0173ae;
  --dtv-blue-dark:  #1b2c5d;
  --dtv-blue-mid:   #005992;
  --dtv-blue-light: #00aeef;
  --dtv-yellow:     #ffc60c;
  --dtv-yellow-dim: #e8c203;
  --dtv-orange:     #ff890d;
  --dtv-white:      #ffffff;
  --dtv-black:      #191919;
  --dtv-gray:       #747474;
  --dtv-gray-light: #f0f0f0;
  --dtv-gray-mid:   #e0e0e0;

  --bg-dark:  #0d1a2e; 
  --bg-card:  #111f35;
  --bg-panel: #0a1525;
  --bg-light: #f4f7fb;

  /* Fonts */
  --font-dtv:   'DTV', 'Inter', sans-serif;
  --font-inter: 'Inter', sans-serif;

  --nav-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@font-face {
  font-family: 'DTV';
  src: url('Tipografia/DIRECTV Curve - Regular.otf') format('opentype');
  font-weight: 400;
}
@font-face {
  font-family: 'DTV';
  src: url('Tipografia/DIRECTV Curve - Medium.otf') format('opentype');
  font-weight: 500;
}
@font-face {
  font-family: 'DTV';
  src: url('Tipografia/DIRECTV Curve - Bold.otf') format('opentype');
  font-weight: 700;
}

/* ============================================================
  RESET
============================================================ */
*, *::before, 
*::after { 
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html  {
  scroll-behavior: smooth; 
}

body  { 
  font-family: var(--font-inter); 
  font-weight: 400; 
  background: var(--bg-dark); 
  color: var(--dtv-white); 
  overflow-x: hidden; 
}

img {
  display: block; 
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea {
  font-family: inherit;

}
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--dtv-blue);
  border-radius: 2px;
}

/* ============================================================
  LAYOUT
============================================================ */
.wrap    { max-width: 1260px; margin: 0 auto; padding: 0 36px; }
.section { padding: 96px 0; }

/* ============================================================
  ANIMATIONS
============================================================ */
@keyframes fadeUp  { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes ticker  { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes glow    { 0%,100% { box-shadow:0 0 0 0 rgba(255,198,12,.4); } 50% { box-shadow:0 0 0 14px rgba(255,198,12,0); } }
@keyframes float   { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-8px); } }

/* Scroll-reveal */
.reveal { opacity:0; transform:translateY(32px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.on { opacity:1; transform:translateY(0); }
.d1 { transition-delay:.1s; }
.d2 { transition-delay:.2s; }
.d3 { transition-delay:.3s; }
.d4 { transition-delay:.4s; }

/* ============================================================
  NAVBAR
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 36px;
  transition: background .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: rgba(10,21,37,.96);
  backdrop-filter: blur(16px);
  border-color: rgba(1,115,174,.25);
}

/* Logo */
.nav__logo img { height: 48px; }

/* Links centrados */
.nav__links {
  display: flex; gap: 32px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav__links a {
  font-size: .75rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  position: relative; padding-bottom: 4px;
  transition: color .3s;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--dtv-yellow);
  transition: width .35s var(--ease);
}
.nav__links a:hover,
.nav__links a.active { color: var(--dtv-white); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

/* CTAs wrapper */
.nav__ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Base compartida */
.nav__cta-primary,
.nav__cta-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: var(--font-dtv);
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s, border-color .25s, transform .2s;
}
.nav__cta-primary:hover,
.nav__cta-secondary:hover { transform: translateY(-1px); }

.nav__cta-primary i,
.nav__cta-secondary i { font-size: 1rem; flex-shrink: 0; }

.nav__cta-primary span,
.nav__cta-secondary span {
  display: flex; flex-direction: column; line-height: 1.2;
}
.nav__cta-primary small,
.nav__cta-secondary small {
  font-size: .58rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; opacity: .7;
}

/* Secundario — atención al cliente */
.nav__cta-secondary {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--dtv-white);
  font-size: .82rem; font-weight: 600;
}
.nav__cta-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
}
.nav__cta-secondary i { color: var(--dtv-blue-light); }

/* Primario — ventas */
.nav__cta-primary {
  background: var(--dtv-yellow);
  color: var(--dtv-black);
  font-size: .88rem; font-weight: 700;
}
.nav__cta-primary:hover { background: #ffd83d; }
.nav__cta-primary i { color: var(--dtv-black); }

/* Burger (mobile) */
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--dtv-white); transition: transform .3s, opacity .3s; }
.nav.open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Tel small (mobile) */
.nav__tel-sm {
  display: none; flex-direction: column; align-items: flex-end;
  font-size: .72rem; line-height: 1.3; color: rgba(255,255,255,.6);
}
.nav__tel-sm strong { color: var(--dtv-yellow); font-size: .9rem; }

/* Drawer (mobile) */
.nav__drawer {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 9998;
  background: rgba(10,21,37,.98); backdrop-filter: blur(20px);
  padding: 32px 36px;
  border-bottom: 1px solid rgba(1,115,174,.2);
  display: none; flex-direction: column; gap: 24px;
}
.nav__drawer a {
  font-family: var(--font-dtv); font-size: 1.4rem; font-weight: 700;
  color: rgba(255,255,255,.7); transition: color .25s;
}
.nav__drawer a:hover { color: var(--dtv-yellow); }


/* ============================================================
  HERO
============================================================ */
.hero {
  position:relative; height:100svh; min-height:600px;
  padding-top:var(--nav-h); overflow:hidden; box-sizing:border-box;
}
.hero__viewport { width:100%; height:100%; overflow:hidden; }
.hero__track {
  display:flex; width:400%; height:100%;
  transition:transform 1.4s cubic-bezier(0.45,0,0.15,1);
}
.hero__slide { position:relative; width:25%; height:100%; flex-shrink:0; overflow:hidden; }

/* Fondos */
.hero__bg {
  position:absolute; inset:0; z-index:0;
  background-size:cover; background-position:center; background-repeat:no-repeat;
}
.hero__bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to right, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 60%, transparent 100%);
}
.slide-1 { background-image:url('../images/hero/Banner-mundial-desktop.webp'); }
.slide-2 { background-image:url('../images/hero/banner-smart-desktop.webp'); }
.slide-3 { background-image:url('../images/hero/Banner-futbol-desktop.webp'); }
.slide-4 { background-image:url('../images/hero/Banner-fibra-desktop.webp'); }

/* Contenido base */
.hero__content {
  position:absolute; z-index:2; height:100%;
  display:flex; align-items:center; padding:0 160px;
}
.hero__left {
  display:flex; flex-direction:column; justify-content:center; max-width:650px;
}
.hero__left--narrow { max-width:560px; flex-shrink:0; }

/* Eyebrow */
.hero__eyebrow {
  font-size:.72rem; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--dtv-yellow);
  display:flex; align-items:center; gap:10px; margin-bottom:24px;
  animation:fadeUp .7s var(--ease) .15s both;
}
.hero__eyebrow::before { content:''; display:block; width:28px; height:2px; background:var(--dtv-yellow); flex-shrink:0; }

/* H1 */
.hero__h1 {
  font-family:var(--font-dtv);
  font-size:clamp(2.4rem, 4.5vw, 5rem); font-weight:700; line-height:1.05;
  color:var(--dtv-white); margin-bottom:20px;
  animation:fadeUp .7s var(--ease) .3s both;
}
.hero__h1 .accent { color:var(--dtv-yellow); }

/* Subtítulo */
.hero__sub {
  font-size:1rem; font-weight:300; color:rgba(255,255,255,.65);
  line-height:1.75; max-width:560px; margin-bottom:40px;
  animation:fadeUp .7s var(--ease) .45s both;
}

/* Form — Slide 1 */
.hero__form-label {
  font-size:.72rem; font-weight:500;
  letter-spacing:.12em; text-transform:uppercase;
  color:rgba(255,255,255,.5); margin-bottom:10px;
  animation:fadeUp .7s var(--ease) .55s both;
}
.hero__form {
  display:flex; max-width:420px;
  animation:fadeUp .7s var(--ease) .65s both;
}
.hero__form-inner {
  flex:1; display:flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(1,115,174,.5); border-right:none;
  border-radius:8px 0 0 8px; padding:0 16px;
}
.hero__form-inner i       { color:var(--dtv-blue-light); font-size:.85rem; flex-shrink:0; }
.hero__form-prefix        { font-size:.82rem; color:rgba(255,255,255,.4); white-space:nowrap; }
.hero__form-inner input   { background:none; border:none; outline:none; color:var(--dtv-white); font-size:.95rem; width:100%; padding:16px 0; }
.hero__form-inner input::placeholder { color:rgba(255,255,255,.35); }
.hero__form button[type="submit"] {
  font-family:var(--font-dtv); font-size:.82rem; font-weight:700;
  background:var(--dtv-yellow); color:var(--dtv-black);
  padding:0 28px; border-radius:0 8px 8px 0;
  transition:background .25s; white-space:nowrap;
}
.hero__form button[type="submit"]:hover { background:#ffd83d; }

/* Slide 2 — TV Smart */
.promo-card__detail {
  font-size:1rem; color:rgba(255,255,255,.55); line-height:1.7;
  margin-bottom:24px; animation:fadeUp .7s var(--ease) .45s both;
}
.promo-card__price-block  { margin-bottom:28px; animation:fadeUp .7s var(--ease) .55s both; }
.promo-card__price-label  { font-size:.68rem; text-transform:uppercase; letter-spacing:.14em; color:rgba(255,255,255,.4); margin-bottom:4px; }
.promo-card__price        { font-family:var(--font-dtv); font-size:clamp(3rem,5vw,4.5rem); font-weight:800; color:var(--dtv-white); line-height:1; }
.promo-card__price-suffix { font-size:.7rem; color:rgba(255,255,255,.35); margin-top:4px; }
.promo-card__included {
  display:flex; align-items:center; gap:12px;
  padding:16px 20px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  border-radius:12px; backdrop-filter:blur(10px);
  animation:fadeUp .7s var(--ease) .65s both;
}
.included-label { font-size:.6rem; text-transform:uppercase; letter-spacing:.14em; color:rgba(255,255,255,.35); white-space:nowrap; margin-right:4px; }
.app-icon       { height:50px; width:auto; object-fit:contain; border-radius:6px; }

/* Slide 3 — Fútbol / Superlite */
.hero__content--s3 { align-items:center; }
.s3 { display:flex; flex-direction:column; gap:28px; max-width:700px; width:100%; z-index:1; }
.s3__top { display:flex; flex-direction:column; gap: 0; }

.s3__strip {
  display:flex; align-items:stretch;
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1);
  border-radius:14px; overflow:hidden;
}

.s3__price {
  display:flex; flex-direction:column; justify-content:center;
  padding:20px 28px; flex:1; gap:4px;
  border-right:1px solid rgba(255,255,255,.08);
}

.s3__pack   { font-size:.58rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.3); }
.s3__amount { font-family:var(--font-dtv); font-size:2.8rem; font-weight:800; line-height:1; color:var(--dtv-white); }
.s3__sub    { font-size:.7rem; color:rgba(255,255,255,.35); }

.s3__free {
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  padding:10px 24px; gap:2px;
  background:rgba(255,194,0,.07); border-right:1px solid rgba(255,255,255,.08); min-width:100px;
}
.s3__free-num   { font-family:var(--font-dtv); font-size:2.6rem; font-weight:900; line-height:1; color:var(--dtv-yellow); }
.s3__free-label { font-size:.58rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--dtv-yellow); opacity:.85; }
.s3__free-sub   { font-size:.58rem; color:rgba(255,255,255,.3); letter-spacing:.06em; text-transform:uppercase; }

.s3__includes { display:flex; flex-direction:column; justify-content:center; gap:10px; padding:20px 22px; min-width:155px; }
.s3__includes-label { font-size:.58rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.25); }
.s3__includes-list  { display:flex; flex-direction:column; gap:5px; }
.s3__pill {
  font-size:.72rem; font-weight:500; color:rgba(255,255,255,.55);
  display:flex; align-items:center; gap:6px;
}
.s3__pill::before  { content:''; width:5px; height:5px; border-radius:50%; background:var(--dtv-blue-light); flex-shrink:0; }
.s3__pill--dim     { color:rgba(255,255,255,.32); }
.s3__pill--dim::before { background:rgba(255,255,255,.2); }

.s3__bottom { display:flex; align-items:center; justify-content:space-between; gap:24px; }
.s3__sub-text { font-size: 1rem; font-weight:300; color:rgba(255,255,255,.45); line-height:1.65; max-width:340px; }
.s3__cta {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--dtv-yellow); color:var(--dtv-black);
  font-family:var(--font-dtv); font-size:.82rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  padding:13px 28px; border-radius:8px; white-space:nowrap; flex-shrink:0;
  transition:background .25s, transform .2s;
}
.s3__cta:hover { background:#ffd83d; transform:translateY(-1px); }

/* Slide 4 — Internet */
.hero__content--internet { gap: 36px; padding: 0 60px; }

.inet-grid {
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
  max-width:580px;
  margin-left: auto;  
}

.inet-card {
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-left:4px solid var(--dtv-blue-light);
  border-radius:12px;
  padding:14px 18px;
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  transition:all .3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.inet-card:hover {
  background:rgba(255,255,255,.1);
  border-left-color: var(--dtv-blue-light);
  transform:translateX(3px);
}

.inet-card--featured {
  background: rgba(255, 194, 0, 0.07);
  border-left-color: var(--dtv-yellow);
  border-color: rgba(255, 194, 0, 0.3);
}

.inet-card--featured:hover {
  background: rgba(255, 194, 0, 0.12);
}

.inet-card__badge {
  font-family: var(--font-inter);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: var(--dtv-blue-light);
  padding: 3px 9px;
  border-radius: 20px;
  flex-shrink: 0;
  align-self: flex-start;
}

.inet-card--featured .inet-card__badge { background:var(--dtv-yellow); }

.inet-card__popular {
  font-family: var(--font-inter);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dtv-yellow);
  flex: 0 0 100%;
  order: -1;
  margin-bottom: -6px;
}

.inet-card__name { font-family:var(--font-dtv); font-size:1.1rem; font-weight:700; color:var(--dtv-white); line-height:1.25; flex:1 1 160px; }
.inet-card__name span { color:var(--dtv-yellow); }
.inet-card__guarantee { font-size:.8rem; color:rgba(255,255,255,.35); flex:0 0 100%; margin-top:-8px; }
.inet-card__bottom { display:flex; align-items:center; gap:12px; margin-left:auto; flex-shrink:0; }
.inet-card__price { font-family:var(--font-dtv); font-size:1.55rem; font-weight:900; color:var(--dtv-white); line-height:1; white-space:nowrap; }
.inet-card--featured .inet-card__price { color:var(--dtv-yellow); }
.inet-card__cta {
  display:inline-block; padding:9px 16px;
  background:var(--dtv-blue-light); color:#000;
  font-family:var(--font-dtv); font-size:.65rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; border-radius:8px;
  transition:background .25s; white-space:nowrap;
}
.inet-card__cta:hover { background:#33cfff; }
.inet-card--featured .inet-card__cta { background:var(--dtv-yellow); color:#000; }
.inet-card--featured .inet-card__cta:hover { background:#ffd83d; }

/* Flechas */
.hero__nav { position:absolute; inset:0; z-index:5; pointer-events:none; }
.hero__arrow {
  position:absolute; top:50%; transform:translateY(-50%); pointer-events:all;
  width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(6px); display:flex; align-items:center; justify-content:center;
  color:white; font-size:14px; transition:all .3s ease;
}
.hero__arrow:hover { background:var(--dtv-yellow); color:black; transform:translateY(-50%) scale(1.1); }
.hero__arrow--prev { left:24px; }
.hero__arrow--next { right:24px; }

/* Scroll hint */
.hero__scroll {
  position:absolute; bottom:28px; left:60px; z-index:3;
  display:flex; align-items:center; gap:10px;
  font-size:.68rem; letter-spacing:.16em; text-transform:uppercase;
  color:rgba(255,255,255,.35);
  animation:fadeIn 1s var(--ease) 1.2s both; pointer-events:none;
}
.hero__scroll i { color:var(--dtv-blue-light); font-size:.8rem; animation:float 2s ease-in-out infinite; }

/* ============================================================
  TICKER
============================================================ */
.ticker {
  background: linear-gradient(90deg, var(--dtv-blue-dark), var(--dtv-blue-mid), var(--dtv-blue-dark));
  border-top: 2px solid var(--dtv-yellow);
  border-bottom: 2px solid rgba(255,255,255,.08);
  padding: 13px 0;
  overflow: hidden; white-space: nowrap;
}
.ticker__inner {
  display: inline-flex; width: max-content;
  animation: ticker 22s linear infinite;
}
.ticker__item {
  font-family: var(--font-dtv);
  font-size: .9rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--dtv-white);
  padding: 0 36px;
  display: flex; align-items: center; gap: 16px;
}
.ticker__item::after { content: '◆'; color: var(--dtv-yellow); font-size: .5rem; }

/* ============================================================
  SECTION HEADER 
============================================================ */
.sec-eyebrow {
  font-family: var(--font-inter);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--dtv-blue-light);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.sec-eyebrow::before { content:''; display:block; width:20px; height:2px; background:var(--dtv-blue-light); }

.sec-title {
  font-family: var(--font-dtv);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 700; line-height: 1.1;
  color: var(--dtv-white);
}
.sec-title .yl { color: var(--dtv-yellow); }
.sec-title .bl { color: var(--dtv-blue-light); }

.sec-title--dark { color: var(--dtv-black); }
.sec-title--dark .yl { color: var(--dtv-blue); }

/* ============================================================
  SERVICIOS (iconos)
============================================================ */
.services { padding: 72px 0; background: var(--bg-panel); border-bottom: 1px solid rgba(1,115,174,.15); }
.services__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid rgba(1,115,174,.15);
  border-radius: 12px; overflow: hidden;
}
.svc {
  padding: 36px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  background: rgba(255,255,255,.02);
  border-right: 1px solid rgba(1,115,174,.12);
  cursor: pointer;
  transition: background .3s;
  text-align: center;
}
.svc:last-child { border-right: none; }
.svc:hover { background: rgba(1,115,174,.12); }
.svc__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(1,115,174,.15);
  border: 1px solid rgba(1,115,174,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--dtv-blue-light); font-size: 1rem;
  transition: background .3s, border-color .3s, color .3s;
}
.svc:hover .svc__icon {
  background: var(--dtv-yellow);
  border-color: var(--dtv-yellow);
  color: var(--dtv-black);
}
.svc__name {
  font-family: var(--font-inter);
  font-size: .75rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  transition: color .3s;
}
.svc:hover .svc__name { color: var(--dtv-white); }

/* ============================================================
  PLANES — tabs + grid de cards
============================================================ */
.plans { padding: 96px 0; background: var(--bg-light); }

.plans__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; gap: 24px; flex-wrap: wrap;
}

/* Tabs */
.tabs {
  display: flex; gap: 4px;
  background: rgba(1,115,174,.08);
  border: 1px solid rgba(1,115,174,.2);
  border-radius: 10px; padding: 4px;
}
.tab-btn {
  font-family: var(--font-inter);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--dtv-gray);
  padding: 10px 20px; border-radius: 7px;
  transition: background .25s, color .25s;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--dtv-black); }
.tab-btn.active {
  background: var(--dtv-blue);
  color: var(--dtv-white);
}

/* Plan cards */
.plans-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}
.plans-grid.active { display: grid; }

.plan-card {
  background: var(--dtv-white);
  border-radius: 16px;
  border: 2px solid transparent;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
  box-shadow: 0 2px 16px rgba(1,27,93,.06);
}
.plan-card:hover {
  border-color: var(--dtv-blue);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(1,115,174,.18);
}
.plan-card__bar {
  height: 5px;
  background: linear-gradient(90deg, var(--dtv-blue), var(--dtv-blue-light));
}
.plan-card__bar--yellow {
  background: linear-gradient(90deg, var(--dtv-yellow), var(--dtv-orange));
}
.plan-card__body { padding: 28px 26px; flex: 1; }

.plan-card__chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-inter);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(1,115,174,.1); color: var(--dtv-blue);
  padding: 5px 10px; border-radius: 99px;
  margin-bottom: 16px;
}
.plan-card__chip--orange { background: rgba(255,137,13,.1); color: var(--dtv-orange); }

.plan-card__name {
  font-family: var(--font-dtv);
  font-size: 1.5rem; font-weight: 700;
  color: var(--dtv-blue-dark); margin-bottom: 4px;
  line-height: 1.1;
}
.plan-card__name .acc { color: var(--dtv-orange); }

.plan-card__period-label {
  font-family: var(--font-inter);
  font-size: .72rem; font-weight: 400;
  color: var(--dtv-gray);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 14px;
}

.plan-card__price-block { margin-bottom: 24px; }
.plan-card__price {
  padding-bottom: 10px;
  font-family: var(--font-dtv);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dtv-blue);
  line-height: 1;
}
.plan-card__price-sub {
  font-family: var(--font-inter);
  font-size: .78rem; color: var(--dtv-gray);
}

.plan-card__sep { height: 1px; background: var(--dtv-gray-mid); margin: 0 0 18px; }

.plan-card__feat-title {
  font-family: var(--font-inter);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--dtv-gray);
  margin-bottom: 10px;
}
.plan-card__feats { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.plan-card__feats > li {
  font-family: var(--font-inter);
  font-size: .87rem; font-weight: 400; color: var(--dtv-black);
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0 8px;
  align-items: start;
}
.plan-card__feats > li::before {
  content: '';
  display: block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--dtv-blue-light);
  margin-top: 5px;
  justify-self: center;
}

/* Sub-items de Universal+ */
.plan-card__feats .feat__sub {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
  grid-column: 2; /* ocupa solo la columna del texto */
}
.plan-card__feats .feat__sub li {
  font-size: .76rem;
  color: var(--dtv-gray);
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 0 4px;
  align-items: start;
}
.plan-card__feats .feat__sub li::before {
  content: '';
  display: block;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--dtv-gray-mid);
  margin-top: 5px;
  justify-self: center;
}

.plan-card__foot { padding: 0 26px 26px; }
.plan-card__cta {
  display: block; width: 100%; text-align: center;
  font-family: var(--font-dtv);
  font-size: .88rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--dtv-blue);
  color: var(--dtv-white);
  padding: 14px; border-radius: 8px;
  transition: background .25s, transform .2s;
}
.plan-card__cta:hover { background: var(--dtv-blue-dark); transform: translateY(-1px); }

.plans__note {
  margin-top: 32px;
  font-family: var(--font-inter);
  font-size: .8rem; color: var(--dtv-gray);
  display: flex; align-items: center; gap: 8px;
}
.plans__note::before { content: ''; display:block; width:16px; height:1px; background:var(--dtv-blue-light); }

.plan-card__feats li.feat--sub {
  align-items: flex-start;
}
.plan-card__feats li.feat--sub::before {
  margin-top: 5px; 
}
.feat__sub-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 5px;
  padding-left: 0;
}
.feat__sub-list li {
  font-size: .78rem;
  color: var(--dtv-gray);
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 0;
}
.feat__sub-list li::before {
  width: 4px;
  height: 4px;
  background: var(--dtv-gray-mid);
  flex-shrink: 0;
  margin-top: 0;
}

/* ============================================================
  DSPORTS — horizontal bento
============================================================ */
.dsports { padding: 96px 0; background: var(--bg-dark); }
.dsports__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(1,115,174,.2);
}
.dsports__info {
  background: var(--bg-card);
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(1,115,174,.2);
}
.dsports__big {
  font-family: var(--font-dtv);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 700; line-height: .9;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0,174,239,.2);
  margin-bottom: -10px; user-select: none;
}
.dsports__logo { max-width: 160px; margin-bottom: 24px; filter: brightness(1.1); }
.dsports__body {
  font-family: var(--font-inter);
  font-size: .95rem; font-weight: 300;
  color: rgba(255,255,255,.65); line-height: 1.8;
  margin-bottom: 32px; max-width: 400px;
}
.dsports__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.dsports__tag {
  font-family: var(--font-inter);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid rgba(1,115,174,.4);
  color: var(--dtv-blue-light);
  padding: 6px 12px; border-radius: 4px;
  transition: background .25s, color .25s, border-color .25s;
}
.dsports__tag:hover {
  background: var(--dtv-blue-light);
  color: var(--dtv-black);
  border-color: var(--dtv-blue-light);
}
.dsports__img-side {
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  position: relative; overflow: hidden;
}
.dsports__img-side::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,174,239,.07) 0%, transparent 70%);
}
.dsports__img-side img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
}

/* ============================================================
  PRIME VIDEO
============================================================ */
.prime { padding: 80px 0; background: var(--bg-card); border-top: 1px solid rgba(1,115,174,.12); }
.prime__inner {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 48px; align-items: center;
}
.prime__logo { max-width: 170px; }
.prime__text h2 {
  font-family: var(--font-dtv);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700; color: var(--dtv-white);
  margin-bottom: 10px; line-height: 1.2;
}
.prime__text h2 .yl { color: var(--dtv-yellow); }
.prime__text p {
  font-family: var(--font-inter);
  font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7;
}
.prime__img img { max-width: 400px; animation: float 6s ease-in-out infinite; }

/* ============================================================
  CTA STRIP
============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--dtv-blue-dark) 0%, var(--dtv-blue) 60%, var(--dtv-blue-mid) 100%);
  border-top: 3px solid var(--dtv-yellow);
  padding: 56px 0;
}
.cta-strip__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-strip__copy {
  font-family: var(--font-dtv);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700; color: var(--dtv-white); line-height: 1.25;
}
.cta-strip__copy .yl { color: var(--dtv-yellow); }
.cta-strip__right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-strip__phone {
  font-family: var(--font-dtv); font-size: 1.8rem; font-weight: 700;
  color: var(--dtv-yellow);
}
.cta-strip__label {
  font-family: var(--font-inter);
  font-size: .72rem; color: rgba(255,255,255,.5);
  letter-spacing: .1em; text-transform: uppercase;
}
.cta-strip__btn {
  font-family: var(--font-dtv); font-size: .88rem; font-weight: 700;
  background: var(--dtv-yellow); color: var(--dtv-black);
  padding: 14px 32px; border-radius: 8px;
  transition: background .25s, transform .2s;
  white-space: nowrap;
}
.cta-strip__btn:hover { background: #ffd83d; transform: translateY(-2px); }

/* ============================================================
   DGO
============================================================ */
.dgo { padding: 96px 0; background: var(--bg-light); }
.dgo__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.dgo__visual {
  position: relative; display: flex; justify-content: center;
}
.dgo__visual img { max-width: 86%; filter: drop-shadow(0 32px 64px rgba(1,27,93,.2)); }
.dgo__visual::before {
  content: '';
  position: absolute; inset: -30px;
  background: radial-gradient(ellipse at center, rgba(1,115,174,.1) 0%, transparent 65%);
}
.dgo__live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-inter); font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--dtv-blue);
  background: rgba(1,115,174,.1);
  border: 1px solid rgba(1,115,174,.25);
  padding: 7px 14px; border-radius: 99px;
  margin-bottom: 16px;
}
.dgo__live-badge::before {
  content: ''; display: block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--dtv-blue-light);
  animation: glow 2s ease-in-out infinite;
}
.dgo__content .sec-title { color: var(--dtv-black); margin-bottom: 16px; }
.dgo__content .sec-title .yl { color: var(--dtv-blue); }
.dgo__body {
  font-family: var(--font-inter); font-size: .95rem; font-weight: 300;
  color: #555; line-height: 1.8; margin-bottom: 32px;
}
.dgo__btn {
  font-family: var(--font-dtv); font-size: .88rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--dtv-blue); color: var(--dtv-white);
  padding: 14px 36px; border-radius: 8px;
  display: inline-block;
  transition: background .25s, transform .2s;
}
.dgo__btn:hover { background: var(--dtv-blue-dark); transform: translateY(-2px); }

/* ============================================================
   FAQ
============================================================ */
.faq { padding: 96px 0; background: var(--bg-dark); }
.faq__inner { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
.faq__sidebar .sec-title { margin-bottom: 16px; }
.faq__sidebar p {
  font-family: var(--font-inter); font-size: .9rem;
  color: rgba(255,255,255,.55); line-height: 1.7;
}
.faq__list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid rgba(1,115,174,.15);
}
.faq-item:first-child { border-top: 1px solid rgba(1,115,174,.15); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; gap: 16px;
  font-family: var(--font-inter); font-size: .95rem; font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color .25s;
}
.faq-q:hover { color: var(--dtv-yellow); }
.faq-q__ico {
  width: 30px; height: 30px; flex-shrink: 0;
  border: 1px solid rgba(1,115,174,.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dtv-blue-light); font-size: .72rem;
  transition: background .3s, color .3s, transform .4s;
}
.faq-item.open .faq-q__ico {
  background: var(--dtv-yellow); color: var(--dtv-black);
  border-color: var(--dtv-yellow);
  transform: rotate(45deg);
}
.faq-a {
  font-family: var(--font-inter); font-size: .9rem; font-weight: 300;
  color: rgba(255,255,255,.55); line-height: 1.8;
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease), padding .3s;
}
.faq-item.open .faq-a { max-height: 260px; padding-bottom: 20px; }
.faq-a a { color: var(--dtv-blue-light); }

/* ============================================================
   LLAMAME STRIP
============================================================ */
.llamame {
  padding: 60px 0;
  background: var(--bg-card);
  border-top: 1px solid rgba(1,115,174,.15);
}
.llamame__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.llamame__copy {
  font-family: var(--font-dtv); font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700; color: var(--dtv-white);
}
.llamame__copy .yl { color: var(--dtv-yellow); }
.llamame__form { display: flex; gap: 0; flex: 1; max-width: 420px; min-width: 280px; }
.llamame__input-wrap {
  flex: 1; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(1,115,174,.4); border-right: none;
  border-radius: 8px 0 0 8px; padding: 0 14px;
}
.llamame__input-wrap i { color: var(--dtv-blue-light); font-size: .82rem; }
.llamame__prefix { font-size: .8rem; color: rgba(255,255,255,.35); white-space: nowrap; }
.llamame__input-wrap input {
  background: none; border: none; outline: none;
  color: var(--dtv-white); font-size: .9rem; width: 100%; padding: 14px 0;
}
.llamame__input-wrap input::placeholder { color: rgba(255,255,255,.3); }
.llamame__form button[type=submit] {
  font-family: var(--font-dtv); font-size: .82rem; font-weight: 700;
  background: var(--dtv-yellow); color: var(--dtv-black);
  padding: 0 24px; border-radius: 0 8px 8px 0;
  white-space: nowrap; transition: background .25s;
}
.llamame__form button[type=submit]:hover { background: #ffd83d; }
.llamame__success { display: none; color: var(--dtv-yellow); font-size: .9rem; font-family: var(--font-inter); }

/* ============================================================
   CONTACTO
============================================================ */
.contacto { padding: 96px 0; background: var(--bg-light); }
.contacto__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.contact-channels { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.ch {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; border-radius: 10px;
  background: var(--dtv-white);
  border: 1px solid var(--dtv-gray-mid);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.ch:hover {
  border-color: var(--dtv-blue);
  box-shadow: 0 4px 20px rgba(1,115,174,.1);
  transform: translateX(4px);
}
.ch__icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.ch__icon--blue    { background: rgba(1,115,174,.1); color: var(--dtv-blue); }
.ch__icon--green   { background: rgba(37,211,102,.1); color: #25d366; }
.ch__lbl {
  font-family: var(--font-inter); font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--dtv-gray); margin-bottom: 3px;
}
.ch__val {
  font-family: var(--font-dtv); font-size: 1rem; font-weight: 700;
  color: var(--dtv-blue-dark);
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field label {
  font-family: var(--font-inter); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dtv-blue);
}
.cf-field input,
.cf-field textarea {
  background: var(--dtv-white); border: 1px solid var(--dtv-gray-mid);
  border-radius: 8px; padding: 13px 14px;
  font-family: var(--font-inter); font-size: .9rem; color: var(--dtv-black);
  outline: none; transition: border-color .3s;
}
.cf-field input:focus,
.cf-field textarea:focus { border-color: var(--dtv-blue); }
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: #aaa; }
.cf-field textarea { resize: vertical; min-height: 80px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-submit {
  font-family: var(--font-dtv); font-size: .9rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--dtv-blue); color: var(--dtv-white);
  padding: 15px 36px; border-radius: 8px;
  align-self: flex-start;
  transition: background .25s, transform .2s;
}
.cf-submit:hover { background: var(--dtv-blue-dark); transform: translateY(-2px); }
.cf-success {
  display: none; color: var(--dtv-blue); font-size: .9rem;
  font-family: var(--font-inter); padding: 10px 0;
  border-top: 1px solid rgba(1,115,174,.2);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--bg-panel);
  border-top: 1px solid rgba(1,115,174,.15);
  padding: 56px 0 28px;
}
.footer__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap; margin-bottom: 48px;
}
.footer__logo img { height: 44px; opacity: .8; margin-bottom: 12px; }
.footer__tagline {
  font-family: var(--font-inter); font-size: .8rem;
  color: rgba(255,255,255,.4); max-width: 220px; line-height: 1.6;
}
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col-title {
  font-family: var(--font-inter); font-size: .68rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--dtv-blue-light);
  margin-bottom: 4px;
}
.footer__col a {
  font-family: var(--font-inter); font-size: .82rem;
  color: rgba(255,255,255,.45); transition: color .25s;
}
.footer__col a:hover { color: var(--dtv-yellow); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer__copy {
  font-family: var(--font-inter); font-size: .75rem; color: rgba(255,255,255,.3);
}
.footer__privacy {
  font-family: var(--font-inter); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35); cursor: pointer;
  transition: color .25s;
}
.footer__privacy:hover { color: var(--dtv-yellow); }

/* ============================================================
  PRIVACIDAD OVERLAY
============================================================ */
.privacy-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,.8); backdrop-filter: blur(8px);
  display: none; align-items: flex-end; padding: 20px;
}
.privacy-overlay.open { display: flex; }
.privacy-box {
  background: var(--bg-card); border: 1px solid rgba(1,115,174,.3);
  border-radius: 12px; max-height: 70vh; overflow-y: auto;
  padding: 44px; width: 100%; max-width: 820px; margin: 0 auto;
  position: relative;
}
.privacy-box h3 {
  font-family: var(--font-dtv); font-size: 1.5rem; font-weight: 700;
  color: var(--dtv-blue-light); margin-bottom: 20px;
}
.privacy-box p {
  font-family: var(--font-inter); font-size: .88rem;
  color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 14px;
}
.privacy-box a { color: var(--dtv-blue-light); }
.privacy-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(1,115,174,.3);
  color: rgba(255,255,255,.5); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s;
}
.privacy-close:hover { background: var(--dtv-blue); color: var(--dtv-white); }

/* ============================================================
  WA BUTTON + POPUP
============================================================ */
.wa-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 8000;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: var(--dtv-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  animation: glow 2.5s ease-in-out infinite;
  transition: transform .25s;
}
.wa-btn:hover { transform: scale(1.1); }
.wa-popup {
  position: fixed; bottom: 88px; right: 24px; z-index: 7999;
  background: var(--bg-card); border: 1px solid rgba(1,115,174,.25);
  border-radius: 12px; padding: 18px;
  width: 230px; display: none; flex-direction: column; gap: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.wa-popup.open { display: flex; }
.wa-popup__close {
  position: absolute; top: 8px; right: 10px;
  color: rgba(255,255,255,.3); font-size: .85rem; transition: color .25s;
}
.wa-popup__close:hover { color: var(--dtv-yellow); }
.wa-popup a {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-inter); font-size: .84rem;
  color: rgba(255,255,255,.7);
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .25s;
}
.wa-popup a:last-child { border-bottom: none; }
.wa-popup a:hover { color: var(--dtv-yellow); }
.wa-popup a i { width: 16px; text-align: center; color: var(--dtv-blue-light); }

/* ====== OVERLAY ====== */
#promoModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 15, 30, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: overlayIn .35s ease both;
}
#promoModal.open { display: flex; }

@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modalUp {
  from { opacity: 0; transform: translateY(28px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)     scale(1); }
}

/* ====== MODAL BOX ====== */
.pm-box {
  display: flex;
  width: 100%;
  max-width: 820px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.65), 0 0 0 1px rgba(1,115,174,.25);
  animation: modalUp .45s cubic-bezier(0.22,1,0.36,1) .05s both;
  position: relative;
}

/* ====== BOTÓN CERRAR ====== */
.pm-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 10;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.pm-close:hover { background: rgba(255,255,255,.25); color: #fff; }

/* ====== COLUMNA IZQUIERDA (planes) ====== */
.pm-left {
  flex: 1 1 55%;
  background: linear-gradient(145deg, #0a1525 0%, #0d1e38 60%, #0a1a30 100%);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

/* fondo decorativo */
.pm-left::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,174,239,.12) 0%, transparent 70%);
  pointer-events: none;
}
.pm-left::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,198,12,.07) 0%, transparent 70%);
  pointer-events: none;
}

.pm-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.pm-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .80rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}
.pm-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pm-title .dtv-logo-text {
  color: #00aeef;
}

/* ====== GRID DE PLANES ====== */
.pm-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.pm-plan {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .3s cubic-bezier(0.22,1,0.36,1), box-shadow .3s, border-color .3s;
}
.pm-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}

.pm-plan__header {
  padding: 10px 14px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pm-plan__name {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
}

.pm-plan__body {
  background: rgba(255,255,255,.96);
  padding: 18px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.pm-plan__price {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: #0173ae;
}

.pm-plan__badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #555;
}

.pm-plan__badge img {
  height: 25px;
  width: auto;
  object-fit: contain;
}

.pm-logo {
  width: 170px;
  height: auto;
  object-fit: contain;
}

.pm-plan__cta-link {
  display: block;
  margin-top: 6px;
  padding: 7px 18px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: opacity .2s;
}
.pm-plan__cta-link:hover { opacity: .85; }

/* Plan Plata — azul */
.pm-plan--plata .pm-plan__header { background: #0173ae; }
.pm-plan--plata:hover            { border-color: #0173ae; }
.pm-plan--plata .pm-plan__cta-link { background: #0173ae; }

/* Plan Superlite — amarillo */
.pm-plan--superlite .pm-plan__header { background: #ffc60c; }
.pm-plan--superlite .pm-plan__name   { color: #191919; }
.pm-plan--superlite:hover            { border-color: #ffc60c; }
.pm-plan--superlite .pm-plan__price  { color: #191919; }
.pm-plan--superlite .pm-plan__cta-link { background: #ffc60c; color: #191919; }

/* ====== COLUMNA DERECHA (formulario) ====== */
.pm-right {
  flex: 0 0 270px;
  background: linear-gradient(160deg, #0e4a72 0%, #0a3659 100%);
  padding: 44px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

/* acento decorativo */
.pm-right::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,198,12,.1) 0%, transparent 65%);
  pointer-events: none;
}

.pm-right__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  text-align: center;
}
.pm-right__arrow {
  display: flex;
  justify-content: center;
  color: #ffc60c;
  font-size: 1rem;
  margin-top: -8px;
}

.pm-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.pm-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 0 14px;
  transition: border-color .25s;
}
.pm-input-wrap:focus-within {
  border-color: #ffc60c;
  background: rgba(255,255,255,.12);
}
.pm-input-wrap i {
  color: #ffc60c;
  font-size: .82rem;
  flex-shrink: 0;
}
.pm-input-prefix {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.15);
  padding-right: 10px;
}
.pm-input-wrap input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  width: 100%;
  padding: 14px 0 14px 10px;
}
.pm-input-wrap input::placeholder { color: rgba(255,255,255,.35); }

.pm-submit {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: #ffc60c;
  color: #191919;
  border: none;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.pm-submit:hover { background: #ffd83d; transform: translateY(-1px); }

.pm-success {
  display: none;
  background: rgba(255,198,12,.1);
  border: 1px solid rgba(255,198,12,.3);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  color: #ffc60c;
  text-align: center;
  line-height: 1.5;
}

.pm-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  color: rgba(255,255,255,.28);
  text-align: center;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ====== DEMO TRIGGER ====== */
.demo-btn {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  background: #0173ae;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 640px) {
  .pm-box { flex-direction: column; max-width: 420px; }
  .pm-right { flex: auto; padding: 32px 22px 28px; }
  .pm-plans { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pm-plan__price { font-size: 1.6rem; }
  .pm-left { padding: 32px 22px 28px; }
}