
    /* ESTILOS EXCLUSIVOS DO MÓDULO 5 */
    .horarios-section {
        width: 100%;
        background: linear-gradient(135deg, #050505 0%, #121212 100%);
        background-image: radial-gradient(circle at 30% 40%, rgba(253, 212, 40, 0.02) 0%, transparent 40%),
                          radial-gradient(circle at 80% 70%, rgba(253, 212, 40, 0.02) 0%, transparent 40%);
        padding: 80px 0;
        font-family: "Arimo", sans-serif;
        position: relative;
        overflow: hidden;
    }
    
    /* Efeito de relógio sutil no fundo */
    .horarios-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(253,212,40,0.02) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 0;
    }
    
    .horarios-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: repeating-linear-gradient(90deg, rgba(253,212,40,0.01) 0px, rgba(253,212,40,0.01) 1px, transparent 1px, transparent 30px);
        pointer-events: none;
        z-index: 1;
    }

    .horarios-container {
        width: 90%;
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    /* Cabeçalho da seção */
    .horarios-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .horarios-badge {
        display: inline-block;
        background: rgba(253, 212, 40, 0.15);
        color: #FDD428;
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 2px;
        padding: 8px 20px;
        border-radius: 50px;
        margin-bottom: 20px;
        border: 1px solid rgba(253, 212, 40, 0.3);
        text-transform: uppercase;
    }

    .horarios-titulo {
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 700;
        color: #FFF;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .horarios-titulo span {
        color: #FDD428;
        position: relative;
        display: inline-block;
    }

    .horarios-titulo span::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, transparent, #FDD428, transparent);
    }

    .horarios-subtitulo {
        font-size: 1.2rem;
        color: #CCC;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.8;
        opacity: 0.9;
    }

    /* Grid principal - 2 colunas */
    .horarios-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin: 50px 0;
    }

    /* Card de horários (esquerda) */
    .horarios-card {
        background: rgba(20, 20, 20, 0.7);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(253, 212, 40, 0.2);
        border-radius: 40px;
        padding: 50px 40px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .horarios-card:hover {
        border-color: #FDD428;
        transform: translateY(-10px);
        box-shadow: 0 30px 50px rgba(253, 212, 40, 0.15);
    }

    .horarios-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, transparent, #FDD428, transparent);
    }

    .card-dias {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }

    .dias-icone {
        width: 60px;
        height: 60px;
        background: rgba(253, 212, 40, 0.1);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(253, 212, 40, 0.3);
    }

    .dias-icone img {
        width: 30px;
        height: 30px;
        filter: brightness(0) invert(1);
    }

    .dias-texto h3 {
        color: #FDD428;
        font-size: 2rem;
        font-weight: 700;
        line-height: 1;
    }

    .dias-texto p {
        color: #FFF;
        font-size: 1.1rem;
        opacity: 0.8;
    }

    /* Horários */
    .horario-bloco {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-bottom: 30px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 30px;
        border: 1px solid rgba(253, 212, 40, 0.1);
        transition: all 0.3s ease;
    }

    .horario-bloco:hover {
        background: rgba(253, 212, 40, 0.05);
        border-color: rgba(253, 212, 40, 0.3);
        transform: translateX(10px);
    }

    .turno {
        font-size: 1.3rem;
        font-weight: 600;
        color: #FDD428;
        min-width: 80px;
    }

    .horario {
        display: flex;
        align-items: center;
        gap: 20px;
        font-size: 1.8rem;
        font-weight: 700;
        color: #FFF;
    }

    .horario span {
        color: #FDD428;
        font-size: 2.2rem;
        font-weight: 300;
    }

    .horario small {
        font-size: 1rem;
        color: #999;
        font-weight: 400;
    }

    /* Card informativo (direita) */
    .info-card {
        background: rgba(20, 20, 20, 0.7);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(253, 212, 40, 0.2);
        border-radius: 40px;
        padding: 50px 40px;
        display: flex;
        flex-direction: column;
        gap: 40px;
        transition: all 0.4s ease;
    }

    .info-card:hover {
        border-color: #FDD428;
        transform: translateY(-10px);
        box-shadow: 0 30px 50px rgba(253, 212, 40, 0.15);
    }

    .info-item {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        padding: 20px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 30px;
        transition: all 0.3s ease;
    }

    .info-item:hover {
        background: rgba(253, 212, 40, 0.05);
        transform: translateX(10px);
    }

    .info-icone {
        width: 50px;
        height: 50px;
        background: rgba(253, 212, 40, 0.1);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border: 1px solid rgba(253, 212, 40, 0.2);
    }

    .info-icone img {
        width: 25px;
        height: 25px;
        filter: brightness(0) invert(1);
    }

    .info-conteudo h4 {
        color: #FDD428;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .info-conteudo p {
        color: #CCC;
        font-size: 1rem;
        line-height: 1.5;
        margin: 0;
    }

    /* Badge de horário especial */
    .badge-especial {
        display: inline-block;
        background: rgba(253, 212, 40, 0.15);
        color: #FDD428;
        font-size: 0.9rem;
        padding: 5px 15px;
        border-radius: 50px;
        margin-top: 15px;
        border: 1px solid rgba(253, 212, 40, 0.3);
    }

    /* CTA menor */
    .horarios-cta {
        text-align: center;
        margin-top: 40px;
    }

    .btn-horarios {
        display: inline-block;
        background: linear-gradient(135deg, #FDD428, #ff9900);
        color: #000 !important;
        font-weight: 700;
        font-size: 1.2rem;
        padding: 18px 40px;
        border-radius: 50px !important;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(253, 212, 40, 0.3);
        border: 2px solid transparent;
    }

    .btn-horarios:hover {
        background: transparent;
        color: #FDD428 !important;
        border-color: #FDD428;
        transform: scale(1.05);
    }

    /* Responsividade */
    @media screen and (max-width: 1024px) {
        .horarios-grid {
            gap: 30px;
        }
        
        .horario {
            font-size: 1.5rem;
        }
        
        .horario span {
            font-size: 1.8rem;
        }
    }

    @media screen and (max-width: 768px) {
        .horarios-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .horarios-card, .info-card {
            padding: 40px 30px;
        }
        
        .horario-bloco {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
        
        .horario {
            font-size: 1.8rem;
        }
        
        .info-item {
            flex-direction: column;
            text-align: center;
            align-items: center;
        }
        
        .card-dias {
            flex-direction: column;
            text-align: center;
        }
    }

    @media screen and (max-width: 480px) {
        .dias-texto h3 {
            font-size: 1.8rem;
        }
        
        .horario {
            font-size: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .turno {
            min-width: auto;
        }
    }
