/* =========================================================================
   BEPLAY MX / BLACKPLAY TV — TEMA "STREAMING" (estilo Max/HBO)
   Hoja de estilos adicional. Se carga DESPUÉS de css/style.css para
   sobreescribir el look del template original sin tocar su lógica/JS.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Bebas+Neue&display=swap');

:root{
  --bg-0:#050308;
  --bg-1:#0b0712;
  --bg-2:#120a1f;
  --bg-card:#160d26;
  --purple-900:#3a0a66;
  --purple-700:#5b12a3;
  --purple-500:#8b2fe0;
  --purple-400:#a855f7;
  --purple-glow:#b968ff;
  --accent-grad: linear-gradient(120deg,#7c1fe0 0%,#b026ff 55%,#ff5fd8 100%);
  --text-0:#f5f3fa;
  --text-1:#c9c2da;
  --text-2:#8b81a3;
  --line:rgba(255,255,255,.08);
  --glass: rgba(255,255,255,.05);
  --shadow-purple: 0 20px 60px -15px rgba(139,47,224,.55);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

/* ---------- Base ---------- */
html, body{
  background:var(--bg-0) !important;
  color:var(--text-1);
  font-family:'Manrope', 'Muli', sans-serif;
  overflow-x:hidden;
}

body{
  background:
    radial-gradient(1100px 600px at 15% -10%, rgba(139,47,224,.28), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, rgba(176,38,255,.18), transparent 55%),
    var(--bg-0) !important;
  background-attachment: fixed;
}

a{ color:var(--purple-400); }
a:hover, a:focus{ color:var(--purple-glow); text-decoration:none; }

::selection{ background:var(--purple-500); color:#fff; }

/* Scrollbar */
::-webkit-scrollbar{ width:10px; height:10px; }
::-webkit-scrollbar-track{ background:var(--bg-0); }
::-webkit-scrollbar-thumb{ background:var(--purple-700); border-radius:10px; }

/* ---------- Preloader ---------- */
#preloder{ background:var(--bg-0) !important; }
#preloder .loader{
  border:3px solid rgba(255,255,255,.08) !important;
  border-top:3px solid var(--purple-400) !important;
  box-shadow:0 0 30px rgba(176,38,255,.45);
}

/* ---------- Generic section titles ---------- */
.section-title{ text-align:center; margin-bottom:50px; }
.section-title span{
  display:inline-block;
  font-family:'Manrope',sans-serif;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:13px;
  color:var(--purple-400);
  margin-bottom:10px;
}
.section-title h2{
  font-family:'Bebas Neue','Oswald',sans-serif;
  font-weight:400;
  letter-spacing:.03em;
  font-size:44px;
  color:var(--text-0);
  position:relative;
  display:inline-block;
  margin:0;
}
.section-title h2::after{
  content:"";
  display:block;
  width:70px; height:4px;
  margin:18px auto 0;
  border-radius:4px;
  background:var(--accent-grad);
  box-shadow:0 0 18px rgba(176,38,255,.6);
}

/* ---------- Buttons ---------- */
.primary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:'Manrope',sans-serif;
  font-weight:700;
  font-size:14px;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#fff !important;
  background:var(--accent-grad) !important;
  border:none;
  padding:16px 34px;
  border-radius:100px;
  box-shadow:0 12px 30px -8px rgba(176,38,255,.65);
  transition:transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.primary-btn:hover{
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 18px 40px -8px rgba(176,38,255,.85);
  filter:brightness(1.08);
  color:#fff !important;
}
.primary-btn.pricing-btn{
  background:transparent !important;
  border:1.5px solid var(--purple-500);
  box-shadow:none;
}
.primary-btn.pricing-btn:hover{
  background:var(--accent-grad) !important;
  border-color:transparent;
  box-shadow:0 14px 30px -10px rgba(176,38,255,.7);
}

/* ================================================================
   HERO — cinemático, tipo carátula de plataforma de streaming
   ================================================================ */
