/* ============================================
   OUVIRADIOS - ESTILO PRINCIPAL (LIMPO)
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f2f5;
    color: #333;
    min-height: 100vh;
}

/* ============================================
   HEADER E MENU
   ============================================ */

header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.search-box {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
}

.search-box button {
    padding: 12px 25px;
    background: #fff;
    color: #667eea;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.search-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

nav {
    padding: 0;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    background: #fff;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-menu::-webkit-scrollbar {
    height: 3px;
}

.nav-menu::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 3px;
}

.nav-menu li {
    white-space: nowrap;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #667eea;
    border-bottom-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.nav-menu a i {
    margin-right: 8px;
}

/* ============================================
   LAYOUT PRINCIPAL
   ============================================ */

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.secao {
    margin-bottom: 50px;
}

.secao:last-child {
    margin-bottom: 0;
}

.sidebar {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 150px;
}

/* ============================================
   SEÇÃO DE RÁDIOS E GRID
   ============================================ */

.section-title {
    font-size: 24px;
    color: #667eea;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    font-size: 26px;
}

.radio-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr) !important;
    /* Força 7 colunas */
    gap: 15px;
    margin-bottom: 40px;
}

.radio-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.radio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.radio-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 8px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
}

.radio-card:hover img {
    border-color: #667eea;
    transform: scale(1.05);
}

.radio-card h3 {
    font-size: 12px;
    margin-bottom: 4px;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.radio-card p {
    font-size: 10px;
    color: #666;
    margin-bottom: 4px;
}

.radio-card .views {
    font-size: 9px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: auto;
    /* Empurra para o fundo */
}

/* PAGINAÇÃO */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px 0;
}

.btn-pagination {
    padding: 10px 25px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-pagination:hover:not(.disabled) {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}

.btn-pagination.disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #f9f9f9;
}

.page-counter {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* ============================================
   SIDEBAR - MAIS OUVIDAS
   ============================================ */

.sidebar h3 {
    font-size: 18px;
    color: #667eea;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-radio {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    margin-bottom: 10px;
    border: 1px solid #f0f0f0;
}

.top-radio:hover {
    background: rgba(102, 126, 234, 0.05);
    border-color: #667eea;
    transform: translateX(5px);
}

.top-radio .rank {
    font-size: 20px;
    font-weight: bold;
    color: #667eea;
    min-width: 30px;
}

.top-radio img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.top-radio-info {
    flex: 1;
}

.top-radio-info h4 {
    font-size: 13px;
    margin-bottom: 3px;
    color: #333;
}

.top-radio-info p {
    font-size: 11px;
    color: #666;
    margin-bottom: 3px;
}

.top-radio-info .views {
    font-size: 10px;
    color: #999;
}

/* ============================================
   UTILITÁRIOS
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 1200px) {
    .radio-grid {
        grid-template-columns: repeat(5, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .radio-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .radio-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .header-top .container {
        flex-direction: column;
        gap: 15px;
    }

    .search-box {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

    .logo img {
        height: 45px;
    }

    .radio-social-sidebar {
        flex-direction: row;
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 968px) {
    .main-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo p {
        margin: 0 auto;
    }

    .social-icons {
        justify-content: center;
    }
}

/* ============================================
   FOOTER (MODERNO)
   ============================================ */

footer {
    background: #1a1a2e;
    margin-top: 50px;
    padding: 60px 0 20px;
    color: #a0a0b0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: #a0a0b0;
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h3,
.footer-social h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #667eea;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #6c757d;
    font-size: 13px;
}

/* ============================================
   SIDEBAR SOCIAL (PLAYER)
   ============================================ */

.radio-social-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 25px;
    border-left: 2px solid #f0f2f5;
    margin-left: 25px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white !important;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-btn.twitter {
    background: #000;
}

.social-btn.youtube {
    background: #FF0000;
}

.social-btn.whatsapp {
    background: #25D366;
}

/* ============================================
   TAGS DE GÊNERO
   ============================================ */

.radio-genres-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 12px 0;
}

