* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #0B0B0F;
    color: #ffffff;
}

/* GENERAL */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

/* NAVBAR */
header {
    border-bottom: 1px solid #1A1A1D;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
}

/* Logo Navbar */
.logo {
    width: 100%;
    display: flex;
    justify-content: center;
}


.logo img {
    width: 85%;
    max-width: 300px;
    height: auto;
}

@media (max-width: 768px) {
    .logo img {
        width: 90%;
        max-width: none;
    }
}

@media (max-width: 1024px) {
    .nav {
        padding: 6px 0;
    }
}

/* BOTONES */
.btn {
    background: #2D6BFF;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    box-shadow: 0 0 12px #2D6BFF;
}

.btn-primary {
    background: #2D6BFF;
    padding: 14px 32px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 0 20px #2D6BFF;
}

.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;

    /* Imagen de fondo */
    background: url("../img/hero.png") center/cover no-repeat;
}

/* Capa oscura encima para estilo premium */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 15, 0.75);
}

/* Para que el contenido quede encima */
.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeUp 1.2s ease;
}

.hero-logo {
    width: 420px;
    max-width: 85%;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;

    /* glow elegante */
    filter: drop-shadow(0 0 20px rgba(45, 107, 255, 0.45));
}

/* TEXTOS HERO */
.hero-title {
    font-size: 38px;
    margin-bottom: 10px;
}

.hero-text {
    color: #B3B3B3;
    margin-bottom: 25px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

/* CARDS */
.card {
    background: #1A1A1D;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(45, 107, 255, 0.3);
}

/* Plataforma grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 25px;
}

/* Tarjetas */
.platform-card {
    background: #1A1A1D;
    width: 140px;
    height: 140px;
    /* mismo valor = cuadrado */
    border-radius: 14px;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: 0.3s;
}

/* Tamaño del logo */
.platform-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* mantiene proporción sin deformar */
    padding: px;
    /* espacio interno para que no toque los bordes */
}

/* Hover premium */
.platform-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 40px rgba(45, 107, 255, 0.25);
    border: 1px solid rgba(45, 107, 255, 0.4);
}

/* ============================= */
/* Grid extendido (3 filas x 5) */
/* ============================= */

/* Grid extendido centrado */
.platform-grid-extended {
    display: grid;
    grid-template-columns: repeat(5, 140px);
    /* tamaño fijo */
    gap: 25px;
    justify-content: center;
    /* centra las columnas */
    margin: auto;
}

/* Responsive tablets */
@media (max-width: 900px) {
    .platform-grid-extended {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive móviles */
@media (max-width: 500px) {
    .platform-grid-extended {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* PLANES */
.plan-card {
    background: #1A1A1D;
    padding: 35px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(45, 107, 255, 0.3);
}

.highlight {
    border: 2px solid #2D6BFF;
}

/* BENEFICIOS */
.benefits {
    list-style: none;
    text-align: center;
    line-height: 2;
    color: #B3B3B3;
}

/* ============================= */
/* FOOTER */
/* ============================= */

.footer {
    background: #08080B;
    padding-top: 60px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

/* Columnas */
.footer-column h4 {
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    color: #B3B3B3;
}

/* Links */
.footer-column a {
    color: #B3B3B3;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column a:hover {
    color: #2D6BFF;
}

/* Logo */
.footer-logo {
    font-size: 22px;
    margin-bottom: 10px;
}

.footer-text {
    color: #B3B3B3;
    line-height: 1.6;
}

/* Parte inferior */
.footer-bottom {
    border-top: 1px solid #1A1A1D;
    text-align: center;
    padding: 20px 0;
    color: #777;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

}

/* ============================= */
/* Redes sociales footer */
/* ============================= */

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-btn {
    width: 42px;
    height: 42px;
    background: #1A1A1D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

/* Hover colores oficiales */
.social-btn.whatsapp:hover {
    background: #25D366;
}

.social-btn.instagram:hover {
    background: #E1306C;
}

.social-btn.facebook:hover {
    background: #1877F2;
}

/* Efecto premium */
.social-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* ANIMACIÓN HERO */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ANIMACIÓN SCROLL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
img {
    max-width: 100%;
}

/* IPTV SECCCION */

.iptv-section{
margin-top:80px;
}

.iptv-header{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:50px;
}

.iptv-header h3{
font-size:32px;
margin-bottom:10px;
}

.iptv-header p{
color:#aaa;
line-height:1.6;
}

/* PLANES */

.iptv-plans{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

/* TARJETAS */

.plan-card{
position:relative;
background:#0f1115;
padding:35px;
border-radius:14px;
border:1px solid #1A1A1D;
transition:all .35s ease;
}

/* HOVER */

.plan-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 35px rgba(0,0,0,.4);
}

/* LOGO */

.plan-logo{
position:absolute;
top:10px;
right:10px;
width:100px;
opacity:.9;
}

/* TITULO */

.plan-card h4{
font-size:22px;
margin-bottom:20px;
}

/* LISTA */

.plan-card ul{
margin-bottom:25px;
line-height:1.7;
}

.plan-card li{
margin-bottom:6px;
color:#ddd;
}

/* PRECIO */

.plan-price{
font-size:28px;
font-weight:bold;
color:#3b82f6;
margin-bottom:15px;
}

.plan-price span{
font-size:14px;
color:#aaa;
font-weight:normal;
}

/* VIP */

.vip{
border:2px solid #3b82f6;
background:#0b0f18;
box-shadow:0 0 25px rgba(59,130,246,.15);
}

.vip:hover{
box-shadow:0 0 35px rgba(59,130,246,.35);
}

/* BADGE */

.vip-badge{
position:absolute;
top:-12px;
left:20px;
background:#3b82f6;
padding:5px 12px;
border-radius:6px;
font-size:12px;
font-weight:600;
}

/* RESPONSIVE */

@media (max-width:900px){

.iptv-plans{
grid-template-columns:1fr;
}

.plan-card{
text-align:left;
}

}
/* FIN IPTV*/

/* Flecha desactivada */
.carousel-btn.disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* ============================= */
/* CARRUSEL COMBOS - FIX */
/* ============================= */

.combos-carousel-section {
    padding: 90px 0;
    background: #0F0F14;
    text-align: center;
}

.combos-subtitle {
    color: #B3B3B3;
    margin-bottom: 40px;
}

/* Contenedor del carrusel */
.carousel-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Track */
.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

/* Ocultar barra de scroll */
.carousel-container::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .carousel-btn {
        display: none;
    }
}

/* Slides */
.combo-slide {
    min-width: 260px;
    height: 160px;
    /* IMPORTANTE: altura fija */
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    /* evita que se encojan */
}

/* Imagen */
.combo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ajusta sin deformar */
    display: block;
}

/* Hover */
.combo-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(45, 107, 255, 0.25);
}

/* Botones */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1A1A1D;
    border: none;
    color: white;
    font-size: 28px;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: 0.3s ease;
    animation: pulseWhats 2.5s infinite;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
}

/* Animación */
@keyframes pulseWhats {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* WhatsApp responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float img {
        width: 26px;
        height: 26px;
    }
}

/* ============================= */
/* BENEFICIOS */
/* ============================= */

.benefits-section {
    padding: 90px 0;
    background: #0F0F14;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Tarjeta */
.benefit-card {
    background: #1A1A1D;
    padding: 30px;
    border-radius: 16px;
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(45, 107, 255, 0.15);
}

/* Icono */
.benefit-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

/* Texto */
.benefit-card h4 {
    margin-bottom: 10px;
}

.benefit-card p {
    color: #B3B3B3;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 80px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
    }
}







