.horario-divider {
    border: none;
    border-top: 0.5px solid #eaecf0;
    margin: 0;
}

.horario-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.horario-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .07em;
    color: #9ca3af;
    text-transform: uppercase;
}

.horario-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 500;
    border-radius: 20px;
    padding: 4px 10px;
}

/* Variantes de turno */
.horario-badge.matutino {
    background: #FFF7E6;
    color: #92500a;
    border: 0.5px solid #f5c26a;
}

.horario-badge.vespertino {
    background: #EEF2FF;
    color: #3730a3;
    border: 0.5px solid #a5b4fc;
}

.horario-badge.ambos {
    background: #f0fdf4;
    color: #14532d;
    border: 0.5px solid #86efac;
}

.horario-badge.mixto-dia {
    background: #f0f9ff;
    color: #0c4a6e;
    border: 0.5px solid #7dd3fc;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}