
/* Hero Section */
.hero {
/*   background-image: url("../img/portada/temporadas/portada-semana.jpg"); */
  background-size: cover;
  background-position: center;
  background: linear-gradient(135deg, #005b9f 0%, #0077cc 100%);
  color: white;
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}

/* Canvas de partículas en red */
#networkCanvas {
  opacity: 60%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-logo {
  max-width: 25rem;
  width: 100%;
  height: auto;
}

.hero-text h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-text h2 {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
  color: #e58e21;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  margin-bottom: 1.5rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease-out;
}

.hero-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  animation: float 3s ease-in-out infinite;
}

/* Contenedor principal de la orbita */
.hero-image {
  mask-image: linear-gradient(to top, transparent 0%, rgb(0, 119, 204) 5%);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  position: relative; /* Asegura que los iconos se posicionen respecto a la imagen */
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-orbit-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 15rem;
  left: 5.5rem;
  pointer-events: none;
}

.orbit-item {
  position: absolute;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--color-principal);
  font-size: 1.5rem;
  /* Animación principal */
  animation: orbit-animation 15s linear infinite;
}

.orbit-item:nth-child(1) {
  color: #1877f2;
  animation-delay: 0s;
}
.orbit-item:nth-child(2) {
  color: #e4405f;
  animation-delay: -2.14s;
}
.orbit-item:nth-child(3) {
  color: #25d366;
  animation-delay: -4.28s;
}
.orbit-item:nth-child(4) {
  color: #000000;
  animation-delay: -6.42s;
}
.orbit-item:nth-child(5) {
  color: #ff0000;
  animation-delay: -8.56s;
}
.orbit-item:nth-child(6) {
  color: #ff0505;
  animation-delay: -10.7s;
}
.orbit-item:nth-child(7) {
  color: #1db954;
  animation-delay: -12.84s;
}

@keyframes orbit-animation {
  0% {
    transform: rotate(0deg) translateX(100px) rotate(0deg) scale(1);
    z-index: 10;
    opacity: 1;
  }
  25% {
    transform: rotate(90deg) translateX(100px) rotate(-90deg) scale(0.7);
    z-index: -1; /* Pasa por detrás */
    opacity: 0.8;
  }
  50% {
    transform: rotate(180deg) translateX(100px) rotate(-180deg) scale(0.5);
    z-index: -1;
    opacity: 0.6;
  }
  75% {
    transform: rotate(270deg) translateX(100px) rotate(-270deg) scale(0.8);
    z-index: 10; /* Vuelve al frente */
    opacity: 0.9;
  }
  100% {
    transform: rotate(360deg) translateX(100px) rotate(-360deg) scale(1);
    z-index: 10;
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .orbit-item {
    width: 25px;
    height: 25px;
    font-size: 1rem;
  }
  @keyframes orbit-animation {
    0% {
      transform: rotate(0deg) translateX(70px) rotate(0deg) scale(1);
      z-index: 10;
      opacity: 1;
    }
    25% {
      transform: rotate(90deg) translateX(40px) rotate(-90deg) scale(0.7);
      z-index: -1; /* Pasa por detrás */
      opacity: 0.8;
    }
    50% {
      transform: rotate(180deg) translateX(30px) rotate(-180deg) scale(0.5);
      z-index: -1;
      opacity: 0.6;
    }
    75% {
      transform: rotate(270deg) translateX(40px) translateY(-10px)
        rotate(-270deg) scale(0.8);
      z-index: 10; /* Vuelve al frente */
      opacity: 0.9;
    }
    100% {
      transform: rotate(360deg) translateX(70px) scale(1);
      z-index: 10;
      opacity: 1;
    }
  }
  .social-orbit-container {
    top: 14rem;
    left: 8rem;
  }
}

.beneficios {
  background-color: #f8f9fa;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.beneficio-card {
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animaciones de scroll */
.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}


/* --- GRID 2x2 PARA INTERNET (Escritorio) --- */
/* Esto permite que los 4 planes se vean ordenados en el lado derecho */
.internet-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columnas */
    gap: 15px;
    width: 100%;
}

