* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}


:root {
  --black: #0f172a;
  --gray-dark: #334155;
  --gray: #64748b;
  --gray-light: #e5e7eb;
  --white: #ffffff;

  --directv-blue: #0B5CD5;      /* CTA / acción */
  --directv-dark: #083b8a;      /* títulos fuertes */
  --directv-darker: #052e6b;    /* hover / contraste */
  --directv-soft: #eaf2ff;      /* fondos suaves */
  --directv-accent: #7cb3ff;    /* detalles */
  --directv-accent-cta: #ec7e00;    /* detalle de color */


  --text-dark: var(--black);
  --text-muted: var(--gray);

  --header-offset: 72px;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #ffffff;
  color: var(--text-dark);
  scroll-behavior: smooth;
  margin: auto;
  width: auto;
}

#home {
  padding-top: var(--header-offset);
  transition: padding-top 0.3s ease;
}

/* =====================================================
TIPOGRAFÍA
===================================================== */
h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.2;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
}

h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* =====================================================
SECCIONES GENERALES
===================================================== */
.section {
  padding: 80px 0;
}

.hero-content h1 {
  max-width: 620px;
}

.hero-content p {
  max-width: 520px;
}

/* =====================================================
NAVBAR
===================================================== */
.nav-directv {
  background: var(--directv-dark);
  padding: 14px 0; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-directv .nav-link {
  color: var(--white);
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

/* Línea celeste */
.nav-directv .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    #00b6ff 0%,
    #2f78ff 50%,
    #083b8af2 100%
  );
  border-radius: 4px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-directv .nav-link:hover::after,
.nav-directv .nav-link.active::after {
  width: 100%;
}

/* Navbar al scrollear */
.nav-directv.nav-scrolled {
  background: #083b8af2;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
}

/* =====================================================
BARRA DE NOTIFICACIÓN
===================================================== */

.notification-bar {
  width: 100%;
  background: rgba(11, 18, 32, 0.39);
  backdrop-filter: blur(10px);  
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 0;
  position: fixed;
  left: 0;
  top: var(--nav-height);
  z-index: 9999;
}

/* CONTENIDO */
.noti-content {
  display: flex;
  align-items: center;
  position: relative;
}

/* BOTONES CONTENEDOR */
.noti-buttons {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 900px;
}

/* BOTONES */
.noti-btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

/* BOTÓN PRINCIPAL */
.noti-btn.primary {
  background: var(--directv-soft);
  color: var(--directv-dark);
}

.noti-btn.primary:hover {
  background: var(--directv-soft);
  color: var(--directv-dark);
}

/* BOTÓN SECUNDARIO */
.noti-btn.secondary {
  background: transparent;
  border: 2px solid var(--directv-soft);
  color: var(--directv-soft);
}

.noti-btn.secondary:hover {
  background: rgba(0,114,206,0.1);
}

/* BOTÓN CERRAR */
.close-noti {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* =====================================================
HERO / CAROUSEL 
===================================================== */

.hero-section {
  position: relative;
  height: 100vh;
  padding: 0;
}

.carousel-item {
  position: relative;
  height: 100vh;
}
.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop por defecto */
.banner-desktop {
  display: block;
}

.banner-tablet,
.banner-mobile {
  display: none;
}

/* Contenido texto */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 680px;
  margin-left: 280px;
  margin-right: auto;
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* Botón */
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 42px;
  background: var(--directv-blue);
  color: #ffffff;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s ease, transform .15s ease;
}

/* =====================================================
CTA CONTACTO
===================================================== */

.cta-contacto .cta-sub {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.cta-contacto {
  background: var(--directv-soft);
  padding: 80px 0;
  text-align: center;
}

.cta-contacto h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--directv-dark);
  margin-bottom: 10px;
}

.cta-sub {
  font-size: 15px;
  color: var(--gray-dark);
}

/* FORM */
.cta-form {
  margin-bottom: 32px;
}

/* INPUT GROUP */
.cta-input-group {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
}

.cta-prefix {
  padding: 0 18px;
  font-weight: 600;
  color: var(--directv-dark);
  white-space: nowrap;
}

.cta-input-group input {
  flex: 1;
  border: none;
  padding: 18px 12px;
  font-size: 16px;
  color: var(--black);
}

.cta-input-group input:focus {
  outline: none;
}

/* BOTÓN PRINCIPAL */
.cta-btn {
  background: var(--directv-blue);
  color: var(--white);
  border: none;
  padding: 18px 32px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 40px;
  margin: 6px;
  cursor: pointer;
  transition: background .25s;
  white-space: nowrap;
}

.cta-btn:hover {
  background: var(--directv-blue);
}

/* BOTONES */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-btn-outline,
.cta-btn-solid {
  min-width: 260px;
  padding: 16px 26px;
  border-radius: 40px;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.3;
  transition: .25s;
}

/* Secundario */
.cta-btn-outline {
  border: 2px solid var(--directv-blue);
  color: var(--directv-blue);
  background: var(--white);
}

