/* =========================================================
   MULTIRÁDIO — HOME BASE STYLES
   CSS que antes ficava embutido no index.php.
   Mantido separado da camada visual V3 para facilitar manutenção.
========================================================= */



/* ---------------------------------------------------------
   BLOCO LEGADO/COMPATIBILIDADE — mantido para preservar
   componentes e comportamentos existentes durante a migração.
--------------------------------------------------------- */

@keyframes popupEntrada{

    from{

        opacity:0;
        transform:translateY(-40px) scale(.85);

    }

    to{

        opacity:1;
        transform:translateY(0) scale(1);

    }

}
    
    .adsense-home-top{width:100%;max-width:1100px;margin:0 auto 22px;padding:10px 12px 0;text-align:center;}
.adsense-home-top .adsense-label{margin-bottom:7px;font-size:10px;color:#64748b;text-transform:uppercase;letter-spacing:.08em;}
.adsense-home-top ins{min-height:90px;}
@media(max-width:600px){.adsense-home-top{margin-bottom:16px;padding:8px 8px 0;}}

.bannerSwiper{
    width:100%;
}

.banner-img{
    width:100%;
    max-width:1300px;
    height:210px;
    object-fit:cover;
    border-radius:12px;
    display:block;
    margin:auto;
}

/* CELULAR */
@media (max-width:768px){

.banner-img{
    height:auto;
    aspect-ratio: 1300 / 210;
}

}
        :root {
            --bg-principal: #07090e;
            --bg-card: #111622;
            --bg-nav: #0b0d13;
            --text-principal: #ffffff;
            --text-secundario: #94a3b8;
            --cor-accent: #10b981;
        }

        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background-color: var(--bg-principal);
            color: var(--text-principal);
            padding-bottom: 140px;
        }

        .navbar-custom{
    background-color: var(--bg-nav);
    border-bottom:1px solid rgba(255,255,255,.05);

    position:fixed;
    top:0;
    left:0;
    right:0;

    z-index:1050;
}

        
        .scrolling-wrapper {
    display:flex;
    align-items:flex-start;
    justify-content:flex-start;
    overflow-x:auto;
    gap:15px;
    padding:5px 0 15px 0;
    scrollbar-width:none;
}