/* --- ESTILOS ESPECÍFICOS DE INTERNET (TEXTO) --- */
.card-speed-header {
    margin-bottom: 5px;
    line-height: 1;
}

.speed-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    /* Efecto de degradado sutil en el texto */
    background: -webkit-linear-gradient(#fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 91, 159, 0.5); /* Glow azul */
}

.speed-unit {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #E58E21; /* Naranja corporativo */
    letter-spacing: 2px;
}

.glass-plan-title {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    font-weight: 500;
}

/* Lista de características minimalista para que quepa en la grid */
.glass-mini-features {
    list-style: none;
    padding: 0;
    margin: 10px 0 15px 0;
    text-align: left;
    font-size: 0.85rem;
    color: #ccc;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 10px;
}

.glass-mini-features li {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.glass-mini-features i {
    color: #E58E21;
    font-size: 0.8rem;
}

/* --- RESPONSIVE INTERNET --- */
@media (max-width: 991px) {
    .internet-grid-2x2 {
        /* En celular, volvemos a una sola columna para que sean grandes */
        grid-template-columns: 1fr; 
        width: 80%; /* Respetamos el 80% de ancho que pediste */
        margin: 0 auto;
        gap: 20px;
    }
    
    .speed-number {
        font-size: 3rem; /* Números más grandes en celular */
    }
}

/* --- 1. EL CONTENEDOR MAESTRO (ROMPE EL FONDO BLANCO) --- */
.tv-section-immersive {
    position: relative;
    width: 100vw;           /* Ancho de toda la ventana */
    margin-left: -50vw;     /* Centrado agresivo */
    left: 50%;
    min-height: 600px;
    overflow: hidden;
    padding: 60px 0;
    /* Importante: Color de fondo oscuro por si el video tarda en cargar */
    background-color: #0a0a12; 
}

/* --- 2. CAPA DE VIDEO (FONDO) --- */
.video-background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Al fondo */
}

.video-background-layer video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cubre todo sin deformar */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Degradado oscuro para que se lea el texto blanco */
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

/* --- 3. CAPA DE CONTENIDO (ENCIMA) --- */
.content-layer {
    position: relative;
    z-index: 2; /* Encima del video */
}

.tv-layout-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* --- LADO IZQUIERDO (TITULO) --- */
.tv-info-side {
    width: 45%;
    text-align: left;
    color: white;
}

.neon-title {
    font-size: 5rem;
    line-height: 0.9;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    /* Efecto Neon Azul Solicitado */
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #335AA6,
        0 0 40px #335AA6;
}

/* Contenedor para los dos bots lado a lado */
.bots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.deco-image-container img {
    max-height: 150px; /* Tamaño de la imagen al lado del titulo */
    margin-bottom: 0;
    filter: drop-shadow(0 0 15px rgba(51, 90, 166, 0.6));
}


.tv-slogan {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 400px;
}

/* --- LADO DERECHO (CARDS) --- */
.tv-cards-side {
    width: 50%; /* 50% en escritorio */
}

.cards-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

/* --- CARDS V2 (VISIBLES EN FONDO OSCURO) --- */
.glass-card-v2 {
    flex: 1;
    /* Fondo más oscuro y visible por defecto */
    background: rgba(30, 30, 40, 0.6); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 20px 10px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* HOVER: Se oscurece más para resaltar */
.glass-card-v2:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: #335AA6;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(51, 90, 166, 0.4);
}

.card-header-glass i {
    font-size: 2rem;
    color: #E58E21;
    display: block;
    margin-bottom: 5px;
}
.card-header-glass span {
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
}

.card-price-glass {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 10px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.mini-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 15px;
}

.mini-channels-grid img {
    width: 100%;
    height: 22px;
    object-fit: contain;
    background: #fff; /* Fondo blanco para logos */
    border-radius: 3px;
    padding: 2px;
}

.btn-action {
    display: block;
    padding: 6px 0;
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}
.btn-action.primary, .btn-action:hover {
    background: #335AA6;
    border-color: #335AA6;
    box-shadow: 0 0 10px rgba(51, 90, 166, 0.5);
}

