/* Estilos para a programação da rádio */

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

.dia-semana {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dia-semana h3 {
    margin-top: 0;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.lista-programas {
    list-style: none;
    padding: 0;
    margin: 0;
}

.programa-item {
    display: flex;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.programa-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.horario {
    flex: 0 0 120px;
    font-weight: bold;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    text-align: center;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-programa {
    flex: 1;
}

.info-programa h4 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.locutor {
    font-style: italic;
    margin-bottom: 5px;
    opacity: 0.9;
}

.descricao {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .programa-item {
        flex-direction: column;
    }
    
    .horario {
        flex: 0 0 auto;
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }
}