.scrolling-wrapper::-webkit-scrollbar {
    display: none;
}

        .category-chip {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: var(--bg-card);
            color: var(--text-secundario);
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 50px;
            font-weight: 500;
            font-size: 14px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .category-chip:hover, .category-chip.active, .category-chip:focus {
            background-color: rgba(16, 185, 129, 0.15);
            color: var(--cor-accent);
            border-color: var(--cor-accent);
        }

        .dropdown-menu-dark-custom {
            background-color: #161d30 !important;
            border: 1px solid rgba(255, 255, 255, 0.2) !important;
            border-radius: 12px !important;
            box-shadow: 0px -10px 32px rgba(0, 0, 0, 0.8) !important;
            padding: 6px 0;
            min-width: 190px;
            max-height: 250px;
            overflow-y: auto;
            position: absolute !important;
            z-index: 99999 !important;
        }

        .dropdown-menu-dark-custom .dropdown-item {
            color: #ffffff !important;
            font-size: 14px;
            font-weight: 500;
            padding: 10px 18px;
            transition: all 0.2s;
        }

        .dropdown-menu-dark-custom .dropdown-item:hover {
            background-color: var(--cor-accent) !important;
            color: #000000 !important;
        }

        .category-chip.btn-cadastrar {
    background: linear-gradient(
        135deg,
        #9333ea,
        #7e22ce
    );
    color: #fff;
    font-weight: 600;
    border: none;
    padding:10px 18px;
}
        
        .category-chip.btn-cadastrar:hover {
            background-color: #059669;
            color: #fff;
        }

        /* =====================================================
           BOTÃO UNIFICADO DE CADASTRO
        ===================================================== */
        .category-chip.btn-cadastrar-unificado {
            cursor: pointer;
            font-family: inherit;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
        }

        .category-chip.btn-cadastrar-unificado:hover {
            filter: brightness(1.08);
            transform: translateY(-1px);
        }

        /* Modal de escolha: Rádio ou Web TV */
        #modalEscolhaCadastro {
            position: fixed;
            inset: 0;
            z-index: 1000000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: rgba(0,0,0,.72);
            backdrop-filter: blur(6px);
            opacity: 0;
            transition: opacity .25s ease;
        }

        #modalEscolhaCadastro.show {
            display: flex;
            opacity: 1;
        }

        .cadastro-escolha-box {
            width: 500px;
            max-width: 100%;
            background: #111827;
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 12px;
            box-shadow: 0 25px 70px rgba(0,0,0,.55);
            overflow: hidden;
            transform: translateY(12px) scale(.98);
            transition: transform .25s ease;
        }

        #modalEscolhaCadastro.show .cadastro-escolha-box {
            transform: translateY(0) scale(1);
        }

        .cadastro-escolha-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 18px;
            border-bottom: 1px solid rgba(255,255,255,.07);
        }

        .cadastro-escolha-header h3 {
            margin: 0;
            color: #fff;
            font-size: 16px;
            font-weight: 700;
        }

        .cadastro-escolha-fechar {
            border: 0;
            background: transparent;
            color: #9ca3af;
            font-size: 25px;
            line-height: 1;
            cursor: pointer;
            padding: 0 2px;
        }

        .cadastro-escolha-fechar:hover {
            color: #fff;
        }

        .cadastro-escolha-body {
            padding: 20px 16px 18px;
        }

        .cadastro-escolha-subtitulo {
            margin: 0 0 18px;
            text-align: center;
            color: #8f9bb3;
            font-size: 14px;
        }

        .cadastro-escolha-opcoes {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .cadastro-escolha-opcao {
            min-height: 98px;
            border: 0;
            border-radius: 7px;
            color: #fff;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 700;
            font-size: 15px;
            transition: transform .2s ease, filter .2s ease;
        }

        .cadastro-escolha-opcao:hover {
            color: #fff;
            transform: translateY(-2px);
            filter: brightness(1.08);
        }

        .cadastro-escolha-opcao i {
            font-size: 34px;
        }

        .cadastro-escolha-radio {
            background: #198754;
        }

        .cadastro-escolha-webtv {
            background: #0d6efd;
        }

        @media (max-width: 520px) {
            .cadastro-escolha-opcoes {
                grid-template-columns: 1fr;
            }

            .cadastro-escolha-opcao {
                min-height: 82px;
            }
        }

        .search-box{
    background:#0f172a;
    border:1px solid rgba(16,185,129,.35);
    color:#fff !important;
    border-radius:30px;
    padding:10px 20px;

    box-shadow:
        0 0 10px rgba(16,185,129,.10),
        inset 0 0 0 1px rgba(16,185,129,.08);

    transition:.3s;
}

.search-box::placeholder{
    color:#94a3b8;
}

.search-box:hover{
    border-color:rgba(16,185,129,.55);
    box-shadow:
        0 0 15px rgba(16,185,129,.18);
}

.search-box:focus{
    background:#0f172a !important;
    color:#fff !important;
    border-color:#10b981;

    box-shadow:
        0 0 20px rgba(16,185,129,.35);

    outline:none;
}

/* ================================
   BOTÃO MINHA CONTA - TOPO
================================ */
.btn-minha-conta{
    height:49px;
    min-width:165px;
    padding:0 22px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border-radius:30px;
    background:linear-gradient(135deg,#10b981,#059669);
    border:1px solid rgba(16,185,129,.65);
    color:#fff !important;
    font-size:15px;
    font-weight:800;
    text-decoration:none !important;
    white-space:nowrap;
    box-shadow:0 0 14px rgba(16,185,129,.20);
    transition:transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.btn-minha-conta:hover{
    color:#fff !important;
    transform:translateY(-2px);
    filter:brightness(1.08);
    box-shadow:0 0 20px rgba(16,185,129,.35);
}

.btn-minha-conta {
    padding: 9px 16px;
    font-size: 13px;
    line-height: 1.2;
    border-radius: 25px;
}

.btn-minha-conta-mobile{
    width:100%;
    min-height:49px;
    margin-top:10px;
}

@media(max-width:1200px) and (min-width:769px){
    .search-box{
        width:300px !important;
    }

    .btn-minha-conta{
        min-width:150px;
        padding:0 16px;
    }

    .contador-topo{
        min-width:145px;
        padding:0 14px;
    }
}

        .radio-card {
    background: linear-gradient(180deg,#111622,#0c111b);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 18px;
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.stats-box{
    background:#111622;
    border-radius:18px;
    padding:08px;
    margin:18px 0;
    border:1px solid rgba(255,255,255,.05);
}
.stats-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:5px;
    flex-wrap:nowrap;
}

.stat-item{
    flex:1;
    text-align:center;
    min-width:0;
}

.stat-item i{
    font-size:24px;
}

.stat-number{
    font-size:18px;
}

.stat-label{
    font-size:12px;
}

@media(max-width:768px){

    .stats-row{
        flex-wrap:wrap;
        gap:15px;
    }

    .stat-item{
        flex:0 0 calc(50% - 10px);
    }

}

.stat-item{
    text-align:center;
}


.stat-item i{
    font-size:28px;
    color:#10b981;
    margin-bottom:8px;
}

.stat-number{
    font-size:19px;
    font-weight:700;
    color:#fff;
}

.stat-label{
    color:#94a3b8;
    font-size:13px;
}


        .radio-card:hover {
            transform: translateY(-5px);
            border-color: rgba(16, 185, 129, 0.3);
        }
        .radio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
}

.coluna-destaque{
    max-height:650px;
    overflow-y:auto;
}

.destaque-item{
    padding:8px;
    border-radius:12px;
    transition:.3s;
}

.destaque-item small{
    color:#94a3b8 !important;
    font-size:13px;
}

.destaque-item:hover{
    background:rgba(255,255,255,.05);
    transform:translateX(4px);
}
        
        .coluna-destaque{
    max-height:650px;
    overflow-y:auto;
}
        .img-container {
            position: relative;
            aspect-ratio: 1/1;
            background: #050608;
            border-radius: 10px;
            overflow: hidden;
        }

        .radio-logo { width: 100%; height: 100%; object-fit: cover; }
        .ultimas-radios-card img,
.radio-logo{

    width:100px;
    height:100px;
    object-fit:cover;
    border-radius:16px;

}
        
@media(max-width:768px){

.radio-card{

    background:linear-gradient(180deg,#111622,#0d131d);

    border-radius:20px;

    border:1px solid rgba(255,255,255,.05);

    transition:.30s;

    overflow:hidden;

}

.radio-card h6{
    font-size:15px;
    line-height:1.3;
    min-height:42px;
}
.radio-card p{
    font-size:10px !important;
}

}
        .badge-tipo {
            font-size: 10px;
            padding: 3px 8px;
            border-radius: 6px;
            font-weight: bold;
            text-transform: uppercase;
        }

        /* CONFIGURAÇÃO DO PLAYER PREMIUM COM EFEITOS */
        .player-premium {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #0c0f16;
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 12px 0;
            z-index: 10000;
            overflow: hidden;
        }

        .player-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 08px;
            width: 100%;
        }

        .player-info {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
            flex: 1;
        }

        .player-volume {
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 95px;
        }

        .player-avatar { width: 50px; height: 50px; object-fit: cover; border-radius: 6px; }

        /* Botão de play com animação opcional de pulsação suave */
        .btn-play-pause {
            background-color: #fff;
            color: #000;
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 18px;
            transition: all 0.2s ease;
            box-shadow: 0 4px 10px rgba(255,255,255,0.1);
        }
        .btn-play-pause:hover {
            transform: scale(1.05);
        }

        /* EFEITO DE ONDAS DO EQUALIZADOR */
        .audio-waves {
            display: flex;
            align-items: flex-end;
            gap: 3px;
            width: 30px;
            height: 20px;
        }
        .audio-waves span {
            display: block;
            width: 3px;
            height: 2px;
            background-color: var(--cor-accent);
            border-radius: 2px;
            transition: height 0.2s ease;
        }

        /* Animações individuais para cada barra parecer ritmo musical real */
        .player-playing .audio-waves span:nth-child(1) { animation: bounceWave 0.6s infinite alternate; }
        .player-playing .audio-waves span:nth-child(2) { animation: bounceWave 0.4s infinite alternate 0.15s; }
        .player-playing .audio-waves span:nth-child(3) { animation: bounceWave 0.7s infinite alternate 0.3s; }
        .player-playing .audio-waves span:nth-child(4) { animation: bounceWave 0.5s infinite alternate 0.05s; }

        @keyframes bounceWave {
            0% { height: 3px; }
            100% { height: 20px; }
        }

        /* Imagem da rádio girando suavemente (opcional e elegante) */
        .player-playing .player-avatar {
            box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
            border: 1px solid var(--cor-accent);
        }

        .modal {
            z-index: 999999 !important;
            background: rgba(0,0,0,0.75);
            backdrop-filter: blur(6px);
        }

        .modal-backdrop {
            z-index: 999998 !important;
            background-color: rgba(0,0,0,0.85) !important;
        }

        .modal-content {
            background-color: #111622 !important;
            border: 1px solid rgba(255,255,255,0.1);
            color: #fff;
            opacity: 1 !important;
            position: relative;
            z-index: 999999;
            box-shadow: 0 0 25px rgba(0,0,0,0.7);
        }
        .modal-header { border-bottom: 1px solid rgba(255,255,255,0.05); }
        .form-control, .form-select {
            background-color: rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.1);
            color: #fff;
        }
		/* MENU MOBILE RESPONSIVO CORRIGIDO */

.menu-mobile-scroll{
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    gap:10px;
    width:100%;
    padding:8px 0;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
}

.menu-mobile-scroll::-webkit-scrollbar{
    display:none;
}

.menu-mobile-scroll > *{
    flex:0 0 auto;
}

html,
body{
overflow-x:hidden;
}

        @media (max-width: 768px) {
            .player-premium {
                padding: 10px 0;
            }

            .player-wrapper{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    gap:15px;
}

            .player-info{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    max-width:100%;
    width:100%;
}

            .player-avatar{
    width:70px;
    height:70px;
    border-radius:12px;
}

            .btn-play-pause {
                width: 50px;
                height: 50px;
                flex-shrink: 0;
            }

            .player-volume {
                display: flex !important;
                min-width: 80px;
            }

            .player-volume input[type="range"] {
                width: 55px !important;
            }
        }


    /* CONTADOR NO TOPO */
.contador-topo{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    height:49px;              /* mesma altura da pesquisa */
    min-width:165px;          /* largura mínima */

    padding:0 20px;

    background:#111622;

    border-radius:30px;

    border:1px solid rgba(16,185,129,.30);

    color:#fff;

    white-space:nowrap;

    box-shadow:0 0 12px rgba(16,185,129,.12);

    transition:.3s;
}

.contador-topo i{

    color:#10b981;
    font-size:20px;

}

.contador-topo strong{

    color:#fff;

    font-size:20px;
    font-weight:700;

}

.contador-topo span{

    color:#dbe4ee;
    font-size:18px;

}

.contador-topo i{
color:#10b981;
font-size:17px;
}

@media(max-width:768px){

.contador-topo{
padding:5px 10px;
font-size:12px;
}

.contador-topo i{
font-size:12px;
}

.navbar-brand{
flex-wrap:wrap;
gap:10px !important;
}

}

/* TODO O SEU CSS AQUI */

/* TESTE */
@media(max-width:768px){

.contador-topo{
padding:5px 10px;
font-size:12px;
}

.contador-topo i{
font-size:12px;
}

.navbar-brand{
flex-wrap:wrap;
gap:10px !important;
}

}

/* TESTE */
.navbar-custom {
    background-color: var(--bg-nav);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

body{
    padding-top:80px;
}
@media(max-width:768px){

.radio-card{
    padding:10px !important;
}

.radio-card h6{
    font-size:15px;
    line-height:1.3;
    min-height:42px;
}

.radio-card p{
    font-size:10px !important;
}

.search-box{
    width:100% !important;
}

}
.coluna-destaque .d-flex{
    transition:.3s;
    border-radius:12px;
    padding:8px;
}

.coluna-destaque .d-flex:hover{
    background:rgba(255,255,255,.05);
    transform:translateX(4px);
}

.coluna-destaque{
    max-height:700px;
    overflow-y:auto;
}
.destaque-item{
    padding:8px;
    border-radius:12px;
    transition:.3s;
}

.destaque-item:hover{
    background:rgba(255,255,255,.05);
    transform:translateX(4px);
}
.btn-favorito-player{
    position:relative;
    top:5px;
}
.btn-compartilhar-radio{

    width:42px;
    height:42px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:#1b2330;

    color:#3b82f6;

    font-size:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.35s;

    box-shadow:0 0 15px rgba(59,130,246,.20);

}

.btn-compartilhar-radio:hover{

    transform:scale(1.15);

    background:#3b82f6;

    color:#fff;

    box-shadow:0 10px 25px rgba(59,130,246,.35);

}

.dropdown-menu-dark-custom{
    z-index:1055 !important;
}

.dropdown-menu-dark-custom{
    position:absolute !important;
    top:100%;
    left:0;
    z-index:1040 !important;
}

.ultimas-radios-card img{
    transition:.3s;
}
.sugestao-radio img{
    transition:.3s;
}

.sugestao-radio:hover img{
    transform:scale(1.08);
    border-color:#10b981 !important;
    box-shadow:0 0 18px rgba(16,185,129,.45);
}

.sugestao-radio{
    transition:.3s;
}

.sugestao-radio:hover{
    transform:translateY(-3px);
}

.ultimas-radios-card img:hover{
    transform:scale(1.08);
    border-color:#10b981 !important;
    box-shadow:0 0 15px rgba(16,185,129,.4);
}

.ultimas-radios-card{
    transition:.3s;
}

.ultimas-radios-card:hover{
    transform:translateY(-3px);
}
@media(max-width:768px){

#menuMobilePortal{
    display:none;
}

#menuMobilePortal.aberto{
    display:block;
}

.menu-mobile-scroll{
    flex-direction:column;
    overflow:visible !important;
    gap:10px;
}

.menu-mobile-scroll .category-chip{
    width:100%;
    justify-content:flex-start;
    
}


.dropdown{
    width:100%;
}

.dropdown .category-chip{
    width:100%;
}

}
.radios-atualizadas{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;

}


.radio-card{

    background:#111622;
    border:1px solid rgba(255,255,255,.05);
    border-radius:16px;
    padding:10px;
    text-align:center;
    transition:.3s;
    cursor:pointer;

}


.radio-card:hover{

    transform:translateY(-3px);

}


.ultimas-radios-card img{
    width:90px;
    height:90px;
    border-radius:15px;
    object-fit:cover;
}

.ultimas-radios-card img{
    width:70px !important;
    height:70px !important;
    border-radius:12px;
    object-fit:cover;
}

@media(max-width:1200px){

    .ultimas-radios-scroll{
        grid-template-columns:repeat(3, 1fr);
    }

}

    .ultimas-radios-scroll{
        grid-template-columns:repeat(2, 1fr);
    }


@media(max-width:768px){

    .ultimas-radios-scroll{
        grid-template-columns:repeat(2, 1fr);
    }

}
.contador-destaque{

    animation: destaqueVisita 1s ease;

}

@keyframes destaqueVisita{

    0%{
        transform:scale(1);
        color:#ffffff;
    }

    30%{
        transform:scale(1.25);
        color:#10b981;
        text-shadow:0 0 15px rgba(16,185,129,.8);
    }

    100%{
        transform:scale(1);
        color:#ffffff;
    }

}
#blocoDestaques .radio-card{
    padding:12px !important;
}