.hero-section{ position:relative; background:var(--bg-0); }
.hero-section .hs-slider,
.hero-section .owl-carousel,
.hero-section .owl-stage-outer,
.hero-section .owl-stage,
.hero-section .owl-item,
.hero-section .hs-slider .hs-item,
.hero-section .hs-item{
  height:auto !important;
  max-height:none !important;
}
.hero-section .hs-slider .hs-item,
.hero-section .hs-item{
  position:relative;
  min-height:clamp(400px, 48vh, 500px) !important;
  display:flex !important;
  align-items:center !important;
  padding:56px 0 28px !important;
}
.hero-section .hs-item::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(5,3,8,.97) 0%, rgba(5,3,8,.75) 38%, rgba(5,3,8,.25) 70%, rgba(5,3,8,.85) 100%),
    linear-gradient(to top, rgba(5,3,8,1) 0%, rgba(5,3,8,0) 30%, rgba(5,3,8,0) 70%, rgba(5,3,8,.9) 100%);
  z-index:1;
}
.hero-section .hs-item .container{ position:relative; z-index:2; }

.hi-text{ max-width:640px; }
.hi-text span{
  display:inline-block;
  font-family:'Manrope',sans-serif;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:13px;
  color:var(--purple-glow);
  padding:6px 16px;
  border:1px solid rgba(185,104,255,.4);
  border-radius:100px;
  background:rgba(139,47,224,.12);
  margin-bottom:18px;
}
.hi-text h1{
  font-family:'Bebas Neue','Oswald',sans-serif;
  font-weight:400;
  font-size:54px;
  line-height:1.05;
  letter-spacing:.01em;
  color:#fff;
  text-shadow:0 4px 40px rgba(0,0,0,.6);
  margin-bottom:20px;
}
.hi-text h1 strong{
  background:var(--accent-grad);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  font-weight:400;
}
.hi-text .primary-btn{ margin-right:14px; margin-bottom:12px; }

@media (max-width:991px){
  .hero-section .hs-slider .hs-item,
  .hero-section .hs-item{ min-height:clamp(380px, 50vh, 460px) !important; padding:50px 0 26px !important; }
  .hi-text h1{ font-size:44px; }
}
@media (max-width:575px){
  .hero-section .hs-slider .hs-item,
  .hero-section .hs-item{ min-height:clamp(360px, 54vh, 420px) !important; padding:44px 0 20px !important; }
  .hi-text span{ font-size:11px; padding:5px 12px; }
  .hi-text h1{ font-size:32px; margin-bottom:16px; }
  .hi-text .primary-btn{ width:100%; margin-right:0; padding:14px 20px; }
}

/* Owl dots/nav on dark hero */
.hero-section .owl-dots{ position:absolute; bottom:34px; left:0; right:0; text-align:center; z-index:3; }
.hero-section .owl-dot span{ background:rgba(255,255,255,.25) !important; }
.hero-section .owl-dot.active span{ background:var(--purple-400) !important; box-shadow:0 0 10px var(--purple-glow); }

/* ================================================================
   DISPOSITIVOS — chips tipo "disponible en"
   ================================================================ */
.choseus-section{ background:var(--bg-0); padding:90px 0; }
.choseus-section .cs-item{
  text-align:center;
  background:var(--glass);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:36px 18px 28px;
  transition:transform .3s ease, border-color .3s ease, background .3s ease;
  margin-bottom:24px;
}
.choseus-section .cs-item:hover{
  transform:translateY(-8px);
  border-color:rgba(185,104,255,.45);
  background:rgba(139,47,224,.08);
}
.choseus-section .cs-item p img{
  max-height:56px;
  width:auto;
  margin:0 auto 18px;
  filter:brightness(0) invert(1) drop-shadow(0 0 12px rgba(185,104,255,.35));
  opacity:.92;
}
.choseus-section .cs-item h4{
  font-family:'Manrope',sans-serif;
  font-weight:700;
  letter-spacing:.08em;
  font-size:15px;
  color:var(--text-0);
  margin:0;
}

/* ================================================================
   CATÁLOGO / CLASSES SECTION → estilo filas de streaming
   ================================================================ */