/* Destacado */
.featured-glass {
    border-color: #E58E21;
    background: rgba(50, 50, 60, 0.7);
    transform: scale(1.05); /* Un poco más grande por defecto */
}
.badge-top {
    background: #E58E21;
    color: white;
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 5px;
}

/* --- ESTILOS EXCLUSIVOS DUO --- */

/* Encabezado especial para Dúo (Velocidad + TV) */
.duo-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.duo-card-header .speed-part {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 15px rgba(229, 142, 33, 0.4); /* Glow Naranja */
    line-height: 1;
}

.duo-card-header .unit {
    font-size: 0.9rem;
    font-weight: normal;
    color: #ccc;
}

.duo-card-header .plus-part {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E58E21; /* Naranja corporativo */
    background: rgba(229, 142, 33, 0.1);
    padding: 2px 8px;
    border-radius: 8px;
    border: 1px solid rgba(229, 142, 33, 0.3);
}

/* Fila de iconos descriptivos (Wifi / TV) */
.duo-icons-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #eee;
}

.duo-icons-row span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.duo-icons-row i {
    color: #E58E21;
}

/* Badge promocional al lado izquierdo */
.duo-badge-promo {
    display: inline-block;
    margin-top: 20px;
    background: rgba(229, 142, 33, 0.2);
    border: 1px solid #E58E21;
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    animation: pulse-promo 2s infinite;
}

@keyframes pulse-promo {
    0% { box-shadow: 0 0 0 0 rgba(229, 142, 33, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(229, 142, 33, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 142, 33, 0); }
}

/* Ajuste responsive para la grid duo */
@media (max-width: 991px) {
    /* Reutiliza la misma lógica que internet */
    .duo-card-header .speed-part {
        font-size: 2.5rem;
    }
}

/* --- RESPONSIVE (CELULAR) --- */
@media (max-width: 991px) {
    .tv-layout-split {
        flex-direction: column; /* Apilar verticalmente */
        text-align: center;
    }
    
    .tv-info-side {
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .neon-title { font-size: 3.5rem; }
    
    .tv-cards-side {
        width: 100%; /* Ocupa todo el ancho disponible */
    }
    
    .cards-wrapper {
        flex-direction: column; /* Cards una debajo de otra */
        width: 80%;             /* REQUERIMIENTO: 80% ancho en celular */
        margin: 0 auto;         /* Centradas */
        gap: 20px;
    }
    
    .glass-card-v2 {
        width: 100%;
    }
    
    .featured-glass { transform: none; } /* Quitar zoom en móvil */
}
/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #005b9f 0%, #0077cc 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}
/* Estilos para el Menú de Pestañas */
.tabs-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 25px;
  border: 2px solid #005b9f;
  background: transparent;
  color: #005b9f;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-btn i {
  font-size: 1.1rem;
}

.tab-btn:hover {
  background: rgba(0, 91, 159, 0.1);
}

.tab-btn.active {
  background: #005b9f;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 91, 159, 0.3);
}

/* Control de visibilidad de los paneles */
.tab-pane {
  display: none; /* Oculto por defecto */
  animation: fadeIn 0.5s ease-out;
}

.tab-pane.active {
  display: block; /* Solo el activo se muestra */
}

.plan-card-iptv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 91, 159, 0.1);
  transition: all 0.3s ease;
}

.plan-iptv-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-iptv-channels {
  overflow-y: auto;
  max-height: 500px;
  padding-right: 10px;
}

.channels-by-category {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.channel-category h5 {
  color: #005b9f;
  margin-bottom: 10px;
  font-size: 1.1rem;
  border-bottom: 2px solid #e58e21;
  padding-bottom: 5px;
}

.channel-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
  gap: 15px;
}

.channel-logos img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  padding: 5px;
  background: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.channel-logos img:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Scrollbar styling */
.plan-iptv-channels::-webkit-scrollbar {
  width: 6px;
}

.plan-iptv-channels::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.plan-iptv-channels::-webkit-scrollbar-thumb {
  background: #e58e21;
  border-radius: 10px;
}

.plan-iptv-channels::-webkit-scrollbar-thumb:hover {
  background: #d87d1a;
}

.internet-dedicado {
  padding: 0;
  position: relative;
}