#blocoDestaques img{
    width:50px !important;
    height:50px !important;
}

#blocoDestaques .text-white.fw-bold{
    font-size:14px;
}

#blocoDestaques small{
    font-size:12px;
}

/* AJUSTE ULTIMAS RADIOS */

.ultimas-radios-scroll{
    display:flex !important;
    flex-wrap:nowrap !important;
    gap:12px;
    overflow-x:auto;
    scrollbar-width:none;
    padding:5px 0 10px;
}

.ultimas-radios-scroll::-webkit-scrollbar{
    display:none;
}


.ultimas-radios-card{
    flex:0 0 140px !important;
    height:120px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}


.ultimas-radios-card img{
    width:65px !important;
    height:65px !important;
    object-fit:cover;
    border-radius:12px;
    margin:auto;
    display:block;
}


/* CENTRALIZAR LOGOS DOS CARDS */

.img-container{
    display:flex !important;
    align-items:center;
    justify-content:center;
}


.radio-logo{
    width:130px !important;
    height:130px !important;
    object-fit:cover;
    border-radius:12px;
}
/* ==========================
   RÁDIO DO DIA
========================== */

.destaque-dia-card{
    /* PAINEL ESTILO PHOTOSHOP */

.painel-destaque-radio{

    display:grid;

    grid-template-columns:
    1fr 350px 1fr;

    gap:25px;

    align-items:center;

}


/* Rádio central */

.radio-central{

    text-align:center;

}


/* Laterais */

.painel-lateral{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:15px;

}


@media(max-width:992px){

.painel-destaque-radio{

    display:block;

}


.painel-lateral{

    display:flex;

    overflow-x:auto;

    margin-top:20px;

}

}

    background:linear-gradient(180deg,#141b29,#0d121d);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:35px;

    box-shadow:
        0 20px 40px rgba(0,0,0,.35);

}

.destaque-dia-card h3{

    color:#ff4455;
    font-size:34px;
    font-weight:700;

}

.destaque-dia-card img{

    width:150px;
    height:150px;

    border-radius:25px;

    object-fit:cover;

    border:4px solid #10b981;

    box-shadow:
        0 0 30px rgba(16,185,129,.45);

    transition:.35s;

}

.destaque-dia-card img:hover{

    transform:scale(1.05);

}

.destaque-dia-card h2{

    margin-top:20px;

    font-size:36px;

    font-weight:700;

}

.destaque-dia-card p{

    color:#94a3b8;

    font-size:18px;

}

.destaque-dia-card .btn{

    border-radius:30px;

    padding:12px 28px;

    font-size:17px;

    font-weight:600;

}

@media(max-width:768px){

.destaque-dia-card{

    padding:25px 15px;

}

.destaque-dia-card h3{

    font-size:25px;

}

.destaque-dia-card img{

    width:120px;
    height:120px;

}

.destaque-dia-card h2{

    font-size:28px;

}

}
/*======================================
  VOCÊ TAMBÉM PODE GOSTAR
=======================================*/

/* ======================================
   RANKING DIÁRIO — 10 RÁDIOS
====================================== */
.ranking-diario-card{
    overflow:hidden;
}

.ranking-diario-heading{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-height:30px;
    margin-bottom:14px;
}

.ranking-diario-heading h4{
    margin:0 !important;
    font-size:24px;
    line-height:1.25;
    font-weight:500;
    font-family:inherit;
    text-align:center;
}

.ranking-diario-heading span{
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    color:#64748b;
    font-size:12px;
    white-space:nowrap;
}

.ranking-diario-scroll{
    gap:8px;
}

.ranking-diario-card-item{
    flex:0 0 100px;
    min-width:100px;
}

.ranking-diario-medal{
    height:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:21px;
}

.ranking-diario-card-item img{
    width:85px !important;
    height:85px !important;
    object-fit:cover;
    border-radius:18px;
}

.ranking-diario-name{
    font-size:12px !important;
    font-weight:600;
}

.ranking-diario-plays{
    margin-top:4px;
    color:#94a3b8;
    font-size:11px;
    white-space:nowrap;
}

@media(max-width:600px){
    .ranking-diario-heading{
        min-height:0;
        padding-bottom:22px;
    }

    .ranking-diario-heading h4{
        font-size:24px;
        width:100%;
    }

    .ranking-diario-heading span{
        right:0;
        top:auto;
        bottom:0;
        transform:none;
    }
}

.recomendadas-scroll{

    display:flex;

    gap:11px;

    overflow-x:auto;

    flex-wrap:nowrap;

    padding-bottom:10px;

    scrollbar-width:none;

}

.recomendadas-scroll::-webkit-scrollbar{

    display:none;

}

.recomendadas-card{

    min-width:105px;

    padding:8px;

}

.recomendadas-card:hover{

    transform:translateY(-6px);

    border-color:#10b981;

    box-shadow:

        0 10px 25px rgba(16,185,129,.20);

}

.recomendadas-card img{

    width:85px !important;

    height:85px !important;

    object-fit:cover;

    border-radius:18px;

    margin:auto;

    display:block;

    transition:.30s;

}

.recomendadas-card:hover img{

    transform:scale(1.08);

}

.recomendadas-card .text-white{

    font-size:13px;

    margin-top:10px;

    font-weight:600;

    white-space:nowrap;

    overflow:hidden;

    text-overflow:ellipsis;

}
/*======================================
  LOGO DESTAQUE PREMIUM
======================================*/

.logo-destaque-premium{

     width:200px;
     height:200px;

    object-fit:cover;

    border-radius:30px;

    margin:auto;

    display:block;

    background:#fff;

    padding:6px;

    border:4px solid #10b981;

    box-shadow:

        0 0 15px rgba(16,185,129,.30),
        0 0 35px rgba(16,185,129,.20);

    transition:.35s;

    animation:pulseRadio 2s infinite;

}

.logo-destaque-premium:hover{

    transform:scale(1.08) rotate(2deg);

}

@keyframes pulseRadio{

    0%{

        box-shadow:
        0 0 10px rgba(16,185,129,.20),
        0 0 20px rgba(16,185,129,.15);

    }

    50%{

        box-shadow:
        0 0 25px rgba(16,185,129,.70),
        0 0 60px rgba(16,185,129,.45);

    }

    100%{

        box-shadow:
        0 0 10px rgba(16,185,129,.20),
        0 0 20px rgba(16,185,129,.15);

    }

}

@media(max-width:768px){

.logo-destaque-premium{

    width:130px;
    height:130px;

}

}
/*=========================
TEXTO DO DESTAQUE
=========================*/

.titulo-radio-destaque{

    margin-top:22px;

    font-size:26px;

    font-weight:700;

    color:#fff;

    line-height:1.2;

}

.info-radio-destaque{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:14px;

    margin-top:10px;

    color:#94a3b8;

    font-size:17px;

    flex-wrap:wrap;

}

.info-radio-destaque i{

    color:#10b981;

    margin-right:5px;

}

.info-radio-destaque .separador{

    opacity:.5;

}

@media(max-width:768px){

.titulo-radio-destaque{

    font-size:22px;

}

}
/*==================================
BOTÃO PREMIUM
==================================*/

.btn-ouvir-premium{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

     padding:10px 22px;

    margin-top:18px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    color:#fff;

    font-size:16px;

    font-weight:700;

    letter-spacing:.3px;

    background:linear-gradient(
        135deg,
        #18c37a,
        #0b8f5b
    );

    box-shadow:
        0 8px 22px rgba(16,185,129,.30);

    transition:.35s;

}

.btn-ouvir-premium:hover{

    transform:translateY(-2px);

    box-shadow:
        0 12px 28px rgba(16,185,129,.45);

}
/*==============================
INFO EXTRA
==============================*/

.info-extra-radio{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-top:28px;

    flex-wrap:wrap;

}

.item-extra{

    background:#101827;

    padding:10px 18px;

    border-radius:30px;

    color:#cbd5e1;

    line-height:1;

    border:1px solid rgba(255,255,255,.05);

    transition:.3s;

}

.item-extra:hover{

    background:#172036;

    transform:translateY(-2px);

}

.item-extra i{

    color:#10b981;

    margin-right:6px;

}
.texto-btn{
    font-size:18px;
    font-weight:700;
}

.area-player-radios{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
    width:100%;
}

.radios-lateral{
    width:320px;
}

.radio-central{
    flex:0 0 auto;
    text-align:center;
}
.lista-lateral{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.radio-lateral{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px;
    border-radius:12px;
    background:#171d2a;
    cursor:pointer;
    transition:.25s;
}

.radio-lateral:hover{
    background:#222c40;
}

.radio-lateral img{
    width:70px;
    height:70px;
    border-radius:12px;
    object-fit:cover;
}

.radio-lateral h6{
    color:#fff;
    margin:0;
    font-size:15px;
}

.radio-lateral span{
    color:#8c97aa;
    font-size:13px;
}
/*======================================
  TOP RÁDIOS DA SEMANA
=======================================*/

.top-radio-card{

    flex:0 0 130px;

    width:130px;

    overflow:hidden;

}


.top-radio-card:hover{

    transform:translateY(-6px);

    border-color:#10b981;

    box-shadow:0 10px 25px rgba(16,185,129,.20);

}


.top-radio-card img{

     width:110px;
    height:110px;

    object-fit:cover;

    border-radius:18px;

}
.acoes-radio-premium{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;

    margin-top:22px;

}

.acoes-radio-premium a{

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#1b2330;

    color:#10b981;

    text-decoration:none;

    font-size:20px;

    border:2px solid rgba(16,185,129,.25);

    transition:.30s;

}

.acoes-radio-premium a:hover{

    background:#10b981;

    color:#fff;

    transform:translateY(-3px) scale(1.08);

    box-shadow:0 8px 20px rgba(16,185,129,.45);

}
.badge-ao-vivo{

    padding:1px 8px;

    font-size:13px;

    line-height:1;

}
@keyframes piscarAoVivo{

    0%{opacity:1;}

    50%{opacity:.2;}

    100%{opacity:1;}

}
.favoritar-radio{

    margin-top:20px;

    display:flex;
    justify-content:center;

}

.btn-favoritar-radio{

    background:transparent;

    color:#ff4b5c;

    border:2px solid #ff4b5c;

    padding:12px 28px;

    border-radius:40px;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 0 15px rgba(255,75,92,.15);

}

.btn-favoritar-radio:hover{

    background:#ff4b5c;

    color:#fff;

    transform:translateY(-2px);

    box-shadow:0 10px 25px rgba(255,75,92,.35);

}
.titulo-radio-linha{

    display:flex;
    justify-content:center;
    align-items:center;

    gap:11px;

}

.btn-favorito-player{

    width:46px;
    height:46px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:#1b2330;

    color:#ff4b5c;

    font-size:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.35s;

    box-shadow:0 0 15px rgba(255,75,92,.20);

}

.btn-favorito-player:hover{

    transform:scale(1.15);

    background:#ff4b5c;

    color:#fff;

}

.badge-ao-vivo{

    display:flex;
    align-items:center;

    gap:6px;

    color:#ff2d2d;

    font-size:18px;

    font-weight:700;

    animation:piscarAoVivo 1s infinite;

}
#blocoUltimas{
    padding-left: 1 !important;
    padding-right: 1 !important;
}
.popup-overlay{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.75);
    backdrop-filter:blur(5px);

    display:none;

    justify-content:center;
    align-items:center;

    opacity:0;

    transition:opacity .35s ease;

    z-index:999999;

}
.popup-overlay.show{

    display:flex;
    opacity:1;

}

