/*ESTILO CONTENEDOR DE LA SECCION HORARIO*/
.contenedor {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    margin: 20px auto;
    padding: 20px;
    max-width: auto;
    box-sizing: border-box;
}
/*ESTILO SECCION TEXTO, HORARIO*/
.Horario, .texto{
    display: grid;
    width: auto; 
    text-align: center;
    justify-items: center;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/*EFECTO FLOTANTE TEXTO, HORARIO*/
.Horario:hover, .texto:hover{
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/*ESTILO DE LETRA PARA TEXTO, HORARIOS*/
.Horario .txt, .texto .txt{
    width: 100%;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: transparent;
    background-image: linear-gradient(to right, #005f73, #000000);
    background-clip: text;
    flex: 1;
    margin-right: 20px;
}

/* ESTILO PARA TITULO TEXTO, HORARIO*/
.Horario h2, .texto h2{
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    color: transparent;
    background-image: linear-gradient(to right, #068d77b9, #00b3a6, #006a4d);
    background-clip: text;
    margin-bottom: 15px;
}

/*ESTILO PARA LAS IMAGENES*/
.imagenes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}
.texto .img-doctora img {
    width: 100%;
    height: auto;
    max-width: 100px;
    object-fit: cover;
}
/*IMAGEN RELOJ*/
.img-reloj{
    width: 3.5%;
}
/* MEDIA QUERIES PARA MOVILES*/
@media (max-width: 768px) {
    /*CONTENEDOR*/
    .contenedor {
        width: 90%;
    }

    /*PARRAFOS*/
    p {
        font-size: 95%;
    }

    /*IMAGENES*/
    .imagenes {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }
    .imagenes .img-doctora{
        max-width: 45%;
        height: auto;
    }

    /*TEXTO*/
    .Horario .txt, .texto .txt{
        font-size: 14px;
    }

    /*IMAGEN DEL RELOJ*/
    .img-reloj {
        width: 5%;
    }
}