.dedicado-bg-container {
  background-image: url("../img/bg-empresas.png");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
}

.dedicado-bg-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #005a9f96;
  z-index: 1;
}

.dedicado-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 65%;
  background-color: rgba(255, 140, 0, 0.644);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0% 100%);
  padding: 60px 80px 60px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  z-index: 2;
}

.dedicado-content-overlay h2 {
  color: white;
  font-weight: 700;
  font-size: 2.5rem;
}

.dedicado-description {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 30px;
  max-width: 90%;
}

.dedicado-features {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.dedicado-features li {
  padding: 12px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.dedicado-features i {
  font-size: 1.4rem;
  color: white;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.3));
}

.dedicado-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-custom-white {
  background-color: white;
  color: #e58e21;
  font-weight: 600;
  border: 2px solid white;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-custom-white:hover {
  background-color: transparent;
  color: white;
}

.btn-custom-blue {
  background-color: #005b9f;
  color: white;
  font-weight: 600;
  border: 2px solid #005b9f;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-custom-blue:hover {
  background-color: #004a80;
  border-color: #004a80;
  color: white;
}

@media (max-width: 992px) {
  .dedicado-bg-container {
    min-height: auto;
  }

  .dedicado-content-overlay {
    position: relative;
    width: 100%;
    clip-path: none;
    padding: 60px 30px;
    background-color: rgba(229, 142, 33, 0.85);
  }

  .dedicado-description {
    max-width: 100%;
  }
}

/* =========================================
   Responsive Design (Móviles y Tablets)
   ========================================= */
@media (max-width: 992px) {
  .dedicado-layout {
    /* En tablets y móviles, pasamos a una sola columna */
    grid-template-columns: 1fr;
  }

  .dedicado-overlay-container {
    padding: 60px 30px;
    /* Quitamos el ángulo en pantallas pequeñas para aprovechar el espacio */
    clip-path: none;
    background-color: rgba(229, 142, 33, 0.85); /* Un poco más opaco en móvil */
    width: 100%;
  }

  .dedicado-spacer {
    display: none; /* Ocultamos el espaciador */
  }

  .dedicado-description {
    max-width: 100%;
  }

  .internet-dedicado {
    /* En móviles a veces background-attachment: fixed da problemas de rendimiento,
           puedes quitarlo si lo notas lento en el celular */
    /* background-attachment: scroll; */
    align-items: flex-start;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content,
  .dedicado-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-img {
    max-width: 350px;
    margin-top: 20px;
  }

  .plan-velocidad {
    font-size: 2.5rem;
  }

  .planes-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }
  .slide-in-left,
  .slide-in-right {
    transform: translateY(30px) !important;
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }
  .slide-in-left.visible,
  .slide-in-right.visible {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
}

@media (max-width: 480px) {
/*   .hero {
    background-image: url("../img/portada/temporadas/portada-res-semana.jpg");
  } */
  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-img {
    max-width: 280px;
  }
}

/* Internet Satelital Section */
.satelital-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.satelital-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.satelital-image {
  position: relative;
  /* Frame removed as requested */
}

.satelital-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.satelital-image:hover img {
  transform: scale(1.05);
}

.satelital-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #005b9f;
}

.satelital-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.satelital-features {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.satelital-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  text-align: left;
}

.satelital-features i {
  color: #e58e21;
  font-size: 1.4rem;
}

.satelital-badge {
  background-color: #e58e21;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

/* Autorizados Section */
.autorizados-section {
  background-color: #f8f9fa;
  padding: 60px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.autorizados-section h3 {
  color: #005b9f;
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 40px;
}

.autorizados-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.autorizado-item img {
  height: 70px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
  object-fit: contain;
}

.autorizado-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .satelital-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .satelital-features li {
    justify-content: flex-start;
  }

  .satelital-image {
    order: -1;
  }

  .autorizados-grid {
    gap: 40px;
  }

  .autorizado-item img {
    height: 50px;
  }
}

/* Media queries para logo del hero */
@media (max-width: 768px) {
  .hero-logo {
    max-width: 18rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text {
    order: 2;
  }
  
  .hero-image {
    order: 1;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    max-width: 14rem;
  }
}