.cta-btn-outline:hover {
  background: var(--directv-blue);
  color: var(--white);
}

/* Primario */
.cta-btn-solid {
  background: #1ebe5d;
  color: var(--white);
}

.cta-btn-solid:hover {
  background: #088a3c;
}

/* =====================================================
ICONOS SERVICIOS
===================================================== */
.services-icons {
  padding: 70px 0;
}

.icon-box {
  padding: 20px;
}

.icon-box img {
  width: 48px;
  margin-bottom: 12px;
}

.icon-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

.icon-box p {
  font-size: .95rem;
  color: var(--text-muted);
}

/* =====================================================
  SECCIÓN ICONOS IMPORTANTES
===================================================== */

.seccion-servicios-premium {
  padding: 18px 0 10px;
  margin-top: auto;
  position: relative;
  z-index: 10;
  background: transparent;
}

.seccion-servicios-premium .container {
  max-width: 1100px;
}

.servicio-box {
  height: 90px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e6ebf2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  transition: all .25s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}

.servicio-box i {
  font-size: 22px;
  color: #0B5CD5;
}

.servicio-box span {
  font-size: 12.5px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
}

.servicio-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(11,92,213,.18);
  border-color: rgba(11,92,213,.25);
}

/* Grid más compacto */
.seccion-servicios-premium .row {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

/* =====================================================
PLANES
===================================================== */

.planes-section .title-section,
.planes-section .subtitle-section {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.planes-section {
  padding: 80px 0;
  text-align: center;
}

.planes-section .row {
  justify-content: center;
}

.title-section {
  font-size: 35px;
  font-weight: 800;
  color: var(--directv-blue);
  margin-bottom: 10px;
}

.planes-header {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.subtitle-section {
  font-size: 15px;
  color: var(--text-muted);
    line-height: 1.6;
}

/* =====================================================
GRID
===================================================== */

.planes-section .col-lg-3,
.planes-section .col-md-6 {
  display: flex;
  justify-content: center;
}

/* =====================================================
CARD
===================================================== */

.plan-card {
  width: 100%;
  max-width: 360px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 22px;
  padding: 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* =====================================================
BADGE SUPERIOR
===================================================== */

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff7a00; /* dorado */
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  z-index: 2;
  white-space: nowrap; 
}

/* =====================================================
CATEGORÍA
===================================================== */

.plan-category {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

/* =====================================================
TÍTULO Y PRECIO (JERARQUÍA FUERTE)
===================================================== */

.plan-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.plan-old-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.plan-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--directv-blue);
  line-height: 1;
}

.plan-price span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

/* =====================================================
DESCUENTO / PROMO
===================================================== */

.plan-discount {
  margin: 14px 0;
  font-size: 13px;
  font-weight: 600;
  color: #ff7a00;
}

/* =====================================================
ACCEDE A
===================================================== */

.plan-access {
  margin-top: 10px;
}

.plan-section-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.plan-access ul {
  padding-left: 18px;
  margin-bottom: 12px;
}

.plan-access li {
  font-size: 14px;
  margin-bottom: 4px;
}

/* =====================================================
INCLUYE (ICONOS)
===================================================== */

.plan-includes {
  margin-top: 6px;
  margin-bottom: 20px;
}

.plan-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.plan-icons img {
  width: 36px;
  height: auto;
}

/* =====================================================
BOTÓN CONTRATAR (JS COMPATIBLE)
===================================================== */

.btn-contratar {
  width: 100%;
  padding: 14px;
  background: var(--directv-blue);
  color: #ffffff;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s ease, transform .15s ease;
  margin-top: 12px;
}

.btn-contratar:hover {
  background: #005fae;
  transform: translateY(-1px);
}

/* =====================================================
MAS INFORMACIÓN (ACORDEÓN)
===================================================== */

.plan-more-toggle {
  background: transparent;
  border: none;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--directv-blue);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.plan-more-toggle .arrow {
  transition: transform .3s ease;
}

.plan-more-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
  display: none;
  margin-top: 12px;
  font-size: 14px;
  color: #444;
}

.plan-card.open .plan-more-content {
  display: block;
}

.plan-card.open .plan-more-toggle .arrow {
  transform: rotate(180deg);
}

/* =====================================================
TABS
===================================================== */

.nav-pills .nav-link {
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  border: 2px solid var(--directv-blue);
  color: var(--directv-blue);
  background: #ffffff;
  transition: all .25s ease;
}

.nav-pills .nav-link:hover {
  background: #eaf2ff;
}

.nav-pills .nav-link.active {
  background: var(--directv-blue);
  color: #ffffff;
  border-color: var(--directv-blue);
}

.nav-pills .nav-item {
  margin: 0 6px;
}

.nav-pills {
  gap: 10px;
}

/* =====================================================
SECCIÓN DGO
===================================================== */
#dgo {
  background: var(--directv-soft);
}

.dgo-box {
  padding: 28px 24px;
}

.dgo-box h2 {
  padding-top: 22px;
  font-size: 36px;
  font-weight: 700;
  color: var(--directv-dark);
  margin-bottom: 16px;
  max-width: 520px;
}

