*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

:root{
    --fondo:#070707;
    --fondo-2:#0d0d0d;
    --tarjeta:#121212;
    --tarjeta-2:#181818;
    --borde:#2b2b2b;
    --texto:#ffffff;
    --texto-suave:#a9a9a9;
    --naranja:#ff9500;
    --naranja-claro:#ffb000;
    --verde-whatsapp:#25d366;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(255,149,0,.08), transparent 25%),
        var(--fondo);
    color:var(--texto);
    line-height:1.5;
}

button,
input{
    font:inherit;
}

button{
    cursor:pointer;
}

a{
    color:inherit;
}

.contenedor{
    width:min(1180px, calc(100% - 36px));
    margin:auto;
}

/* CABECERA */

.header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(5,5,5,.96);
    backdrop-filter:blur(12px);
    border-bottom:1px solid #2a2a2a;
}

.nav{
    min-height:76px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
}

.logo{
    font-size:28px;
    font-weight:900;
    letter-spacing:.5px;
}

.logo span{
    color:var(--naranja);
}

.menu{
    display:flex;
    align-items:center;
    gap:28px;
}

.menu a{
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    color:#eeeeee;
    transition:.2s;
}

.menu a:hover{
    color:var(--naranja);
}

.btn-carrito{
    border:1px solid #3a3a3a;
    background:#121212;
    color:#fff;
    border-radius:12px;
    padding:11px 16px;
    font-weight:800;
}

.btn-carrito span{
    display:inline-flex;
    min-width:23px;
    height:23px;
    padding:0 6px;
    margin-left:5px;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:var(--naranja);
    color:#050505;
}

/* PORTADA */

.hero{
    min-height:580px;
    display:flex;
    align-items:center;
    border-bottom:1px solid #1f1f1f;
    background:
        linear-gradient(120deg, rgba(0,0,0,.98), rgba(12,12,12,.94)),
        repeating-linear-gradient(
            135deg,
            transparent 0 40px,
            rgba(255,149,0,.04) 41px 42px
        );
    overflow:hidden;
}

.hero-contenido{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:55px;
    align-items:center;
    padding-top:75px;
    padding-bottom:75px;
}

.mini-titulo{
    color:var(--naranja);
    font-size:13px;
    font-weight:900;
    letter-spacing:3px;
    margin-bottom:15px;
}

.hero h1{
    max-width:720px;
    font-size:clamp(46px, 6vw, 78px);
    line-height:.96;
    text-transform:uppercase;
    font-weight:900;
    letter-spacing:-2px;
}

.hero h1 span{
    display:block;
    color:var(--naranja);
    text-shadow:0 0 25px rgba(255,149,0,.16);
}

.hero-descripcion{
    max-width:600px;
    margin:25px 0 30px;
    color:#c3c3c3;
    font-size:18px;
}

.hero-botones{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 22px;
    border-radius:10px;
    text-decoration:none;
    font-weight:900;
}

.btn-principal{
    color:#080808;
    background:linear-gradient(90deg, var(--naranja), var(--naranja-claro));
    box-shadow:0 8px 28px rgba(255,149,0,.18);
}

.btn-secundario{
    border:1px solid var(--naranja);
    background:#0e0e0e;
    color:#fff;
}

.hero-visual{
    min-height:370px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.hero-visual::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:var(--naranja);
    filter:blur(110px);
    opacity:.16;
}

.circulo{
    position:relative;
    width:310px;
    height:310px;
    border-radius:50%;
    border:1px solid rgba(255,149,0,.55);
    background:
        radial-gradient(circle at 30% 25%, #282828, #090909 65%);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    font-size:48px;
    font-weight:900;
    box-shadow:
        0 0 45px rgba(255,149,0,.12),
        inset 0 0 40px rgba(255,149,0,.06);
}

.circulo span{
    color:var(--naranja);
}

/* BENEFICIOS */

.beneficios{
    position:relative;
    z-index:10;
    margin-top:-42px;
}

.beneficios-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border:1px solid #2d2d2d;
    border-radius:16px;
    overflow:hidden;
    background:#0d0d0d;
    box-shadow:0 14px 40px rgba(0,0,0,.28);
}