.popup-box{

    width:550px;
    max-width:95%;

    background:#111827;

    border-radius:25px;

    padding:35px;

    text-align:center;

    border-top:5px solid #009966;

    box-shadow:0 20px 50px rgba(0,0,0,.45);

    position:relative;

    transform:scale(.90) translateY(20px);
    opacity:0;

    transition:
        transform .35s ease,
        opacity .35s ease;

}
.popup-overlay.show .popup-box{

    transform:scale(1) translateY(0);
    opacity:1;

}

.popup-overlay.fechando .popup-box{

    transform:scale(.90) translateY(20px);
    opacity:0;

}

.popup-fechar{

    position:absolute;
    right:18px;
    top:15px;

    border:none;
    background:none;

    color:#fff;
    font-size:22px;

    cursor:pointer;

}

.popup-icone{

    width:70px;
    height:70px;

    margin:auto;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#1f2937;

    font-size:35px;

    margin-bottom:18px;

}

.popup-box h2{

    color:#fff;
    font-weight:700;

}

.linha-popup{

    width:70px;
    height:4px;

    background:#00d084;

    margin:18px auto;

    border-radius:20px;

}

.popup-box p{

    color:#cbd5e1;
    line-height:1.8;

}

.btn-popup{

    width:100%;
    border:none;
    margin-top:25px;
    padding:15px;
    border-radius:40px;

    background:linear-gradient(135deg,#00d084,#00b36b);

    color:#fff;
    font-size:20px;
    font-weight:bold;
    cursor:pointer;

    transition:.3s;

}

.popup-check{

    margin-top:20px;

    display:flex;
    justify-content:center;
    gap:10px;

    color:#cbd5e1;

}
.btn-popup{

    width:100%;
    border:none;
    margin-top:25px;
    padding:15px;

    border-radius:40px;

    background:linear-gradient(135deg,#00b86b,#008f5a,#006d45);

    color:#fff;
    font-size:20px;
    font-weight:bold;

    cursor:pointer;

    transition:.35s ease;

    box-shadow:0 8px 25px rgba(0,184,107,.35);

}
@keyframes popupEntrada{

    from{

        opacity:0;
        transform:translateY(-40px) scale(.85);

    }

    to{

        opacity:1;
        transform:translateY(0) scale(1);

    }

}
.btn-popup:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,184,107,.45);

    filter:brightness(1.05);

}
.popup-box.fechando{

    animation:popupSaida .35s forwards;

}