.classes-section{ background:var(--bg-0); padding:90px 0 60px; }
.classes-section .class-item{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  margin-bottom:30px;
  background:var(--bg-card);
  box-shadow:0 10px 30px -12px rgba(0,0,0,.7);
  transition:transform .35s ease, box-shadow .35s ease;
}
.classes-section .class-item:hover{
  transform:translateY(-6px) scale(1.015);
  box-shadow:var(--shadow-purple);
}
.classes-section .ci-pic{
  position:relative;
  overflow:hidden;
  aspect-ratio:16/10;
}
.classes-section .ci-pic img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease, filter .5s ease;
  filter:saturate(1.05) contrast(1.03);
}
.classes-section .class-item:hover .ci-pic img{
  transform:scale(1.08);
}
.classes-section .ci-pic::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(5,3,8,.96) 0%, rgba(5,3,8,.15) 55%, rgba(5,3,8,0) 100%);
}
.classes-section .ci-text{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:22px 24px 20px;
  z-index:2;
}
.classes-section .ci-text span{
  display:block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--purple-glow);
  margin-bottom:6px;
}
.classes-section .ci-text h5,
.classes-section .ci-text h4{
  font-family:'Bebas Neue','Oswald',sans-serif;
  font-weight:400;
  letter-spacing:.02em;
  font-size:28px;
  color:#fff;
  margin:0 0 4px;
}
.classes-section .ci-text a{
  position:absolute;
  right:22px; bottom:20px;
  width:42px; height:42px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--accent-grad);
  color:#fff !important;
  opacity:0;
  transform:translateX(8px);
  transition:opacity .3s ease, transform .3s ease;
  box-shadow:0 8px 20px -6px rgba(176,38,255,.7);
}
.classes-section .class-item:hover .ci-text a{
  opacity:1;
  transform:translateX(0);
}

/* ================================================================
   PRECIOS — cards premium tipo suscripción streaming
   ================================================================ */
.pricing-section{ background:var(--bg-0); padding:40px 0 100px; }
.pricing-section .ps-item{
  position:relative;
  background:linear-gradient(180deg, var(--bg-card) 0%, var(--bg-1) 100%);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:44px 34px 36px;
  text-align:center;
  margin-bottom:30px;
  transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.pricing-section .ps-item:hover{
  transform:translateY(-8px);
  border-color:rgba(185,104,255,.5);
  box-shadow:var(--shadow-purple);
}
.pricing-section .col-lg-4:nth-child(2) .ps-item{
  border-color:var(--purple-500);
  box-shadow:0 0 0 1px rgba(139,47,224,.5), var(--shadow-purple);
}
.pricing-section .col-lg-4:nth-child(2) .ps-item::before{
  content:"MÁS POPULAR";
  position:absolute;
  top:-14px; left:50%;
  transform:translateX(-50%);
  background:var(--accent-grad);
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  padding:6px 18px;
  border-radius:100px;
  box-shadow:0 6px 18px -4px rgba(176,38,255,.7);
}
.pricing-section .ps-item h3{
  font-family:'Manrope',sans-serif;
  font-weight:700;
  font-size:15px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--text-2);
  margin-bottom:18px;
}
.pricing-section .pi-price{ margin-bottom:26px; }
.pricing-section .pi-price h2{
  font-family:'Bebas Neue','Oswald',sans-serif;
  font-weight:400;
  font-size:56px;
  color:#fff;
  margin:0;
  line-height:1;
}
.pricing-section .pi-price h2::before{ content:"$"; font-size:26px; vertical-align:top; margin-right:4px; color:var(--purple-glow); }
.pricing-section .pi-price span{
  display:block;
  margin-top:8px;
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--text-2);
}
.pricing-section .ps-item ul{ list-style:none; padding:0; margin:0 0 30px; text-align:left; }
.pricing-section .ps-item ul li{
  position:relative;
  padding:9px 0 9px 28px;
  color:var(--text-1);
  font-size:14.5px;
  border-bottom:1px solid var(--line);
}
.pricing-section .ps-item ul li:last-child{ border-bottom:none; }
.pricing-section .ps-item ul li::before{
  content:"\f00c";
  font-family:"FontAwesome";
  position:absolute; left:0; top:9px;
  color:var(--purple-400);
  font-size:13px;
}
.pricing-section .ps-item .thumb-icon{ display:none; }

