/*ESTILO CONTENEDOR CONSULTAS FARMACEUTICAS*/
.contenedor {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70%;  
    margin: 20px auto;
    padding: 20px;
    max-width: auto;
    box-sizing: border-box;
}

/*ESTILO SECCION CONSULTAF, COSTOS*/
.consultaf, .costos{
    display: grid;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    transition: all 0.3s ease;  
}

/*ESTILO SECCION HORARIOS*/
.Horarios{
    display: grid;
    width: auto; 
    text-align: center;
    justify-items: center; 
    background-color: white;
    border-radius: 8px;
    padding: 20px; 
    box-sizing: border-box; 
}

/*EFECTO FLOTANTE SECCIONES*/
.consultaf:hover, .Horarios:hover, .img-consultorio:hover, .img-farmacia:hover{
    transform: translateY(-10px); 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);  
    cursor: pointer;  
}

/*ESTILO FLOTANTE SECCION COSTOS IMAGEN*/
.costos .img-costosc img:hover {
    transform: translateY(-10px); 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);  
    cursor: pointer;  
    transition: all 0.3s ease;
}

/*ESTILO TITULO*/
.consultaf h2, .Horarios 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 TEXTO*/
.consultaf .txt, .Horarios .txt, .costos .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 IMAGEN*/
.imagenes {
    display: flex;  
    justify-content: space-between; 
    gap: 20px;  
    width: 100%;  
    max-width: 1080px;  
    margin: 0 auto; 
}
.imagenes .img-consultorio,
.imagenes .img-farmacia{
    width: 100%;  
    max-width: 50%; 
    height: auto;  
    object-fit: contain; 
    border-radius: 8px;
}
.costos .img-costosc img {
    width: 100%;           
    max-width: 50%;       
    height: auto;         
    object-fit: contain;   
    margin: 0 auto;       
    border-radius: 8px;    
    display: flex;  
    align-items: center; 
    justify-content: center; 
    width: 100%;
}
.imagenes img {
    max-width: 100%;  
    height: auto;  
    object-fit: contain;  
    border-radius: 8px;
}
/*ESTILO IMAGEN RELOJ*/
.img-reloj{
    width: 2.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-consultorio,
    .imagenes .img-farmacia{
        max-width: 45%; 
        height: auto;  
    }
    /*SECCION COSTOS*/
    .costos {
        grid-template-columns: 1fr; 
        gap: 15px;  
        padding: 15px; 
    }

    /*IMAGEN*/
    .costos .img-costosc img {
        max-width: 80%;  
        margin: 0 auto;  
    }

    /*TEXTO*/
    .consultaf .txt, .Horarios .txt, .costos .txt{
        font-size: 14px;  
    }

    /*IMAGEN RELOJ*/
    .img-reloj {
        width: 5%;  
    }
}

