/* ===== FOOTER ===== */
footer {
    background: #1a365d;
    color: white;
    padding: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    flex: 1;
}

.footer-right {
    flex-shrink: 0;
}

.footer-left p {
    margin: 0 0 0.5rem 0;
    color: #cbd5e0;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7ac6ff;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.footer-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: white;
    color: #1a365d;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    transform: translateY(-2px);
}


/* ===== PLAYER RÁDIO FIXO ===== */
.radio-player-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a365d;
    color: white;
    padding: 0.8rem 0;
    z-index: 9999;
    border-top: 2px solid #7ac6ff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.radio-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 15% 70% 15%;
    align-items: center;
    padding: 0 2rem;
}

.radio-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Coluna NO AR */
.radio-status .on-air {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #7ac6ff;
    letter-spacing: 1px;
}

/* Coluna controles */
.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-btn, .pause-btn {
    background: #7ac6ff;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover, .pause-btn:hover {
    background: #5aa8e8;
    transform: scale(1.1);
}

#volume-radio {
    width: 100px;
    cursor: pointer;
}

/* Coluna programação */
.radio-schedule .schedule-text {
    font-size: 0.9rem;
    color: #cbd5e0;
    text-align: center;
}

/* Responsivo */
@media (max-width: 768px) {
    .radio-container {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .radio-status .on-air {
        font-size: 1.2rem;
    }
    
    .player-controls {
        gap: 0.5rem;
    }
    
    .play-btn, .pause-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    #volume-radio {
        width: 80px;
    }
}

.loading-text {
    font-size: 0.8rem;
    color: #7ac6ff;
    font-style: italic;
}

.play-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* ===== RESPONSIVO FOOTER ===== */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-right {
        justify-content: center;
    }
}