/* Demo CTA section (segundo .pricing-section, sin cards) */
.pricing-section.spad .section-title h2{ font-size:36px; }

/* ================================================================
   HEADER / NAV — clases reales de header-view.php
   ================================================================ */
.header-section{
  position:relative;
  z-index:50;
  background:rgba(5,3,8,.72) !important;
  backdrop-filter:blur(16px) saturate(150%);
  -webkit-backdrop-filter:blur(16px) saturate(150%);
  border-bottom:1px solid rgba(255,255,255,.07);
  padding:6px 0;
}
.header-section .logo img{
  filter:drop-shadow(0 0 14px rgba(185,104,255,.35));
}

/* Menú principal (desktop) */
.header-section .nav-menu{ display:flex; justify-content:center; }
.header-section .nav-menu > ul{ display:flex; align-items:center; list-style:none; margin:0; padding:0; }
.header-section .nav-menu > ul > li{ position:relative; margin:0 4px; }
.header-section .nav-menu > ul > li > a{
  display:inline-block;
  padding:26px 14px;
  font-family:'Manrope',sans-serif;
  font-weight:600;
  font-size:13.5px;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--text-1) !important;
  position:relative;
  transition:color .25s ease;
}
.header-section .nav-menu > ul > li > a::after{
  content:"";
  position:absolute;
  left:14px; right:14px; bottom:20px;
  height:2px;
  background:var(--accent-grad);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .25s ease;
}
.header-section .nav-menu > ul > li:hover > a,
.header-section .nav-menu > ul > li.active > a{
  color:#fff !important;
}
.header-section .nav-menu > ul > li:hover > a::after,
.header-section .nav-menu > ul > li.active > a::after{
  transform:scaleX(1);
}

/* Submenú (Clientes / Resellers) */
.header-section .nav-menu ul.dropdown{
  background:var(--bg-card) !important;
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  box-shadow:0 20px 45px -12px rgba(0,0,0,.75);
  padding:8px 0;
  overflow:hidden;
}
.header-section .nav-menu ul.dropdown li a{
  padding:10px 22px !important;
  font-size:13px;
  font-weight:500;
  text-transform:none;
  letter-spacing:0;
  color:var(--text-1) !important;
  display:block;
}
.header-section .nav-menu ul.dropdown li a::after{ display:none; }
.header-section .nav-menu ul.dropdown li a:hover{
  color:#fff !important;
  background:rgba(139,47,224,.18);
}

/* Botón demo dentro del header (tiene estilos inline en el HTML) */
.header-section .primary-btn{
  border-radius:100px !important;
  box-shadow:0 8px 22px -6px rgba(176,38,255,.65) !important;
  letter-spacing:.06em;
}

/* Íconos sociales del header */
.header-section .to-social{ display:flex; align-items:center; justify-content:flex-end; gap:8px; }
.header-section .to-social a{
  width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background:var(--glass);
  border:1px solid var(--line);
  color:var(--text-1) !important;
  font-size:14px;
  transition:all .25s ease;
}
.header-section .to-social a:hover{
  color:#fff !important;
  background:var(--accent-grad);
  border-color:transparent;
  transform:translateY(-2px);
  box-shadow:0 8px 18px -6px rgba(176,38,255,.7);
}

/* Botón hamburguesa (mobile) */
.header-section .canvas-open{ color:var(--text-0); }
.header-section .canvas-open:hover{ color:var(--purple-glow); }

