/* ESTILO CONTENEDOR NOSOTROS*/
.contenedor {
    display: grid;
    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 NOSOTROS*/
.Nosotros {
    display: flex;
    align-items: center; 
    justify-content: space-between;  
    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;
}
/*ESTILO TITULO*/
.Nosotros 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 NOSOTROS*/
.Nosotros .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;
    padding: 10px;  
}

/*ESTILO IMAGEN*/
.Nosotros .img-doctora img {
    width: 100%;
    height: auto;
    max-width: 500px;  
    object-fit: cover;  
    border-radius: 8px;
}

/*MEDIA QUERIES PARA MOVILES*/
@media (max-width: 768px) {
    /*CONTENEDOR*/
    .contenedor {
        width: 90%; 
    }
    /*PARRAFO*/
    p {
        font-size: 95%; 
    }
    /*SECCION NOSOTROS*/
    .Nosotros {
        flex-direction: column; 
        align-items: center;   
        gap: 15px;            
    }
    /*IMAGEN*/
    .Nosotros .img-doctora img {
        max-width: 80%;         
        height: auto;       
    }
    /*TEXTO*/
    .Nosotros .txt {
        text-align: center;
        margin-right: 0;     
    }
}