/* =====================================================
VIDEO / STREAMING
===================================================== */
.video-streaming-section {
  background: var(--directv-soft);
}

.video-box {
  display: flex;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.15);
}

.video-text {
  background: var(--directv-blue);
  color: #ffffff;
  padding: 60px 54px;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-text h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 18px;
}

.video-text p {
  font-size: 16px;
  line-height: 1.6;
  opacity: .9;
  margin-bottom: 28px;
}

.video-link {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.video-link span {
  font-size: 20px;
  transition: transform .25s ease;
}

.video-link:hover span {
  transform: translateX(6px);
}

.video-media {
  width: 60%;
  background: #000;
}

.video-media iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =====================================================
SECCIÓN DESTACADA – DSPORTS
===================================================== */

.feature-section {
  background: linear-gradient(
    180deg,
    #0b0f1a 0%,
    #0f172a 100%
  );
  padding: 100px 0;
}

.feature-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.feature-image img {
  width: 100%;
  display: block;
}

.feature-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  color: #ffffff;
}

.feature-card h2 {
  padding-top: 22px;
  font-size: 36px;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 22px;
  max-width: 520px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0;
  max-width: 520px;
}

/* =====================================================
FAQ
===================================================== */
.faq-section {
  padding: 120px 0;
}

.faq-title {
  font-size: 36px;
  font-weight: 800;
}

.faq-items {
  padding-left: 60px;
}

.faq-item {
  border-bottom: 1px solid #e0e6f7;
  padding: 20px 0;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  color: var(--gray-dark);
}

.faq-item.active .faq-content {
  max-height: 800px;
}

.faq-question {
  font-weight: 700;
  color: var(--black);
}

/* =====================================================
FORMULARIO SCROLL
===================================================== */

/* CONTENEDOR GENERAL */
.scroll-form {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent;
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  z-index: 9998;
}

/* Estado visible */
.scroll-form.show {
  transform: translateY(0);
}

/* CONTENEDOR CENTRADO */
.scroll-form-container {
  position: relative; 
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* CAJA PRINCIPAL (MODAL) */
.scroll-form-inner {
  display: flex;
  align-items: stretch;
  margin-bottom: 16px;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

/* BOTÓN CERRAR */
.scroll-form-close {
  position: absolute;
  top: -6px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  transition: background 0.2s ease, transform 0.15s ease;
}

.scroll-form-close:hover {
  background: rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}

/* BLOQUE IZQUIERDO */
.scroll-form-left {
  background: #004b98;
  color: #ffffff;
  padding: 32px 36px;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  line-height: 1.2;
  min-width: 340px;
}

/* BLOQUE DERECHO */
.scroll-form-right {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* FORM */
.scroll-form-box {
  display: flex;
  gap: 14px;
}

.scroll-form-input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #cdd6e2;
  border-radius: 10px;
  font-size: 15px;
}

.scroll-form-btn {
  background: #005993;
  color: #ffffff;
  border: none;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
}

.scroll-form-btn:hover {
  background: #003a70;
}

/* CHECKS */
.scroll-checks {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: #333;
}

.scroll-check {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* =====================================================
SECCIÓN CONTACTO
===================================================== */

.contact-section .row {
  align-items: flex-start;
}

.contact-section {
  background: #f6f9ff;
}

.contact-section .col-lg-6.text-center {
  text-align: left !important;
  padding-right: 40px;
}

.contact-section h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.contact-section p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 420px;
}

.contact-form {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cdd6e2;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  margin-bottom: 14px;
  font-family: inherit;
}

.contact-form textarea {
  resize: none;
  min-height: 110px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--directv-blue);
}

.contact-form .btn {
  margin-top: 6px;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  background: var(--directv-dark);
  border: none;
}

.contact-form .btn:hover {
  background: var(--directv-darker);
}

/* =====================================================
FOOTER
===================================================== */

.footer-directv {
  background: linear-gradient(
    180deg,
    #083b8a 0%,
    #052e6b 100%
  );
  padding: 35px 0 48px;
  position: auto;
}

/* Línea superior sutil */
.footer-directv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

/* Contenido */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

/* Logo */
.footer-logo {
  max-width: 170px;
  opacity: 0.95;
}

/* Texto legal */
.footer-directv p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* =====================================================
BOTONES FLOTANTES
===================================================== */
#wsp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 99999;
  transition: transform 0.2s ease, opacity 0.2s ease;
  box-shadow: none;
}

#wsp-btn img {
    width: 32px;
    height: auto;
}

#wsp-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

#contact-btn {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: var(--directv-dark);
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 700;
  border: none;
}

/* =====================================================
ANIMACIONES
===================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: .6s;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
ANIMACIONES CONTACTANOS
===================================================== */

@keyframes pulseContact {
  0% {
    box-shadow: 0 0 0 0 rgba(0,75,152,.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0,75,152,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0,75,152,0);
  }
}

#contact-btn {
  animation: pulseContact 2s infinite;
}

.plan-card,
.beneficio-card,
.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}