.popup-overlay.fechando{

    animation:fadeSaida .35s forwards;

}

@keyframes popupSaida{

    to{

        opacity:0;
        transform:scale(.85) translateY(-30px);

    }

}

@keyframes fadeSaida{

    to{

        opacity:0;

    }

}
.btn-popup:active{

    transform:scale(.97);

}
/* Estado inicial */
.popup-overlay{
    opacity:0;
    visibility:hidden;
    transition:opacity .30s ease, visibility .30s ease;
}

.popup-box{
    transform:scale(.90) translateY(20px);
    opacity:0;
    transition:transform .30s ease, opacity .30s ease;
}

/* Quando abre */
.popup-overlay.show{
    opacity:1;
    visibility:visible;
}

.popup-overlay.show .popup-box{
    transform:scale(1) translateY(0);
    opacity:1;
}

/* Quando fecha */
.popup-overlay.fechando{
    opacity:0;
}

.popup-overlay.fechando .popup-box{
    transform:scale(.90) translateY(20px);
    opacity:0;
}
/* Fundo */
.popup-overlay{
    opacity:0;
    transition:opacity .30s ease;
}

/* Quando abre */
.popup-overlay.show{
    opacity:1;
}

/* Quando fecha */
.popup-overlay.fechando{
    opacity:0;
}

/* Caixa */
.popup-box{
    transform:scale(.92) translateY(15px);
    opacity:0;
    transition:transform .30s ease, opacity .30s ease;
}

/* Entrada */
.popup-overlay.show .popup-box{
    transform:scale(1) translateY(0);
    opacity:1;
}

/* Saída */
.popup-overlay.fechando .popup-box{
    transform:scale(.92) translateY(15px);
    opacity:0;
}
/* HERO HOME */

.hero-home{
    background:linear-gradient(135deg,#0f172a,#111827,#1f2937);
    padding:40px 20px 20px;
    text-align:center;
}

.hero-badge{

    display:inline-block;

    background:#10b981;

    color:#fff;

    padding:8px 20px;

    border-radius:30px;

    font-weight:700;

    margin-bottom:20px;

}

.hero-home h1{

    color:#fff;

    font-size:48px;

    font-weight:800;

    margin-bottom:13px;

}

.hero-home p{

    color:#cbd5e1;

    font-size:20px;

    max-width:750px;

    margin:auto;

    margin-bottom:14px;

}

.hero-botoes{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}
.titulo-destaque-dia{
    text-align:center;
    color:#15b873;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}
.titulo-destaque-dia{
    text-align:center;
    color:#15b873;
    font-weight:700;
    font-size:26px; /* aumente aqui */
    margin:20px 0 15px;
}
.card-dashboard{

    background:#161c2b;
    border:1px solid #243042;
    color:#fff;
    border-radius:10px;
    min-height:145px;

    display:flex;
    justify-content:center;
    align-items:center;
}

.card-dashboard:hover{

    transform:translateY(-3px);
    transition:.3s;
    box-shadow:0 0 20px rgba(16,185,129,.18);

}
/* Contador mobile */
.contador-topo-mobile{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    height:55px;

    background:#111622;

    border:1px solid rgba(16,185,129,.30);

    border-radius:30px;

    color:#fff;

    box-shadow:0 0 12px rgba(16,185,129,.12);

}

.contador-topo-mobile i{

    color:#10b981;
    font-size:18px;

}

.contador-topo-mobile strong{

    color:#fff;
    font-size:24px;
    font-weight:700;

}

.contador-topo-mobile span{

    color:#dbe4ee;
    font-size:18px;

}
.recomendadas-card{
    cursor:pointer;
    transition:.25s;
}

.recomendadas-card:hover{
    transform:translateY(-4px);
    filter:brightness(1.05);
}
/* Todo o CSS existente */

/* ==========================
   PLAYER MOBILE
========================== */

@media (max-width:768px){

.player-premium{
    padding:10px;
}

.player-wrapper{
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:15px;
}

.player-info{
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.player-avatar{
    width:70px;
    height:70px;
    border-radius:12px;
}

.player-info h6{
    font-size:18px;
    margin-top:10px;
}

.player-volume{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
}

.player-volume input{
    width:180px !important;
}

.btn-play-pause{
    width:72px;
    height:72px;
    font-size:28px;
}

.audio-waves{
    margin:auto;
}

}

/* Fecha o style */
.btn-ouvir-radio{

    width:100%;
    height:36px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;

    background:linear-gradient(135deg,#16a34a,#22c55e);

    color:#fff;

    border:none;

    border-radius:25px;

    font-size:13px;
    font-weight:700;

    white-space:nowrap;

    flex-shrink:0;

}

    color:#fff;

    border:none;

    border-radius:50px;

    padding:8px 18px;

    font-size:13px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

    width:100%;

    box-shadow:
    0 8px 22px rgba(16,185,129,.30);

}


.btn-ouvir-radio:hover{

    transform:translateY(-2px);

    box-shadow:
    0 12px 28px rgba(16,185,129,.45);

}
/* =====================================================
   MENU PRINCIPAL - AJUSTE PARA CABER NO PAINEL

#menuMobilePortal .scrolling-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    margin: 0 auto;
    padding: 5px 0 10px;
    overflow: visible;
}

/* Botões do menu */
#menuMobilePortal .category-chip {
    flex: 0 0 auto;
    padding: 8px 13px;
    font-size: 13px;
    gap: 8px;
}

/* Botão cadastrar */
#menuMobilePortal .category-chip.btn-cadastrar {
    padding: 8px 15px;
}

/* Botão suporte */
#menuMobilePortal .category-chip[style*="background:#2563eb"] {
    padding: 8px 15px !important;
}

