/* ============================
   HEADER IPTV - LAZER PLAY
   Build Final Unificado v8.1
=============================== */

/* HEADER GERAL */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #000;
}

/* HEADER FULLSCREEN */
.lp-hero-header {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #000;
}

/* MOSAICO */
.lp-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../backgrounds/mosaic.webp') center center / cover no-repeat;
    z-index: 1;
}

/* ESCURECIMENTO + BLUR */
.lp-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.63);
    backdrop-filter: blur(3px);
    z-index: 2;
}

/* GLOW AZUL DO FUNDO */
.lp-hero-header::after {
    content: "";
    position: absolute;
    top: 40%;
    left: 50%;
    width: 900px;
    height: 450px;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle at center,
        rgba(0,130,255,0.25) 0%,
        rgba(0,90,200,0.20) 40%,
        rgba(0,0,0,0) 80%
    );
    filter: blur(55px);
    z-index: 2; /* atrás da caixa */
    pointer-events: none;
}

/* CONTEÚDO CENTRAL */
.lp-hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    width: 100%;
    max-width: 1300px;
}

/* LOGO */
.lp-hero-logo {
    width: 300px;
    max-width: 92%;
    margin-bottom: 55px;
    filter: drop-shadow(0 0 18px rgba(0,150,255,0.60));
}

/* BOX COM FRAME */
.lp-hero-box {
    background: rgba(0,0,0,0.55);
    padding: 55px 75px;
    border-radius: 22px;
    border: 14px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(7px);
    box-shadow: 
        0 0 45px rgba(0,0,0,0.65),
        inset 0 0 40px rgba(255,255,255,0.07);
    display: inline-block;
    position: relative;
}

/* ILUMINAÇÃO INFERIOR */
.lp-hero-box::after {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 50%;
    width: 260px;
    height: 55px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 70%);
    filter: blur(18px);
    pointer-events: none;
}

/* MENU */
.lp-hero-menu {
    display: flex;
    justify-content: center;
    gap: 45px;
}

/* ITEM DO MENU */
.lp-hero-item {
    width: 165px;
    padding: 28px 10px;
    background: rgba(10,20,40,0.55);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: #fff;
    text-decoration: none;
    transition: 0.25s ease;

    box-shadow:
        inset 0 0 18px rgba(0,140,255,0.25),
        0 0 22px rgba(0,0,0,0.35);
}

/* ÍCONE */
.lp-hero-icon-img {
    width: 78px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0px 0px 7px rgba(0,150,255,0.65));
}

/* TEXTO DO CARD */
.lp-hero-item span {
    font-size: 19px;
    font-weight: 600;
    text-shadow: 0 0 6px rgba(0,0,0,0.7);
    color: #fff;
}

/* HOVER */
.lp-hero-item:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.08);
    transform: scale(1.07);
    box-shadow: 0 0 22px rgba(255,255,255,0.55);
}

/* BOTÃO DO FOOTER (mesmo estilo das caixas do topo) */
.lp-footer-toggle-btn {
    background: rgba(0,150,255,0.12);
    color: #ffffff;
    border: 1px solid rgba(0,150,255,0.35);
    padding: 12px 22px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin: 0 auto 25px auto;
    transition: .25s ease;
    backdrop-filter: blur(6px);
}

.lp-footer-toggle-btn:hover {
    background: rgba(0,150,255,0.22);
    transform: scale(1.05);
}

/* CONTEÚDO FECHADO (ESCONDIDO) */
.lp-footer-collapsed {
    display: none;
}

/* QUANDO ABRIR, vira block normalmente */
.lp-footer-glass {
    padding: 35px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(6px);
    box-shadow: inset 0 0 25px rgba(0,150,255,0.08);
}

/* ======================================================
   FIX COMPLETO DA HOME (HEADER) NO MOBILE — LAZER PLAY
   Remove zoom, remove barra lateral, ajusta glow e cards
====================================================== */
@media (max-width: 768px) {

    /* Impede overflow lateral */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    /* Ajusta o GLOW AZUL que estava quebrando tudo */
    .lp-hero-header::after {
        width: 100% !important;
        height: 240px !important;
        top: 38% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        filter: blur(45px) !important;
    }

    /* Ajusta a caixa central */
    .lp-hero-box {
        width: 92% !important;
        padding: 28px 22px !important;
        border-width: 8px !important;
    }

    /* Cards responsivos */
    .lp-hero-item {
        width: 100% !important;
        max-width: 260px !important;
        padding: 18px 14px !important;
        margin: 0 auto !important;
    }

    .lp-hero-icon-img {
        width: 58px !important;
    }

    /* Menu central alinhado */
    .lp-hero-menu {
        flex-wrap: wrap !important;
        gap: 18px !important;
        justify-content: center !important;
    }

    /* Garante que nada estoura */
    .lp-hero-header {
        overflow: hidden !important;
    }
}
