.perfil {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 70%;
}

.datos {
    width: 50%;
}

.foto {
    width: 15rem;
    border-radius: 2rem;
}

.precio {}

.precio-monto {
    margin-bottom: 0;
}

.precio-aclaracion {
    margin-top: 0;
    color: #aaa;
}

.facultades {
    display: flex;
    flex-direction: row;
    overflow-y: scroll;
    height: 10rem;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
}

.opcion-horario {
    display: flex;
}

.opcion-horario p {
    margin: 0 1rem;
}

.contenedor-horario {}

.horario {
    border-collapse: collapse;
    margin: 20px 0;
    table-layout: fixed;
}

.horario th,
.horario td {
    /*
    border: 1px solid #ddd;
    padding: .2rem;
    text-align: center;
    width: 3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    */
    border: 1px solid #ddd;
    padding: .2rem;
    /*text-wrap-mode: wrap !important;*/
    text-align: center;
    width: 3rem;
    height: 3rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.horario th {
    background-color: var(--s-med);
    color: var(--blanco);
}

.horario tr:nth-child(even) {
    background-color: #f2f2f2;
}

.horario-ocupado {
    background-color: var(--mal);
}

.horario-reservado {
    background-color: var(--bien);
}

.horario-disponible:hover {
    cursor: pointer;
}

.horario-no-disponible {
    background-color: #aaa;
}

.reservar {
    background-color: var(--s-claro);
    margin: .2rem;
    padding: 0.5rem;
    border-radius: .5rem;
}

/* Mobile (hasta 767px de ancho) */
@media (max-width: 767px) {
    .perfil {
        flex-direction: column;
        width: 100%;
    }

    .datos {
        width: 100%;
    }

    .contenedor-horario {
        overflow-x: scroll;
        width: 100%;
    }
}

/* Tablet (entre 768px y 1024px de ancho) */
@media (min-width: 768px) and (max-width: 1024px) {}