/* =====================================================
   CELULAR
   ===================================================== */

@media (max-width: 768px) {

    #menuMobilePortal .scrolling-wrapper {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 8px;
        padding-left: 5px;
        padding-right: 5px;
    }

    #menuMobilePortal .category-chip {
        flex: 0 0 auto;
        padding: 9px 14px;
        font-size: 13px;
    }

}
/* =====================================================
   MENU PRINCIPAL - AJUSTE FINAL
   ===================================================== */

#menuMobilePortal .scrolling-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    gap: 8px;

    overflow: visible !important;

    padding: 4px 0 8px 0;
}


/* BOTÕES DO MENU */

#menuMobilePortal .category-chip {
    flex: 0 0 auto;

    padding: 9px 14px;

    font-size: 15px;

    gap: 6px;

    white-space: nowrap;
}


/* BOTÃO CADASTRAR RÁDIO */

#menuMobilePortal .category-chip.btn-cadastrar {
    padding: 8px 15px;
}


/* BOTÃO SUPORTE */

#menuMobilePortal .category-chip[style*="background:#2563eb"] {
    padding: 8px 15px !important;
    font-size: 13px;
}


/* =====================================================
   CELULAR
   ===================================================== */

@media (max-width: 768px) {

    #menuMobilePortal .scrolling-wrapper {

        flex-wrap: nowrap;

        justify-content: flex-start;

        overflow-x: auto !important;
        overflow-y: hidden !important;

        gap: 7px;

        padding-left: 5px;
        padding-right: 5px;
    }


    #menuMobilePortal .category-chip {

        flex: 0 0 auto;

        padding: 8px 12px;

        font-size: 12px;
    }

}
/* =====================================================
   WEB TV - CARDS EM DESTAQUE
===================================================== */

.webtv-lista{
    display:flex;
    flex-direction:column;
    gap:20px;
}
/* =====================================================
   WEB TVs - CARDS ESTILO CAPA DE VÍDEO
===================================================== */

.webtv-lista {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}


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

.webtv-destaque {
    display: flex;
    flex-direction: column;

    width: 100%;
    min-width: 0;

    background: #111827;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;

    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0,0,0,.20);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.webtv-destaque:hover {
    transform: translateY(-4px);

    border-color: rgba(16,185,129,.45);

    box-shadow:
        0 14px 35px rgba(0,0,0,.35);
}


/* =====================================================
   CAPA / LOGO
===================================================== */

.webtv-destaque-logo {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    background: #05070b;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


/* IMAGEM DA WEB TV */

.webtv-destaque-logo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    padding: 0;

    border-radius: 0;

    transition: transform .35s ease;
}


/* Efeito de zoom na capa */

.webtv-destaque:hover .webtv-destaque-logo img {
    transform: scale(1.04);
}


/* =====================================================
   FAVORITO
===================================================== */

.webtv-favorito {
    position: absolute;

    top: 10px;
    right: 10px;

    width: 32px;
    height: 32px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,.65);

    color: #fff;

    font-size: 14px;

    z-index: 5;
}


/* =====================================================
   INFORMAÇÕES
===================================================== */

.webtv-destaque-info {
    width: 100%;

    padding: 14px 15px 16px;

    display: flex;
    flex-direction: column;

    min-width: 0;
}


/* =====================================================
   TAGS
===================================================== */

.webtv-tags {
    display: flex;

    gap: 7px;

    margin-bottom: 9px;

    overflow: hidden;
}