.genre-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: #f0f2f5;
    color: #667eea;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #e8e8e8;
}

.genre-tag:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-1px);
}

.genre-tag i {
    margin-right: 5px;
    font-size: 10px;
}

/* ============================================
   ESTADOS (BADGES E CARDS)
   ============================================ */

.estados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.estado-card {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centraliza o nome */
    padding: 15px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    text-decoration: none !important;
    color: #333;
    transition: all 0.3s;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    text-align: center;
}

.estado-card:hover {
    background: #fff;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.15);
}

.estado-nome {
    font-size: 13px;
    color: #333;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* Generos e Estados Grids na Home */
.generos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.estados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

/* ============================================
   PÁGINA ONDE-ASSISTIR - LAYOUT FIXO
   Garante que o sidebar não quebre para baixo
   ============================================ */

/* Container principal da página onde-assistir */
.guia-layout-container {
    display: grid !important;
    grid-template-columns: 1fr 300px !important;
    gap: 30px !important;
    max-width: 1100px !important;
    width: 100% !important;
    margin: 40px auto !important;
    padding: 0 20px !important;
    align-items: start !important;
    box-sizing: border-box !important;
}

/* Conteúdo principal - garante que não exceda a largura */
.guia-layout-container .guia-main-content {
    min-width: 0 !important;
    /* Permite que o grid shrink */
    max-width: 100% !important;
    overflow: hidden !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

/* Sidebar - garante posição fixa à direita */
.guia-layout-container>aside {
    width: 100% !important;
    max-width: 300px !important;
    min-width: 280px !important;
    align-self: start !important;
    flex-shrink: 0 !important;
}

/* Sidebar inner - sticky */
.guia-layout-container .sidebar-inner {
    position: sticky !important;
    top: 130px !important;
    width: 100% !important;
    max-width: 300px !important;
    box-sizing: border-box !important;
}

/* Bloco de rádio no sidebar */
.guia-layout-container .radio-block {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Garante que imagens/iframes/tabelas não quebrem o layout */
.guia-layout-container .article-body img,
.guia-layout-container .article-body iframe,
.guia-layout-container .article-body video,
.guia-layout-container .article-body embed,
.guia-layout-container .article-body object {
    max-width: 100% !important;
    height: auto !important;
}

.guia-layout-container .article-body table {
    max-width: 100% !important;
    overflow-x: auto !important;
    display: block !important;
}

.guia-layout-container .article-body pre,
.guia-layout-container .article-body code {
    max-width: 100% !important;
    overflow-x: auto !important;
    white-space: pre-wrap !important;
    word-wrap: break-word !important;
}

/* Responsivo - apenas em telas pequenas o sidebar vai para baixo */
@media (max-width: 950px) {
    .guia-layout-container {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }

    .guia-layout-container>aside {
        max-width: 100% !important;
        min-width: auto !important;
    }

    .guia-layout-container .sidebar-inner {
        position: static !important;
        max-width: 100% !important;
        max-height: none !important;
        overflow-y: visible !important;
    }
}

/* ============================================
   HEADER BLACK NEON (Unificado do header.php)
   ============================================ */

/* Animação do pulso para o indicador online */
@keyframes pulse{
    0%   { opacity: 0.8; transform: scale(1); }
    70%  { opacity: 0;   transform: scale(3); }
    100% { opacity: 0;   transform: scale(3); }
}

.header-main-bar {
    background: #0a0f1e !important;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    padding: 15px 0;
    width: 100%;
}

.header-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    gap: 20px;
    box-sizing: border-box;
}

.header-logo-box {
    width: 250px;
    flex-shrink: 0;
}

.header-search-box {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.header-actions {
    width: auto;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.online-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
}

.online-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}
.online-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

.btn-enviar-radio {
    background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.btn-enviar-radio:hover {
    transform: translateY(-2px);
}

.main-nav-bar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    width: 100%;
    margin: 0;
    padding: 0;
}

.nav-menu-unified {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
    width: 100%;
}

.nav-menu-unified::-webkit-scrollbar {
    display: none;
}

.nav-menu-unified li a {
    display: block;
    padding: 16px 25px;
    color: #000000 !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    transition: all 0.3s ease !important;
}

.nav-menu-unified li a.nav-link-faves {
    color: #ef4444 !important;
}

.nav-menu-unified li a:hover {
    color: #6366f1 !important;
    background: rgba(99, 102, 241, 0.1) !important;
}

.nav-menu-unified li a.nav-link-faves:hover {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #ef4444 !important;
}

/* ============================================
   FOOTER BLACK NEON (Unificado do footer.php)
   ============================================ */

.site-footer-modern {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 60px 0 20px;
    font-family: 'Inter', sans-serif;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column-modern h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-modern li {
    margin-bottom: 10px;
}

.footer-links-modern li a {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    /* transition:color 0.2s; */ transition: transform 0.2s, opacity 0.2s;
}

.footer-links-modern li a:hover {
    color: #667eea;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.footer-social-icons a:hover {
    background: #667eea;
    transform: translateY(-2px);
}

.footer-bottom-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 99998;
}

.whatsapp-float__label {
    max-width: 240px;
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.94);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    box-shadow: 0 14px 32px rgba(2, 8, 23, 0.22);
}

.whatsapp-float__button {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-size: 30px;
    box-shadow: 0 18px 34px rgba(22, 163, 74, 0.34);
    /* transition:transform 0.2s ease, box-shadow 0.2s ease; */ transition: transform 0.2s, opacity 0.2s;
}

.whatsapp-float__button::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(34, 197, 94, 0.32);
    animation: whatsappPulse 2.2s ease-out infinite;
}

