        /* ===== VARIÁVEIS E RESET ===== */
        :root {
            --azul-primario: #0066bf;
            --azul-escuro: #004a8a;
            --azul-claro: #4d9de0;
            --laranja: #ff8c42;
            --laranja-escuro: #e67e3d;
            --branco: #ffffff;
            --preto: #000000;
            --cinza-claro: #f5f5f5;
            --cinza-medio: #e0e0e0;
            --cinza-escuro: #333333;
            --sombra-bold: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ===== ESTILOS GERAIS DO BODY ===== */
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--preto);
            line-height: 1.6;
            background-color: var(--branco);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        main {
            flex: 1;
            padding-bottom: 20px;
        }

        /* ===== TIPOGRAFIA ===== */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            color: var(--azul-escuro);
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        a {
            text-decoration: none;
            color: var(--azul-primario);
            transition: all 0.3s ease;
            font-weight: 600;
        }

        a:hover {
            color: var(--laranja);
            transform: translateY(-2px);
        }

         ===== LAYOUT ===== 
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        
        /* ===== MENU MOBILE ===== */
        .mobile-menu-widget {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-top-bar {
            background: linear-gradient(to right, var(--azul-escuro), var(--azul-primario));
            padding: 12px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid var(--laranja);
        }
        
        .mobile-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .mobile-logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .mobile-logo-text h1 {
            color: var(--branco);
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 0;
            line-height: 1;
        }
        
        .mobile-logo-text span {
            font-size: 12px;
            font-weight: 500;
            color: var(--laranja);
            margin-top: 2px;
        }
        
        .mobile-logo-text .mobile-frequency {
            font-size: 10px;
            font-weight: 600;
            color: var(--branco);
            background: var(--laranja);
            padding: 1px 6px;
            border-radius: 8px;
            margin-top: 2px;
            display: inline-block;
        }
        
        .hamburger {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 5px;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--branco);
            transition: all 0.3s;
            border-radius: 2px;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 320px;
            height: 100vh;
            background: linear-gradient(to bottom, var(--azul-escuro), var(--azul-primario));
            padding: 80px 20px 20px;
            transition: right 0.4s ease;
            z-index: 1001;
            box-shadow: -2px 0 15px rgba(0, 0, 0, 0.2);
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu ul {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .mobile-menu ul li {
            margin-bottom: 10px;
        }
        
        .mobile-menu ul li a {
            color: var(--branco);
            text-decoration: none;
            font-size: 18px;
            display: block;
            padding: 12px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .mobile-menu ul li a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--laranja);
            transform: translateX(5px);
        }
        
        .mobile-menu-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
            margin: 20px 0;
        }
        
        .mobile-search {
            margin: 25px 0;
            display: flex;
        }

        .mobile-search form {
            display: flex;
            width: 100%;
        }

        .mobile-search .search-field {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 5px 0 0 5px;
            background: rgba(255, 255, 255, 0.9);
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
        }

        .mobile-search .search-submit {
            background-color: var(--laranja);
            color: var(--branco);
            border: none;
            padding: 12px 15px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-search .search-submit:hover {
            background-color: var(--laranja-escuro);
        }

        .mobile-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .mobile-social a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: var(--branco);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
        }
        
        .mobile-social a:hover {
            background: var(--laranja);
            transform: translateY(-5px);
        }
        
        .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            color: var(--branco);
            font-size: 28px;
            background: none;
            border: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .close-menu:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            display: none;
        }
        
        .overlay.active {
            display: block;
        }

        /* ===== PLAYER FIXO ===== */
        .fixed-player {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 70px;
            background: linear-gradient(to right, var(--azul-escuro), var(--azul-primario));
            color: var(--branco);
            padding: 10px 0;
            z-index: 1000;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
            border-top: 3px solid var(--laranja);
        }

        .fixed-player-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            height: 100%;
        }

        .player-info {
            flex: 1;
            overflow: hidden;
            padding-right: 15px;
        }

        .player-info h3 {
            color: var(--branco);
            margin-bottom: 2px;
            font-size: 1rem;
            text-transform: none;
            font-weight: 700;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .player-info h4 {
            color: var(--laranja);
            font-size: 0.85rem;
            margin-bottom: 2px;
            text-transform: none;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .player-info p {
            font-size: 0.8rem;
            opacity: 0.9;
            margin: 0;
            text-transform: none;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .player-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .play-btn-fixed {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--laranja);
            color: var(--branco);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.4s ease;
            border: 2px solid var(--branco);
            box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
        }

        .play-btn-fixed:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(255, 140, 66, 0.6);
            background: var(--laranja-escuro);
        }

        .play-btn-fixed.playing {
            background: var(--laranja-escuro);
        }

        .volume-control {
            display: flex;
            align-items: center;
        }

        .volume-control i {
            margin-right: 8px;
            color: var(--laranja);
            font-size: 0.9rem;
        }

        .volume-control input {
            width: 80px;
        }

        .relogio-container {
            display: flex;
            align-items: center;
            margin-right: 20px;
            color: var(--branco);
            font-weight: 600;
        }

        .relogio {
            font-size: 1.2rem;
            margin-right: 10px;
        }

        /* EQUALIZER DO PLAYER */
        .equalizer {
            display: flex;
            align-items: end;
            gap: 2px;
            height: 20px;
        }

        .bar {
            width: 3px;
            background: var(--laranja);
            border-radius: 2px;
            animation: equalize 1.5s infinite ease-in-out;
        }

        .bar:nth-child(1) { animation-delay: 0s; height: 6px; }
        .bar:nth-child(2) { animation-delay: 0.1s; height: 10px; }
        .bar:nth-child(3) { animation-delay: 0.2s; height: 14px; }
        .bar:nth-child(4) { animation-delay: 0.3s; height: 10px; }
        .bar:nth-child(5) { animation-delay: 0.4s; height: 6px; }

        @keyframes equalize {
            0%, 100% { transform: scaleY(1); }
            50% { transform: scaleY(1.5); }
        }

        /* BOTÃO DE RECARREGAR NO PLAYER FIXO */
        .reload-btn-fixed {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--azul-claro);
            color: var(--branco);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid var(--branco);
            box-shadow: 0 3px 15px rgba(77, 157, 224, 0.4);
        }

        .reload-btn-fixed:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 20px rgba(77, 157, 224, 0.6);
            background: var(--laranja);
        }

        .reload-btn-fixed.loading {
            animation: spin 1s linear infinite;
            pointer-events: none;
        }

        .hidden {
            display: none !important;
        }

        /* ===== MINI PLAYER SIDEBAR ===== */
        .radio-sidebar-widget {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: 20px;
            font-family: 'Montserrat', sans-serif;
        }

        .sidebar-player {
            background: linear-gradient(135deg, var(--azul-escuro), var(--azul-primario));
            color: white;
            padding: 15px;
        }

        .player-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .player-header h4 {
            color: white;
            margin: 0;
            font-size: 16px;
            font-weight: 600;
        }

        .live-badge {
            background: var(--laranja);
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 10px;
            font-weight: bold;
        }

        .player-controls-compact {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .player-buttons-container {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .play-btn-sidebar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--laranja);
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .play-btn-sidebar:hover {
            background: var(--laranja-escuro);
            transform: scale(1.05);
        }

        .play-btn-sidebar.playing {
            background: var(--laranja-escuro);
        }

        /* Botão de recarregar no player (ao lado do play) */
        .reload-btn-mini-player {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 0.7rem;
        }

        .reload-btn-mini-player:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .reload-btn-mini-player:active {
            transform: rotate(180deg);
        }

        .reload-btn-mini-player.loading {
            animation: spin 1s linear infinite;
            pointer-events: none;
        }

        .player-info-sidebar {
            flex: 1;
            min-width: 0;
        }

        .current-program-sidebar {
            font-weight: 600;
            font-size: 12px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .current-track-sidebar {
            font-size: 10px;
            opacity: 0.9;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .volume-sidebar {
            display: flex;
            align-items: center;
            gap: 5px;
            color: white;
        }

        .volume-sidebar i {
            font-size: 12px;
        }

        .volume-slider-sidebar {
            width: 60px;
        }

        /* Programação no Sidebar */
        .sidebar-schedule {
            padding: 15px;
            position: relative;
        }

        .schedule-header {
            margin-bottom: 10px;
        }

        .schedule-title-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .schedule-header h5 {
            margin: 0;
            color: var(--azul-escuro);
            font-size: 14px;
            font-weight: 600;
        }

        /* Botão de Recarregar no cabeçalho da programação */
        .reload-btn-mini {
            background: var(--azul-primario);
            color: white;
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.8rem;
            box-shadow: 0 2px 8px rgba(0, 102, 191, 0.3);
        }

        .reload-btn-mini:hover {
            background: var(--azul-escuro);
            transform: rotate(90deg);
            box-shadow: 0 4px 12px rgba(0, 102, 191, 0.5);
        }

        .reload-btn-mini:active {
            transform: rotate(180deg);
        }

        .reload-btn-mini.loading {
            animation: spin 1s linear infinite;
            pointer-events: none;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .days-navigation {
            display: flex;
            gap: 5px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .day-btn {
            flex: 1;
            padding: 5px 3px;
            border: 1px solid var(--cinza-medio);
            background: var(--cinza-claro);
            border-radius: 5px;
            cursor: pointer;
            font-size: 11px;
            text-align: center;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .day-btn:hover {
            background: var(--cinza-medio);
        }

        .day-btn.active {
            background: var(--azul-primario);
            color: white;
            border-color: var(--azul-primario);
        }

        /* Container do botão de minimizar */
        .minimize-container {
            display: flex;
            justify-content: center;
            margin-bottom: 10px;
            padding: 5px 0;
            border-bottom: 1px solid var(--cinza-medio);
        }

        .minimize-btn {
            background: transparent;
            border: none;
            color: var(--azul-primario);
            cursor: pointer;
            padding: 5px 10px;
            border-radius: 15px;
            transition: all 0.3s ease;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .minimize-btn:hover {
            background: var(--cinza-claro);
            color: var(--azul-escuro);
            transform: scale(1.1);
        }

        .schedule-list {
            max-height: 300px;
            overflow-y: auto;
            transition: all 0.3s ease;
        }

        .schedule-item {
            padding: 8px 0;
            border-bottom: 1px solid var(--cinza-medio);
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .schedule-item:hover {
            background: var(--cinza-claro);
        }

        .schedule-item.current {
            background: var(--azul-claro);
            border-left: 3px solid var(--laranja);
            margin-left: -15px;
            padding-left: 12px;
            font-weight: 600;
        }

        .schedule-time {
            font-weight: 600;
            font-size: 11px;
            color: var(--azul-escuro);
            width: 60px;
            flex-shrink: 0;
        }

        .schedule-program {
            font-size: 12px;
            flex: 1;
        }

        .schedule-loading {
            text-align: center;
            padding: 20px;
            color: var(--cinza-escuro);
        }

        .loading-spinner-small {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(0,0,0,0.1);
            border-left-color: var(--laranja);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 10px;
        }

        /* Scrollbar personalizada */
        .schedule-list::-webkit-scrollbar {
            width: 5px;
        }

        .schedule-list::-webkit-scrollbar-track {
            background: var(--cinza-claro);
            border-radius: 10px;
        }

        .schedule-list::-webkit-scrollbar-thumb {
            background: var(--cinza-escuro);
            border-radius: 10px;
        }

        .schedule-list::-webkit-scrollbar-thumb:hover {
            background: var(--cinza-escuro);
        }

        /* ===== SLIDER DE PROGRAMAÇÃO ===== */
        .programacao-slider-container {
            margin: 30px 0;
            position: relative;
            border-radius: 0 0 10px 10px;
            box-shadow: var(--sombra-bold);
            overflow: hidden;
            background: var(--branco);
        }

        .programacao-header {
            background: var(--azul-escuro);
            color: var(--branco);
            padding: 20px;
            border-radius: 10px 10px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .header-content {
            flex: 1;
            min-width: 300px;
        }

        .programacao-header h2 {
            color: var(--branco);
            margin-bottom: 10px;
            font-size: 1.8rem;
        }

        .programacao-header p {
            opacity: 0.9;
            font-size: 1.1rem;
        }

        .header-buttons {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .reload-btn, .minimize-btn {
            background: var(--laranja);
            color: var(--branco);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
        }

        .minimize-btn {
            background: var(--azul-claro);
        }

        .reload-btn:hover, .minimize-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(255, 140, 66, 0.5);
        }

        .reload-btn:active, .minimize-btn:active {
            transform: scale(0.95);
        }

        .reload-btn.loading {
            animation: spin 1s linear infinite;
            pointer-events: none;
        }

        .slider-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--cinza-claro);
            padding: 15px 20px;
            border-bottom: 2px solid var(--cinza-medio);
            flex-wrap: wrap;
            gap: 15px;
        }

        .slider-nav {
            display: flex;
            gap: 10px;
            order: 1;
        }

        .slider-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--azul-primario);
            color: var(--branco);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .slider-btn:hover {
            background: var(--laranja);
            transform: scale(1.1);
        }

        .slider-btn:disabled {
            background: var(--cinza-medio);
            cursor: not-allowed;
            transform: none;
        }

        .dia-nome {
            font-weight: 600;
            color: var(--azul-escuro);
            font-size: 1.2rem;
            order: 2;
            flex: 1;
            text-align: center;
            min-width: 150px;
        }

        .slider-dots {
            display: flex;
            gap: 10px;
            order: 3;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--cinza-medio);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: var(--laranja);
            transform: scale(1.2);
        }

        .programacao-slider {
            background: var(--branco);
            position: relative;
            overflow: hidden;
            min-height: 600px;
            height: auto;
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }

        .programacao-dia {
            min-width: 100%;
            width: 100%;
            padding: 0;
            box-sizing: border-box;
            height: auto;
        }

        /* LAYOUT VERTICAL - HORÁRIO POR CIMA DO PROGRAMA */
        .programacao-item {
            padding: 20px 25px;
            border-bottom: 1px solid var(--cinza-medio);
            transition: all 0.3s ease;
        }

        .programacao-item:hover {
            background: var(--cinza-claro);
        }

        .programacao-item.current {
            background: var(--azul-claro);
            color: var(--branco);
            border-left: 5px solid var(--laranja);
        }

        .programacao-item.current .programa-horario,
        .programacao-item.current .programa-nome,
        .programacao-item.current .programa-apresentador {
            color: var(--branco);
        }

        .programa-horario {
            font-weight: 700;
            color: var(--azul-escuro);
            font-size: 1.1rem;
            margin-bottom: 8px;
            display: block;
        }

        .programa-info {
            width: 100%;
        }

        .programa-nome {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--azul-escuro);
            font-size: 1.2rem;
            line-height: 1.3;
        }

        .programa-apresentador {
            font-size: 1rem;
            color: var(--cinza-escuro);
            font-style: italic;
        }

        /* ESTADO MINIMIZADO */
        .programacao-slider-container.minimized .programacao-slider {
            display: none;
        }

        .programacao-slider-container.minimized .slider-controls {
            border-radius: 0 0 10px 10px;
            border-bottom: none;
        }

        /* ===== WIDGETS FLUTUANTES ===== */
        .widget-config-programacao {
            position: fixed;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            z-index: 1000;
            width: 60px;
            transition: all 0.3s ease;
        }

        .widget-config-programacao:hover {
            width: 100px;
        }

        .config-toggle {
            background: linear-gradient(to left, var(--laranja), var(--laranja-escuro));
            color: white;
            border: none;
            padding: 10px;
            border-radius: 0 10px 10px 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .config-toggle::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--azul-primario);
        }

        .config-toggle:hover {
            background: linear-gradient(to right, var(--laranja-escuro), var(--azul-primario));
            box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3);
        }

        .config-icon {
            font-size: 24px;
            min-width: 30px;
            text-align: center;
            animation: rotate 4s linear infinite;
            animation-play-state: paused;
        }

        .config-toggle:hover .config-icon {
            animation-play-state: running;
        }

        .config-text {
            white-space: nowrap;
            overflow: hidden;
            font-weight: 600;
            font-size: 14px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .widget-config-programacao:hover .config-text {
            opacity: 1;
            transform: translateX(0);
        }

        /* ===== FOOTER GERAL ===== */
        footer {
            background: linear-gradient(135deg, var(--azul-escuro), var(--azul-primario));
            color: var(--branco);
            padding: 40px 0 20px;
            margin-top: auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h4 {
            color: var(--laranja);
            font-size: 1.2rem;
            margin-bottom: 15px;
            border-bottom: 2px solid var(--laranja);
            padding-bottom: 5px;
        }

        .footer-column p {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
        }

        .footer-column ul li i {
            color: var(--laranja);
            margin-right: 10px;
            margin-top: 3px;
            min-width: 16px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: var(--branco);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--laranja);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
        }

        .footer-bottom p {
            margin: 0;
            opacity: 0.8;
        }

       /* ===== BREADCRUMBS ===== */
        .breadcrumbs {
            background: linear-gradient(to right, var(--azul-escuro), var(--azul-primario));
            color: var(--branco);
            padding: 15px 0;
            margin: 0;
        }

        .breadcrumbs ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }

        .breadcrumbs li {
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .breadcrumbs li:after {
            content: '›';
            margin-left: 10px;
            color: var(--laranja);
        }

        .breadcrumbs li:last-child:after {
            content: '';
        }

        .breadcrumbs a {
            color: var(--branco);
        }

        .breadcrumbs a:hover {
            color: var(--laranja);
        }
    
        /* ===== RESPONSIVIDADE ===== */
        @media (max-width: 992px) {
            .mobile-menu-widget {
                display: block;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-bottom: 0;
            }
            
            .fixed-player {
                display: none !important;
            }

            .programacao-item {
                padding: 15px 20px;
            }

            .programa-horario {
                font-size: 1rem;
            }

            .programa-nome {
                font-size: 1.1rem;
            }

            .programa-apresentador {
                font-size: 0.9rem;
            }

            .slider-controls {
                flex-direction: column;
                gap: 15px;
            }

            .slider-nav {
                order: 2;
            }

            .dia-nome {
                order: 1;
            }

            .slider-dots {
                order: 3;
            }

            .programacao-header {
                flex-direction: column;
                text-align: center;
            }

            .header-buttons {
                align-self: center;
            }

            .programacao-slider {
                min-height: 500px;
            }

            .reload-btn, .minimize-btn {
                width: 45px;
                height: 45px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .footer-column {
                text-align: center;
            }
            
            .footer-social {
                justify-content: center;
            }
            
            .breadcrumbs ul {
                justify-content: center;
            }
            
            .radio-sidebar-widget {
                margin: 10px;
            }
            
            .player-controls-compact {
                flex-wrap: wrap;
            }
            
            .player-info-sidebar {
                min-width: 100%;
                order: 3;
                margin-top: 10px;
            }
            
            .player-buttons-container {
                order: 2;
            }
            
            .volume-sidebar {
                order: 1;
            }
            
            .days-navigation {
                gap: 3px;
            }
            
            .day-btn {
                font-size: 10px;
                padding: 4px 2px;
            }
            
            .reload-btn-mini,
            .reload-btn-mini-player {
                width: 25px;
                height: 25px;
                font-size: 0.7rem;
            }
            
            .play-btn-sidebar {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
            }

            .minimize-btn {
                font-size: 0.7rem;
                padding: 4px 8px;
            }
        }
        
        @media (min-width: 769px) {
            body {
                padding-bottom: 70px;
            }

            .slider-controls {
                flex-wrap: nowrap;
            }

            .programacao-slider {
                min-height: 700px;
            }
            
            .programacao-item {
                padding: 22px 30px;
            }
            
            .programa-horario {
                font-size: 1.2rem;
            }
            
            .programa-nome {
                font-size: 1.3rem;
            }
            
            .programa-apresentador {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            
            .mobile-logo-text h1 {
                font-size: 16px;
            }
            
            .mobile-logo-text span {
                font-size: 10px;
            }
            
            .mobile-logo-text .mobile-frequency {
                font-size: 9px;
            }
            
            .footer-social a {
                width: 35px;
                height: 35px;
            }
        }

        /* ===== MENSAGENS E ESTADOS ===== */
        .loading {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px;
            flex-direction: column;
            min-height: 200px;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid rgba(0, 0, 0, 0.1);
            border-left-color: var(--laranja);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 15px;
        }

        .error-message {
            background: #ffebee;
            color: #c62828;
            padding: 15px;
            border-radius: 5px;
            margin: 20px 0;
            text-align: center;
        }

        .warning-message {
            background: #fff3cd;
            color: #856404;
            padding: 15px;
            border-radius: 5px;
            margin: 20px 0;
            text-align: center;
            border-left: 4px solid #ffc107;
        }

        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 5px;
            margin: 20px 0;
            text-align: center;
            border-left: 4px solid #28a745;
        }

        .debug-info {
            background: #e9ecef;
            color: #495057;
            padding: 10px;
            border-radius: 5px;
            margin: 10px 0;
            font-size: 0.8rem;
            border-left: 4px solid #6c757d;
        }

        .action-buttons {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .action-btn {
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .primary-btn {
            background: var(--azul-primario);
            color: white;
        }

        .secondary-btn {
            background: var(--laranja);
            color: white;
        }

        .outline-btn {
            background: transparent;
            border: 2px solid var(--azul-primario);
            color: var(--azul-primario);
        }

        /* ===== UTILITÁRIOS ===== */
        .text-center {
            text-align: center;
        }

        .mt-20 {
            margin-top: 20px;
        }

        .mb-20 {
            margin-bottom: 20px;
        }

        .p-20 {
            padding: 20px;
        }

        .bg-cinza-claro {
            background-color: var(--cinza-claro);
        }

        .bg-azul {
            background: linear-gradient(135deg, var(--azul-primario), var(--azul-escuro));
            color: var(--branco);
        }

        .bg-azul h1, .bg-azul h2, .bg-azul h3, .bg-azul h4, .bg-azul h5, .bg-azul h6 {
            color: var(--branco);
        }