/* ---------- Menú offcanvas (mobile) ---------- */
.offcanvas-menu-overlay{
  background:rgba(3,2,6,.7) !important;
  backdrop-filter:blur(4px);
}
.offcanvas-menu-wrapper{
  background:var(--bg-1) !important;
  border-left:1px solid var(--line);
  box-shadow:-20px 0 60px -20px rgba(0,0,0,.8);
}
.offcanvas-menu-wrapper .canvas-close,
.offcanvas-menu-wrapper .canvas-search{
  color:var(--text-1);
}
.offcanvas-menu-wrapper .canvas-close:hover,
.offcanvas-menu-wrapper .canvas-search:hover{
  color:var(--purple-glow);
}
.canvas-menu.mobile-menu > ul > li > a{
  color:var(--text-0) !important;
  font-family:'Manrope',sans-serif;
  font-weight:600;
  letter-spacing:.03em;
  border-bottom:1px solid var(--line);
}
.canvas-menu.mobile-menu > ul > li > a.active,
.canvas-menu.mobile-menu > ul > li > a:hover{
  color:var(--purple-glow) !important;
}
.canvas-menu .dropdown{
  background:rgba(255,255,255,.03);
}
.canvas-menu .dropdown li a{
  color:var(--text-2) !important;
}
.canvas-menu .dropdown li a:hover{
  color:var(--purple-glow) !important;
}
.offcanvas-menu-wrapper .canvas-social a{
  color:var(--text-1) !important;
  transition:color .25s ease;
}
.offcanvas-menu-wrapper .canvas-social a:hover{
  color:var(--purple-glow) !important;
}

/* ================================================================
   FOOTER — clases reales de footer-view.php
   ================================================================ */
.footer-section{
  background:linear-gradient(180deg, var(--bg-0) 0%, #020103 100%) !important;
  border-top:1px solid var(--line);
  color:var(--text-2);
  padding:80px 0 30px;
}
.footer-section a{ color:var(--text-1); }
.footer-section a:hover{ color:var(--purple-glow) !important; text-decoration:none; }

/* Columna "Acerca de" */
.footer-section .fa-logo img{
  filter:drop-shadow(0 0 14px rgba(185,104,255,.3));
  margin-bottom:20px;
}
.footer-section .fs-about p{
  color:var(--text-2);
  font-size:14px;
  line-height:1.8;
  margin-bottom:22px;
}
.footer-section .fs-about img[width="150"]:not(.fa-logo img){
  border:4px solid var(--purple-500) !important;
  border-radius:12px;
  box-shadow:0 10px 30px -10px rgba(139,47,224,.5);
}
.footer-section .fa-social{
  display:flex;
  gap:12px;
  margin-top:22px;
  font-size:20px !important;
}
.footer-section .fa-social a{
  width:46px; height:46px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background:var(--glass);
  border:1px solid var(--line);
  color:var(--text-0) !important;
  transition:all .25s ease;
}
.footer-section .fa-social a:hover{
  background:var(--accent-grad);
  border-color:transparent;
  color:#fff !important;
  transform:translateY(-3px);
  box-shadow:0 10px 22px -6px rgba(176,38,255,.7);
}

/* Columnas de enlaces */
.footer-section .fs-widget h4{
  color:#fff;
  font-family:'Manrope',sans-serif;
  font-weight:700;
  font-size:15px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:24px;
  position:relative;
  padding-bottom:14px;
}
.footer-section .fs-widget h4::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:36px; height:3px;
  border-radius:3px;
  background:var(--accent-grad);
}
.footer-section .fs-widget ul{ list-style:none; margin:0; padding:0; }
.footer-section .fs-widget ul li{ margin-bottom:12px; }
.footer-section .fs-widget ul li a{
  font-size:14px;
  color:var(--text-2);
  transition:color .2s ease, padding-left .2s ease;
}
.footer-section .fs-widget ul li a::before{
  content:"›";
  display:inline-block;
  width:14px;
  color:var(--purple-400);
}
.footer-section .fs-widget ul li a:hover{
  color:var(--purple-glow) !important;
  padding-left:2px;
}

/* Sello GoDaddy: fondo claro para que no se pierda sobre lo oscuro */
#siteseal{
  display:inline-block;
  background:#fff;
  padding:6px;
  border-radius:8px;
  line-height:0;
}

/* Copyright */
.footer-section .copyright-text{
  margin-top:50px;
  padding-top:26px;
  border-top:1px solid var(--line);
}
.footer-section .copyright-text p{
  font-size:13px;
  color:var(--text-2);
  margin:0;
}
.footer-section .copyright-text a{
  color:var(--purple-400);
  font-weight:600;
}

/* ================================================================
   Utilidades varias
   ================================================================ */
.spad{ padding-top:90px; padding-bottom:90px; }
img{ max-width:100%; }