.whatsapp-float:hover .whatsapp-float__button {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 38px rgba(22, 163, 74, 0.42);
}

@keyframes whatsappPulse{
    0% {
        transform: scale(0.92);
        opacity: 0.65;
    }

    70% {
        transform: scale(1.18);
        opacity: 0;
    }

    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

/* ============================================
   APP BOTTOM NAV (Mobile)
   ============================================ */

.app-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 90px;
    }

    .main-nav-bar {
        display: none !important;
    }

    .header-container {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 0 10px 15px !important;
    }

    .header-logo-box {
        width: auto !important;
        text-align: center;
    }

    .header-actions {
        width: 100% !important;
        justify-content: center !important;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }

    .online-counter {
        order: 2;
        margin-top: 10px;
    }

    .header-search-box {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

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

    .app-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65px;
        background: #0f172a;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 99999;
        justify-content: space-around;
        align-items: center;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .app-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #64748b;
        font-size: 9px;
        font-weight: 600;
        width: 16.66%;
        height: 100%;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        padding: 0 2px;
        box-sizing: border-box;
    }

    .app-nav-item i {
        font-size: 18px;
        margin-bottom: 4px;
        transition: transform 0.2s;
    }

    .app-nav-item.active {
        color: #60a5fa;
    }

    .app-nav-item.active i {
        transform: translateY(-2px);
        filter: drop-shadow(0 0 5px rgba(96, 165, 250, 0.5));
    }

    .app-nav-item.highlight {
        position: relative;
        top: -15px;
    }

    .app-nav-item.highlight .icon-circle {
        background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
        border: 3px solid #0f172a;
        color: white;
    }

    .app-nav-item.highlight i {
        margin-bottom: 0;
        font-size: 18px;
    }

    .app-nav-item.highlight span {
        margin-top: 4px;
        color: #ef4444;
    }

    .whatsapp-float {
        right: 14px;
    }

    .whatsapp-float__label {
        display: none;
    }

    .whatsapp-float__button {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}

/* Menu Suspenso de Rádios */
#radio-popup-menu {
    position: fixed;
    bottom: 75px;
    left: 20%;
    width: 60%;
    background: #1e293b;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 999999;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp{
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-item {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.2s;
}

.popup-item:active {
    background: #6366f1;
}

.popup-item i {
    width: 20px;
    text-align: center;
    color: #6366f1;
}

.popup-item:active i {
    color: #fff;
}