.webtv-tag {
    display: inline-flex;
    align-items: center;

    padding: 5px 10px;

    border-radius: 18px;

    background: rgba(37,99,235,.15);

    border: 1px solid rgba(37,99,235,.30);

    color: #60a5fa;

    font-size: 10px;

    font-weight: 700;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.webtv-tag-internacional {
    background: rgba(37,99,235,.15);

    border-color: rgba(37,99,235,.30);

    color: #60a5fa;
}


/* =====================================================
   NOME
===================================================== */

.webtv-destaque-info h2 {
    margin: 0 0 8px;

    color: #fff;

    font-size: 17px;
    font-weight: 800;

    line-height: 1.2;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/* =====================================================
   DESCRIÇÃO
===================================================== */

.webtv-descricao {
    margin: 0 0 10px;

    color: #cbd5e1;

    font-size: 12px;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =====================================================
   LOCALIZAÇÃO
===================================================== */

.webtv-localizacao {
    display: flex;

    align-items: center;

    gap: 5px;

    margin-bottom: 12px;

    color: #64748b;

    font-size: 11px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.webtv-localizacao i {
    color: #ef4444;

    flex-shrink: 0;
}


/* =====================================================
   BOTÃO
===================================================== */

.btn-webtv-destaque {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    width: 100%;

    padding: 9px 12px;

    background: #0866e8;

    color: #fff !important;

    border-radius: 8px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: .3s;
}

.btn-webtv-destaque:hover {
    background: #0878ff;

    transform: translateY(-1px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .webtv-lista {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 768px) {

    .webtv-lista {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .webtv-destaque-info {
        padding: 11px 12px 13px;
    }

    .webtv-destaque-info h2 {
        font-size: 14px;
    }

    .webtv-descricao {
        font-size: 11px;
    }

}


/* =====================================================
   CELULAR PEQUENO
===================================================== */

@media (max-width: 480px) {

    .webtv-lista {
        grid-template-columns: 1fr;
    }

}

    .webtv-destaque-logo{

        width:100%;

        min-width:0;

        height:220px;
    }


    .webtv-destaque-logo img{

        padding:20px;
    }


    .webtv-destaque-info{

        padding:25px 22px;
    }


    .webtv-destaque-info h2{

    font-size:26px;

}

.webtv-descricao{

    font-size:14px;

}


    .webtv-descricao{

        font-size:14px;

        line-height:1.6;
    }


    .btn-webtv-destaque{

        width:100%;
    }

}
/* =====================================================
   WEB TVs - NOVO VISUAL
===================================================== */

.webtv-lista {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}
.webtv-destaque{
    display:flex;
    width:100%;
    min-height:260px;

    background:linear-gradient(
        135deg,
        #151c2b,
        #101622
    );

    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    transition:.3s ease;
}

.webtv-destaque:hover{
    transform:translateY(-2px);

    border-color:rgba(16,185,129,.45);

    box-shadow:0 15px 40px rgba(0,0,0,.35);
}


/* =====================================================
   ÁREA DO LOGO
===================================================== */

.webtv-destaque-logo{
    position:relative;

    width:32%;
    min-width:260px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#080d14;

    padding:20px;
}

.webtv-destaque-logo img{
    width:100%;
    max-width:280px;
    height:200px;

    object-fit:contain;

    border-radius:12px;
}


/* =====================================================
   SELO EM DESTAQUE
===================================================== */

.webtv-badge-destaque{
    position:absolute;

    top:15px;
    left:15px;

    padding:7px 15px;

    border-radius:30px;

    background:#f97316;

    color:#fff;

    font-size:11px;
    font-weight:800;

    letter-spacing:.4px;
}


/* =====================================================
   INFORMAÇÕES
===================================================== */

.webtv-destaque-info{
    flex:1;

    padding:28px 32px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}


/* =====================================================
   TAGS
===================================================== */

.webtv-tags{
    display:flex;
    gap:8px;

    margin-bottom:12px;
}

.webtv-tag{
    display:inline-flex;
    align-items:center;

    padding:6px 13px;

    border-radius:20px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    color:#cbd5e1;

    font-size:11px;
    font-weight:700;

    text-transform:uppercase;
}

.webtv-tag-internacional{
    color:#60a5fa;

    background:rgba(37,99,235,.12);

    border-color:rgba(37,99,235,.30);
}


/* =====================================================
   NOME
===================================================== */

.webtv-destaque-info h2{
    margin:0 0 12px;

    color:#fff;

    font-size:30px;
    font-weight:800;

    line-height:1.15;
}


/* =====================================================
   DESCRIÇÃO
===================================================== */

.webtv-descricao{
    margin:0 0 14px;

    max-width:700px;

    color:#cbd5e1;

    font-size:14px;

    line-height:1.6;
}


/* =====================================================
   LOCALIZAÇÃO
===================================================== */

.webtv-localizacao{
    display:flex;
    align-items:center;

    gap:6px;

    color:#94a3b8;

    font-size:13px;

    margin-bottom:18px;
}

.webtv-localizacao i{
    color:#ef4444;
}


/* =====================================================
   BOTÃO
===================================================== */

.btn-webtv-destaque{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:8px;

    width:max-content;

    padding:11px 22px;

    background:#0866e8;

    color:#fff !important;

    border-radius:9px;

    text-decoration:none;

    font-size:14px;
    font-weight:700;

    transition:.3s;

    box-shadow:0 7px 18px rgba(8,102,232,.25);
}

.btn-webtv-destaque:hover{
    background:#0878ff;

    transform:translateY(-2px);

    box-shadow:0 10px 25px rgba(8,102,232,.40);
}


/* =====================================================
   CELULAR
===================================================== */

@media(max-width:768px){

    .webtv-destaque{
        flex-direction:column;
        min-height:auto;
    }

    .webtv-destaque-logo{
        width:100%;
        min-width:0;

        height:190px;

        padding:15px;
    }

    .webtv-destaque-logo img{
        max-width:240px;
        height:160px;
    }

    .webtv-destaque-info{
        padding:22px 20px;
    }

    .webtv-destaque-info h2{
        font-size:25px;
    }

    .webtv-descricao{
        font-size:13px;
    }

    .btn-webtv-destaque{
        width:100%;
    }

}
/* =====================================================
   WEB TV - CARD NOVO
===================================================== */

.webtv-lista {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.webtv-destaque {
    display: flex;
    flex-direction: column;

    width: 100%;
    min-height: 0;

    background: linear-gradient(
        135deg,
        #151c2b,
        #101622
    );

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;

    overflow: hidden;

    box-shadow: 0 8px 22px rgba(0,0,0,.22);

    transition: .3s ease;
}

.webtv-destaque:hover {
    transform: translateY(-4px);

    border-color: rgba(16,185,129,.45);

    box-shadow: 0 15px 35px rgba(0,0,0,.35);
}


/* =====================================================
   CAPA
===================================================== */

.webtv-capa {
    position: relative;

    width: 100%;
    height: 190px;

    background: #080d14;

    overflow: hidden;
}

.webtv-capa img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* =====================================================
   FAVORITO
===================================================== */

.webtv-favorito {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(0,0,0,.65);

    color: #fff;

    font-size: 16px;

    z-index: 5;
}


/* =====================================================
   INFORMAÇÕES
===================================================== */

.webtv-destaque-info {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 18px;
}


/* =====================================================
   TAGS
===================================================== */

.webtv-tags {
    display: flex;

    gap: 7px;

    margin-bottom: 10px;

    min-height: 26px;
}

.webtv-tag {
    display: inline-flex;
    align-items: center;

    padding: 5px 10px;

    border-radius: 20px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.10);

    color: #cbd5e1;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}

.webtv-tag-internacional {
    color: #60a5fa;

    background: rgba(37,99,235,.12);

    border-color: rgba(37,99,235,.30);
}


/* =====================================================
   NOME
===================================================== */

.webtv-destaque-info h2 {
    margin: 0 0 8px;

    color: #fff;

    font-size: 18px;
    font-weight: 800;

    line-height: 1.25;

    height: 45px;

    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* =====================================================
   DESCRIÇÃO
===================================================== */

.webtv-descricao {
    margin: 0 0 10px;

    color: #94a3b8;

    font-size: 12px;

    line-height: 1.5;

    height: 36px;

    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* =====================================================
   LOCALIZAÇÃO
===================================================== */

.webtv-localizacao {
    display: flex;
    align-items: center;

    gap: 6px;

    color: #94a3b8;

    font-size: 11px;

    min-height: 20px;

    margin-bottom: 12px;
}

.webtv-localizacao i {
    color: #ef4444;
}


/* =====================================================
   BOTÃO
===================================================== */

.btn-webtv-destaque {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    width: 100%;

    height: 42px;

    margin-top: auto;

    padding: 0 15px;

    border: none;
    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #18c37a,
        #0b8f5b
    );

    color: #fff !important;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    box-sizing: border-box;

    transition: .3s ease;
}

.btn-webtv-destaque:hover {
    transform: translateY(-2px);

    background: linear-gradient(
        135deg,
        #20d889,
        #0ca56a
    );

    color: #fff !important;

    box-shadow: 0 8px 20px rgba(16,185,129,.25);
}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 992px) {

    .webtv-lista {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 576px) {

    .webtv-lista {
        grid-template-columns: 1fr;
    }

    .webtv-capa {
        height: 200px;
    }

}
.webtv-nome {
    margin: 0 0 8px;

    color: #fff;

    font-size: 18px;
    font-weight: 800;

    line-height: 1.25;

    height: 45px;

    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/* =====================================================
   WEB TV - PADRÃO DOS CARDS
===================================================== */

.webtv-lista {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.webtv-destaque {
    display: flex !important;
    flex-direction: column !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: 100% !important;

    background: #111827 !important;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;

    overflow: hidden;
}

.webtv-destaque-logo {
    position: relative;

    width: 100%;
    min-width: 0;
    height: 145px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #080d14;

    padding: 12px;
}

.webtv-destaque-logo img {
    width: 100%;
    height: 120px;

    object-fit: contain;

    border-radius: 8px;
}

.webtv-destaque-info {
    width: 100%;
    padding: 14px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.webtv-nome {
    height: 45px !important;
    margin: 0 0 10px !important;

    font-size: 18px !important;
    line-height: 1.25 !important;

    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.webtv-descricao {
    font-size: 13px !important;
    line-height: 1.5 !important;
}

.webtv-localizacao {
    margin-bottom: 15px !important;
}

.btn-webtv-destaque {
    width: 100% !important;
    margin-top: auto;

    padding: 11px 15px !important;
}
@media (max-width: 1100px) {

    .webtv-lista {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 768px) {

    .webtv-lista {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .webtv-destaque-logo {
        height: 130px;
    }

    .webtv-destaque-logo img {
        height: 105px;
    }

}

@media (max-width: 480px) {

    .webtv-lista {
        grid-template-columns: 1fr;
    }

}
/* =====================================================
   BOTÃO DAS WEB TVs
===================================================== */

.webtv-card-botao {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 100% !important;
    min-height: 40px;

    margin-top: 12px;
    padding: 10px 14px;

    gap: 8px;

    background: linear-gradient(
        135deg,
        #0878ff,
        #0759c9
    ) !important;

    border: 1px solid rgba(96,165,250,.35);

    border-radius: 9px;

    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 13px;
    font-weight: 700;

    line-height: 1;

    box-sizing: border-box;

    box-shadow:
        0 6px 16px rgba(8,102,232,.28);

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


/* ÍCONE */

.webtv-card-botao i {
    color: #ffffff !important;
    font-size: 12px;
}


/* PASSAR O MOUSE */

.webtv-card-botao:hover {
    background: linear-gradient(
        135deg,
        #1590ff,
        #0866e8
    ) !important;

    color: #ffffff !important;

    text-decoration: none !important;

    transform: translateY(-2px);

    box-shadow:
        0 9px 22px rgba(8,102,232,.42);
}


/* CLIQUE */

.webtv-card-botao:active {
    transform: translateY(0);
}

.webtv-card-botao:hover {
    background: linear-gradient(
        135deg,
        #20d889,
        #0ca66a
    );

    color: #fff !important;

    transform: translateY(-2px);

    box-shadow:
        0 9px 22px rgba(16,185,129,.35);
}


/* ÍCONE */

.webtv-card-botao .icone-play {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    border-radius: 50%;

    background: rgba(255,255,255,.18);
}

.webtv-card-botao .icone-play i {
    font-size: 10px;

    color: #fff;
}


/* TEXTO */

.webtv-card-botao .texto-btn {
    color: #fff;
}
/* DESTAQUE BOTÃO WEB TV */

.chip-webtv {

    background: linear-gradient(
        135deg,
        #2563eb,
        #9333ea
    ) !important;

    color:#fff !important;

    font-weight:700;

    border:1px solid rgba(255,255,255,.25);

    box-shadow:
    0 0 18px rgba(59,130,246,.7);

    position:relative;

}


.chip-webtv:hover {

    transform:translateY(-3px);

    box-shadow:
    0 0 30px rgba(147,51,234,.9);

}


.webtv-live {

    background:#ef4444;

    color:white;

    font-size:9px;

    padding:3px 7px;

    border-radius:20px;

    margin-left:5px;

    font-weight:800;

    animation:pulsaWebTV 1.5s infinite;

}


@keyframes pulsaWebTV {

    50% {

        opacity:.5;

    }

}
.chip-webtv{

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    color:#fff;

    border:none;

    box-shadow:
    0 5px 15px rgba(37,99,235,.35);

}


.chip-webtv:hover{

    transform:translateY(-3px);

    box-shadow:
    0 10px 25px rgba(37,99,235,.50);

}


.webtv-badge{

    background:#ef4444;

    color:#fff;

    padding:3px 7px;

    border-radius:20px;

    font-size:10px;

    font-weight:800;

    animation:pulsoLive 1.2s infinite;

}


@keyframes pulsoLive{

50%{

opacity:.5;

}

}
/* =====================================
   MENU PRINCIPAL - BOTÕES AZUIS
===================================== */

.chip-webtv,
.chip-fm,
.chip-web {

    background: linear-gradient(
        135deg,
        #0878ff,
        #0759c9
    ) !important;

    color:#fff !important;

    border-color:rgba(96,165,250,.45) !important;

}


/* Ícones dos botões */

.chip-webtv i,
.chip-fm i,
.chip-web i {

    color:#fff !important;

}


/* Hover */

.chip-webtv:hover,
.chip-fm:hover,
.chip-web:hover {

    background:linear-gradient(
        135deg,
        #1590ff,
        #0866e8
    ) !important;

    transform:translateY(-2px);

    color:#fff !important;

}
/* =====================================
   SOMENTE WEB TVs AO VIVO AZUL
===================================== */

.chip-webtv {

    background: linear-gradient(
        135deg,
        #0878ff,
        #0759c9
    ) !important;

    color:#fff !important;

    border-color:rgba(96,165,250,.45) !important;

}


.chip-webtv i {

    color:#fff !important;

}


.chip-webtv:hover {

    background:linear-gradient(
        135deg,
        #1590ff,
        #0866e8
    ) !important;

    color:#fff !important;

    transform:translateY(-2px);

}
#menuMobilePortal .scrolling-wrapper{
    display:flex;
    flex-wrap:nowrap;
    justify-content:flex-start;
    align-items:center;
    gap:8px;

    overflow-x:auto;
    overflow-y:hidden;

    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;

    padding:4px 6px 8px;
}

#menuMobilePortal .scrolling-wrapper::-webkit-scrollbar{
    display:none;
}

#menuMobilePortal .category-chip{
    flex:0 0 auto;
    white-space:nowrap;
    padding:9px 14px;
    font-size:12px;
}
/* =====================================================
   MENU PRINCIPAL DO PORTAL
   CONFIGURAÇÃO ÚNICA
===================================================== */

#menuMobilePortal {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

#menuMobilePortal .scrolling-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 auto;
    padding: 5px 0 10px;
    overflow: visible;
}

#menuMobilePortal .category-chip {
    flex: 0 0 auto;
    white-space: nowrap;
    margin: 0;
}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 768px) {

    #menuMobilePortal {
        padding-left: 10px;
        padding-right: 10px;
    }

    #menuMobilePortal .scrolling-wrapper {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 5px 0 10px;
        gap: 8px;

        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    #menuMobilePortal .scrolling-wrapper::-webkit-scrollbar {
        display: none;
    }

    #menuMobilePortal .category-chip {
        flex: 0 0 auto;
    }

}

/* ---------------------------------------------------------
   AJUSTES ESPECÍFICOS — anteriormente no segundo <style>.
--------------------------------------------------------- */

/* Ranking de Favoritos: mesma densidade horizontal do ranking diário */
.ranking-favoritos-scroll{
    gap:8px;
}

.ranking-favoritos-card{
    flex:0 0 100px;
    min-width:100px;
    padding:8px;
}

.ranking-favoritos-card img{
    width:85px !important;
    height:85px !important;
    object-fit:cover;
    border-radius:18px;
    margin:auto;
    display:block;
}

.ranking-favoritos-card .text-white{
    font-size:12px !important;
    font-weight:600;
    margin-top:8px !important;
}

.ranking-favoritos-clickable{
    cursor:pointer;
    text-decoration:none !important;
    color:inherit;
    transition:transform .18s ease, filter .18s ease, background .18s ease;
}

.ranking-favoritos-clickable:hover{
    transform:translateY(-3px);
    filter:brightness(1.08);
}

.ranking-favoritos-clickable:focus-visible{
    outline:2px solid #10b981;
    outline-offset:3px;
}

@media(max-width:600px){
    .ranking-favoritos-scroll{
        gap:8px;
    }

    .ranking-favoritos-card{
        flex-basis:100px;
        min-width:100px;
    }
}