.beneficio{
    padding:24px 22px;
    border-right:1px solid #282828;
}

.beneficio:last-child{
    border-right:none;
}

.beneficio-icono{
    font-size:28px;
    margin-bottom:10px;
}

.beneficio h3{
    font-size:16px;
    margin-bottom:5px;
}

.beneficio p{
    color:var(--texto-suave);
    font-size:14px;
}

/* SECCIONES */

.seccion{
    padding:70px 0;
}

.titulo-seccion{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:28px;
}

.titulo-seccion span{
    color:var(--naranja);
}

.titulo-seccion h2{
    text-transform:uppercase;
    font-size:30px;
}

/* CATEGORÍAS */

.categorias{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.categoria{
    min-height:180px;
    padding:24px;
    text-align:left;
    color:#fff;
    border:1px solid #303030;
    border-radius:16px;
    background:
        radial-gradient(circle at top right, rgba(255,149,0,.09), transparent 38%),
        linear-gradient(145deg,#181818,#0d0d0d);
    transition:.2s ease;
}

.categoria:hover{
    transform:translateY(-4px);
    border-color:var(--naranja);
    box-shadow:0 10px 28px rgba(0,0,0,.25);
}

.categoria-icono{
    font-size:38px;
    margin-bottom:25px;
}

.categoria h3{
    font-size:20px;
    margin-bottom:5px;
}

.categoria p{
    color:var(--naranja);
    font-size:13px;
    font-weight:800;
}

/* BUSCADOR Y FILTROS */

.buscador-contenedor{
    padding:18px;
    border:1px solid #292929;
    border-radius:15px;
    background:#101010;
}

.buscador-contenedor input{
    width:100%;
    padding:15px 18px;
    border:1px solid #373737;
    border-radius:12px;
    outline:none;
    background:#191919;
    color:#fff;
}

.buscador-contenedor input:focus{
    border-color:var(--naranja);
}

.filtros{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:22px 0 30px;
}

.filtro{
    padding:10px 16px;
    border:1px solid #343434;
    border-radius:999px;
    background:#111;
    color:#fff;
    font-weight:700;
}

.filtro:hover,
.filtro.activo{
    color:#080808;
    background:var(--naranja);
    border-color:var(--naranja);
}

/* PRODUCTOS */

.productos-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.producto{
    overflow:hidden;
    display:flex;
    flex-direction:column;
    min-height:390px;
    border:1px solid #2d2d2d;
    border-radius:16px;
    background:var(--tarjeta);
    transition:.2s;
}

.producto:hover{
    transform:translateY(-3px);
    border-color:#444;
}

.producto-imagen{
    position:relative;
    aspect-ratio:16/9;
    min-height:unset;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:
        radial-gradient(circle, rgba(255,149,0,.17), transparent 52%),
        #0b0b0b;
    border-bottom:1px solid #252525;
}

.producto-imagen img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.producto-logo{
    width:88px;
    height:88px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #494949;
    background:#1d1d1d;
    color:var(--naranja);
    font-size:24px;
    font-weight:900;
}

.producto-info{
    flex:1;
    padding:18px;
    display:flex;
    flex-direction:column;
}

.producto-categoria{
    color:#868686;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.6px;
}

.producto h3{
    font-size:19px;
    margin:7px 0;
}

.producto-descripcion{
    color:#aaa;
    font-size:14px;
    margin-bottom:16px;
}

.producto-precio{
    margin-top:auto;
    margin-bottom:14px;
    color:var(--naranja);
    font-size:24px;
    font-weight:900;
}

.producto-agregar{
    width:100%;
    min-height:43px;
    border:none;
    border-radius:9px;
    background:linear-gradient(90deg,var(--naranja),var(--naranja-claro));
    color:#090909;
    font-weight:900;
}

.sin-productos{
    grid-column:1/-1;
    padding:50px;
    text-align:center;
    color:#999;
    border:1px dashed #333;
    border-radius:15px;
}

/* CÓMO COMPRAR */

.pasos{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.paso{
    text-align:center;
    padding:34px 25px;
    border-radius:16px;
    border:1px solid #2b2b2b;
    background:#101010;
}

.numero{
    width:48px;
    height:48px;
    margin:0 auto 16px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#080808;
    background:var(--naranja);
    font-weight:900;
}

.paso p{
    color:#aaa;
    margin-top:6px;
}

/* FOOTER */

.footer{
    padding:50px 0;
    text-align:center;
    border-top:1px solid #272727;
    background:#090909;
    color:#999;
}

.footer-logo{
    color:#fff;
    margin-bottom:10px;
}

.footer p{
    margin:4px 0;
}

.footer a{
    display:inline-block;
    margin-top:10px;
    color:var(--naranja);
    text-decoration:none;
    font-weight:800;
}

/* WHATSAPP */

.whatsapp-flotante{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:900;
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:var(--verde-whatsapp);
    box-shadow:0 8px 28px rgba(0,0,0,.45);
    font-size:27px;
}

.whatsapp-icono{
    width:31px;
    height:31px;
    fill:#ffffff;
    display:block;
}

.whatsapp-flotante{
    transition:transform .2s ease, box-shadow .2s ease;
}

.whatsapp-flotante:hover{
    transform:scale(1.08);
    box-shadow:0 10px 34px rgba(37,211,102,.35);
}

/* CARRITO */

.overlay{
    position:fixed;
    inset:0;
    z-index:1500;
    opacity:0;
    visibility:hidden;
    background:rgba(0,0,0,.68);
    transition:.25s;
}

.overlay.visible{
    opacity:1;
    visibility:visible;
}

.carrito-panel{
    position:fixed;
    top:0;
    right:-460px;
    z-index:1600;
    width:min(430px,100%);
    height:100dvh;
    display:flex;
    flex-direction:column;
    padding:24px;
    background:#0d0d0d;
    border-left:1px solid #333;
    transition:.3s ease;
}

.carrito-panel.abierto{
    right:0;
}

.carrito-cabecera{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
    padding-bottom:20px;
    border-bottom:1px solid #292929;
}

.carrito-cabecera p{
    color:#888;
    font-size:13px;
}

.cerrar-carrito{
    border:none;
    background:transparent;
    color:#fff;
    font-size:32px;
}

.carrito-productos{
    flex:1;
    overflow:auto;
    padding:12px 0;
}

.carrito-vacio{
    padding-top:70px;
    text-align:center;
    color:#888;
}

.item-carrito{
    padding:16px 0;
    border-bottom:1px solid #292929;
}

.item-carrito-cabecera{
    display:flex;
    justify-content:space-between;
    gap:15px;
}

.item-carrito p{
    margin-top:5px;
    color:#999;
    font-size:13px;
}

.item-carrito button{
    margin-top:8px;
    border:none;
    background:transparent;
    color:#ff6767;
}

.carrito-resumen{
    padding-top:18px;
    border-top:1px solid #292929;
}

.total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
    font-size:20px;
}

.total strong{
    color:var(--naranja);
}

.btn-whatsapp{
    width:100%;
    min-height:50px;
    border:none;
    border-radius:10px;
    background:var(--verde-whatsapp);
    color:#fff;
    font-weight:900;
}

.carrito-acciones{
    display:grid;
    gap:10px;
    margin-top:12px;
}

.btn-seguir-comprando{
    width:100%;
    min-height:50px;
    border:1px solid #444;
    border-radius:10px;
    background:#151515;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.2s ease;
}

.btn-seguir-comprando:hover{
    border-color:var(--naranja);
    color:var(--naranja);
}


/* RESPONSIVE TABLET */

@media (max-width:950px){

    .menu{
        display:none;
    }

    .hero-contenido{
        grid-template-columns:1fr;
    }

    .hero-visual{
        min-height:250px;
    }

    .circulo{
        width:240px;
        height:240px;
        font-size:38px;
    }

    .beneficios{
        margin-top:25px;
    }

    .beneficios-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .beneficio:nth-child(2){
        border-right:none;
    }

    .beneficio:nth-child(-n+2){
        border-bottom:1px solid #282828;
    }

    .categorias,
    .productos-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* BOTÓN MENÚ MÓVIL */

.menu-toggle{
    display:none;
    border:1px solid #333;
    background:#111;
    color:#fff;
    width:42px;
    height:42px;
    border-radius:10px;
    font-size:24px;
    cursor:pointer;
}


/* RESPONSIVE CELULAR */

@media (max-width:600px){

.contenedor{
    width:min(100% - 20px, 1180px);
}

.nav{
    min-height:64px;
    position:relative;
}

.header{
    overflow:visible;
}

.menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.menu{
    display:none;
    position:absolute;
    top:68px;
    left:10px;
    right:10px;
    flex-direction:column;
    background:#111;
    border:1px solid #2b2b2b;
    border-radius:14px;
    padding:10px;
    z-index:1000;
}

.menu.activo{
    display:flex !important;
}

.menu a{
    padding:13px 14px;
    border-radius:9px;
}

.logo-imagen{
    width:64px;
    height:auto;
}

.btn-carrito{
    padding:9px 11px;
    font-size:13px;
}

.hero{
    min-height:auto;
}

.hero-contenido{
    padding-top:46px;
    padding-bottom:42px;
    gap:26px;
}

.hero h1{
    font-size:34px;
    line-height:1.02;
    letter-spacing:-0.5px;
}

.mini-titulo{
    font-size:14px;
    letter-spacing:3px;
}

.hero-descripcion{
    font-size:15px;
    line-height:1.55;
}

.hero-botones{
    display:grid;
    gap:12px;
}

.btn{
    width:100%;
}

.hero-visual{
    display:none;
}

.beneficios-grid,
.categorias,
.productos-grid,
.pasos{
    grid-template-columns:1fr;
}

.beneficio{
    border-right:none;
    border-bottom:1px solid #282828;
    padding:26px 22px;
}

.beneficio:last-child{
    border-bottom:none;
}

.seccion{
    padding:46px 0;
}

.titulo-seccion h2{
    font-size:24px;
}

.categoria{
    min-height:135px;
}

.producto{
    min-height:auto;
}

.producto-imagen{
    min-height:150px;
}
/* PROMOCIONES EN CELULAR */

.promociones-seccion{
    margin-top:35px;
}

.promociones-encabezado{
    gap:15px;
}

.promociones-encabezado h2{
    font-size:25px;
    line-height:1.15;
}

.promociones-encabezado p{
    font-size:14px;
    line-height:1.5;
}

.promociones-flechas{
    display:none;
}

.promociones-carrusel{
    gap:12px;
    scroll-snap-type:x mandatory;
    overflow-x:auto;
    padding-bottom:8px;
}

.promocion-card{
    flex:0 0 calc(100% - 28px);
    min-width:calc(100% - 28px);
    scroll-snap-align:start;
}

.promocion-card h3{
    font-size:21px;
}

.promocion-card .btn,
.promocion-card button{
    width:100%;
}
.producto-imagen{
    min-height:140px;
}

.producto-contenido{
    padding:18px;
}

.producto .btn{
    margin-top:14px;
}
/* MODALES EN CELULAR */

.modal-producto{
    width:calc(100% - 20px);
    max-width:none;
    max-height:90vh;
    overflow-y:auto;
    overscroll-behavior:contain;
}

.modal-producto-imagen{
    min-height:190px;
}

.modal-producto-contenido{
    padding:20px;
}

.modal-producto-cerrar{
    position:absolute;
    top:14px;
    right:14px;
    z-index:10;
}

.modal-plan{
    padding:16px;
}
/* FIN RESPONSIVE CELULAR */
}

/* LOGO REAL JASS PLAY */

.logo-link{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo-imagen{
    display:block;
    width:auto;
    height:58px;
    object-fit:contain;
}

.logo-footer-imagen{
    display:block;
    width:auto;
    height:100px;
    object-fit:contain;
    margin:0 auto 15px;
}

@media (max-width:600px){

    .logo-imagen{
        height:45px;
    }

    .logo-footer-imagen{
        height:80px;
    }

}/* MEJORA PORTADA JASS PLAY */

.hero h1{
    font-size:clamp(42px,5vw,66px);
    max-width:650px;
}

.hero-contenido{
    grid-template-columns:1.05fr .95fr;
}

.hero-visual{
    min-height:420px;
}

.hero-panel{
    position:relative;
    width:min(100%,470px);
    min-height:360px;
    border:1px solid rgba(255,149,0,.35);
    border-radius:28px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:35px;
    background:
        linear-gradient(
            145deg,
            rgba(255,149,0,.08),
            rgba(255,255,255,.02)
        ),
        #0b0b0b;
    box-shadow:
        0 25px 60px rgba(0,0,0,.45),
        0 0 35px rgba(255,149,0,.08);
}

.hero-panel::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        repeating-linear-gradient(
            135deg,
            transparent 0 32px,
            rgba(255,149,0,.035) 33px 34px
        );
    pointer-events:none;
}

.hero-panel-brillo{
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:#ff9500;
    filter:blur(100px);
    opacity:.15;
}

.hero-logo{
    position:relative;
    z-index:2;
    width:min(260px,80%);
    height:auto;
    object-fit:contain;
}

.hero-iconos{
    position:relative;
    z-index:2;
    display:flex;
    gap:14px;
    margin-top:28px;
}

.hero-iconos span{
    width:54px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:15px;
    font-size:25px;
    background:#151515;
    border:1px solid #373737;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.hero-panel p{
    position:relative;
    z-index:2;
    margin-top:24px;
    text-align:center;
    color:#a9a9a9;
    font-size:11px;
    letter-spacing:1.4px;
}

.logo-imagen{
    height:64px;
}

@media (max-width:950px){

    .hero-panel{
        width:min(100%,520px);
        margin:auto;
    }

}

@media (max-width:600px){

    .hero h1{
        font-size:38px;
    }

    .hero-visual{
        display:flex;
        min-height:auto;
    }

    .hero-panel{
        min-height:290px;
        padding:25px 18px;
    }

    .hero-logo{
        width:210px;
    }

    .hero-iconos span{
        width:44px;
        height:44px;
        font-size:21px;
    }

}/* =========================
   MODAL DE PRODUCTO
========================= */

.modal-producto{
    position:fixed;
    inset:0;
    z-index:2000;
    background:rgba(0,0,0,.82);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.modal-contenido{
    width:min(760px,100%);
    max-height:90vh;
    overflow:auto;
    background:#101010;
    border:1px solid #343434;
    border-radius:22px;
    box-shadow:0 25px 70px rgba(0,0,0,.60);
}

.modal-imagen{
    position:relative;
    aspect-ratio:16/7;
    overflow:hidden;
    background:
        radial-gradient(circle at center, rgba(255,149,0,.15), transparent 55%),
        #080808;
    border-bottom:1px solid #2a2a2a;
}

.modal-imagen img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.modal-placeholder{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--naranja);
    font-size:48px;
    font-weight:900;
}

.modal-cerrar{
    position:absolute;
    top:14px;
    right:14px;
    z-index:5;
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid #555;
    background:rgba(0,0,0,.85);
    color:#fff;
    font-size:27px;
}

.modal-cuerpo{
    padding:26px;
}

.modal-categoria{
    color:var(--naranja);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
}

.modal-titulo{
    margin-top:5px;
    font-size:32px;
}

.modal-descripcion{
    margin-top:8px;
    color:#aaa;
    line-height:1.6;
}

.modal-subtitulo{
    margin-top:25px;
    margin-bottom:12px;
    font-size:18px;
}

.modal-planes{
    display:grid;
    gap:12px;
}

.modal-plan{
    width:100%;
    padding:16px;
    text-align:left;
    border:1px solid #363636;
    border-radius:13px;
    background:#171717;
    color:#fff;
    transition:.2s;
}

.modal-plan:hover{
    border-color:var(--naranja);
    transform:translateY(-1px);
}

.modal-plan-nombre{
    display:block;
    font-size:17px;
    font-weight:900;
}

.modal-plan-duracion{
    display:block;
    margin-top:4px;
    color:#999;
    font-size:14px;
}

.modal-plan-precio{
    display:block;
    margin-top:8px;
    color:var(--naranja);
    font-size:22px;
    font-weight:900;
}

@media (max-width:600px){

    .modal-producto{
        padding:10px;
    }

    .modal-contenido{
        border-radius:16px;
    }

    .modal-imagen{
        aspect-ratio:16/9;
    }

    .modal-cuerpo{
        padding:20px;
    }

    .modal-titulo{
        font-size:26px;
    }

}/* =========================
   TARJETAS DE PRODUCTO
========================= */

.productos-grid{
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.producto{
    position:relative;
    min-height:420px;
    overflow:hidden;
    border:1px solid #303030;
    border-radius:18px;
    background:
        linear-gradient(
            180deg,
            #151515 0%,
            #101010 100%
        );
    transition:.25s ease;
}

.producto:hover{
    transform:translateY(-5px);
    border-color:rgba(255,149,0,.55);
    box-shadow:
        0 18px 45px rgba(0,0,0,.40),
        0 0 24px rgba(255,149,0,.07);
}

.producto-imagen{
    position:relative;
    aspect-ratio:16/9;
    overflow:hidden;
    background:
        radial-gradient(
            circle at center,
            rgba(255,149,0,.18),
            transparent 55%
        ),
        #090909;
}

.producto-imagen::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:55%;
    pointer-events:none;
    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.50)
        );
}

.producto-logo{
    position:relative;
    z-index:1;
    width:95px;
    height:95px;
    border-radius:22px;
    border:1px solid #4a4a4a;
    background:
        linear-gradient(
            145deg,
            #252525,
            #151515
        );
    color:var(--naranja);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    font-weight:900;
    box-shadow:
        0 12px 30px rgba(0,0,0,.40),
        0 0 25px rgba(255,149,0,.08);
}

.producto-info{
    position:relative;
    z-index:2;
    flex:1;
    padding:19px;
    display:flex;
    flex-direction:column;
}

.producto-categoria{
    color:#888;
    font-size:11px;
    letter-spacing:.7px;
    font-weight:700;
}

.producto h3{
    margin:8px 0 7px;
    font-size:20px;
    line-height:1.2;
}

.producto-descripcion{
    color:#aaa;
    min-height:42px;
    font-size:14px;
    line-height:1.45;
}

.producto-precio{
    margin-top:auto;
    padding-top:17px;
    margin-bottom:14px;
    color:var(--naranja);
    font-size:24px;
    font-weight:900;
}

.producto-agregar{
    width:100%;
    min-height:45px;
    border:0;
    border-radius:10px;
    background:
        linear-gradient(
            90deg,
            var(--naranja),
            var(--naranja-claro)
        );
    color:#080808;
    font-weight:900;
    transition:.2s;
}

.producto-agregar:hover{
    transform:translateY(-2px);
    box-shadow:
        0 8px 22px rgba(255,149,0,.18);
}

@media(max-width:1050px){

    .productos-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:800px){

    .productos-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:520px){

    .productos-grid{
        grid-template-columns:1fr;
    }

}.plan-no-disponible{
    opacity:.45;
    cursor:not-allowed;
    border-color:#333 !important;
}

.plan-no-disponible:hover{
    transform:none;
    border-color:#333 !important;
}

.plan-no-disponible .modal-plan-precio{
    color:#ff5d5d;
}/* PLAN NO DISPONIBLE */

.plan-no-disponible{
    opacity:.45;
    cursor:not-allowed;
    border-color:#ff5d5d !important;
}

.plan-no-disponible:hover{
    transform:none;
    border-color:#ff5d5d !important;
}

.plan-no-disponible .modal-plan-precio{
    color:#ff5d5d;
}

/* =========================
   PROMOCIONES Y COMBOS
========================= */

.promociones-seccion{
    margin:35px 0 30px;
}

.promociones-encabezado{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
    margin-bottom:18px;
}

.promociones-etiqueta{
    display:inline-block;
    color:#ff9500;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.5px;
    margin-bottom:6px;
}

.promociones-encabezado h2{
    margin:0;
    color:#fff;
    font-size:28px;
}

.promociones-encabezado p{
    margin:7px 0 0;
    color:#a7a7a7;
    font-size:14px;
}

.promociones-flechas{
    display:flex;
    gap:8px;
}

.promociones-flechas button{
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid #2c2c2c;
    background:#151515;
    color:#fff;
    font-size:26px;
    cursor:pointer;
    transition:.2s;
}

.promociones-flechas button:hover{
    border-color:#ff9500;
    color:#ff9500;
}

.promociones-contenedor{
    overflow:hidden;
}

.promociones-carrusel{
    display:flex;
    gap:16px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding:3px 2px 12px;
    scrollbar-width:none;
}

.promociones-carrusel::-webkit-scrollbar{
    display:none;
}

.promocion-card{
    flex:0 0 310px;
    background:
        radial-gradient(
            circle at top right,
            rgba(255,149,0,.15),
            transparent 38%
        ),
        #121212;

    border:1px solid #292929;
    border-radius:18px;
    padding:20px;
    position:relative;
    overflow:hidden;
    transition:.25s;
}

.promocion-card:hover{
    transform:translateY(-4px);
    border-color:#ff9500;
}

.promocion-tipo{
    display:inline-block;
    padding:5px 10px;
    border-radius:20px;
    background:rgba(255,149,0,.12);
    color:#ff9500;
    font-size:11px;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:14px;
}

.promocion-card h3{
    margin:0 0 10px;
    color:#fff;
    font-size:21px;
}

.promocion-productos{
    display:flex;
    flex-direction:column;
    gap:5px;
    margin-bottom:14px;
}

.promocion-productos span{
    color:#d5d5d5;
    font-size:14px;
}

.promocion-descripcion{
    color:#8e8e8e;
    font-size:13px;
    line-height:1.5;
    margin-bottom:16px;
}

.promocion-precio-normal{
    color:#8d8d8d;
    font-size:13px;
}

.promocion-precio-normal strong{
    text-decoration:line-through;
    font-weight:500;
}

.promocion-precio-promo{
    margin-top:4px;
    color:#fff;
    font-size:14px;
}

.promocion-precio-promo strong{
    color:#ff9500;
    font-size:27px;
}

.promocion-ahorro{
    display:inline-block;
    margin-top:7px;
    color:#61d88d;
    font-size:12px;
    font-weight:700;
}

.promocion-duracion{
    margin-top:12px;
    color:#aaa;
    font-size:13px;
}

.promocion-boton{
    width:100%;
    margin-top:18px;
    padding:12px;
    border:0;
    border-radius:10px;
    background:#ff9500;
    color:#111;
    font-weight:800;
    cursor:pointer;
    transition:.2s;
}

.promocion-boton:hover{
    transform:scale(1.02);
}

.promocion-agotada{
    opacity:.5;
}

.promocion-agotada::after{
    content:"AGOTADO";
    position:absolute;
    top:18px;
    right:-34px;
    background:#ff4d4d;
    color:#fff;
    padding:6px 38px;
    font-size:11px;
    font-weight:800;
    transform:rotate(35deg);
}

.promocion-agotada .promocion-boton{
    background:#3a3a3a;
    color:#888;
    cursor:not-allowed;
}

@media (max-width:700px){

    .promociones-encabezado{
        align-items:center;
    }

    .promociones-encabezado h2{
        font-size:23px;
    }

    .promociones-flechas{
        display:none;
    }

    .promocion-card{
        flex:0 0 280px;
    }
}
.carrito-acciones{
    display:grid;
    gap:10px;
}

.btn-seguir-comprando{
    width:100%;
    min-height:50px;
    border:1px solid #444;
    border-radius:10px;
    background:#151515;
    color:#fff;
    font-weight:700;
    cursor:pointer;
}

.btn-seguir-comprando:hover{
    border-color:var(--naranja);
    color:var(--naranja);
}

/* ========================================
   FOOTER FINAL
======================================== */

.footer{
    background:#080808;
    border-top:1px solid #242424;
    padding:55px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1.2fr;
    gap:40px;
}

.footer-marca{
    max-width:300px;
}

.logo-footer-imagen{
    width:100px;
    height:auto;
    margin-bottom:18px;
}

.footer-descripcion{
    color:#aaa;
    font-size:14px;
    line-height:1.7;
}

.footer-columna{
    display:flex;
    flex-direction:column;
    gap:11px;
}

.footer-columna h3{
    color:#fff;
    font-size:16px;
    margin:0 0 7px;
}

.footer-columna a,
.footer-columna p,
.footer-enlace{
    color:#aaa;
    font-size:14px;
    line-height:1.5;
}

.footer-columna a{
    text-decoration:none;
}

.footer-columna a:hover,
.footer-enlace:hover{
    color:var(--naranja);
}

.footer-enlace{
    background:none;
    border:none;
    padding:0;
    margin:0;
    text-align:left;
    cursor:pointer;
    font-family:inherit;
}

.footer-legal{
    border-top:1px solid #242424;
    margin-top:40px;
    padding-top:22px;
    text-align:center;
}

.footer-legal p{
    color:#777;
    font-size:12px;
    line-height:1.6;
    margin:5px 0;
}


/* MODAL LEGAL */

.legal-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.82);
    z-index:5000;

    display:none;
    align-items:center;
    justify-content:center;

    padding:20px;
}

.legal-modal.activo{
    display:flex;
}

.legal-contenido{
    position:relative;
    width:min(100%, 650px);
    max-height:80vh;
    overflow-y:auto;

    background:#111;
    border:1px solid #333;
    border-radius:18px;

    padding:35px;
}

.legal-contenido h2{
    color:var(--naranja);
    margin:0 45px 22px 0;
}

.legal-contenido p{
    color:#ccc;
    line-height:1.7;
    margin-bottom:15px;
}

.legal-contenido strong{
    color:#fff;
}

.legal-cerrar{
    position:absolute;
    top:15px;
    right:15px;

    width:40px;
    height:40px;

    border-radius:50%;
    border:1px solid #555;

    background:#080808;
    color:#fff;

    font-size:25px;
    cursor:pointer;
}


/* FOOTER CELULAR */

@media (max-width:600px){

    .footer{
        padding-top:40px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:32px;
    }

    .footer-marca{
        max-width:none;
    }

    .legal-contenido{
        padding:28px 22px;
        max-height:85vh;
    }

}