/*ESTILO CONTENEDOR INICIO*/
.contenedor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
   
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/*ESTILO SECCION INICIO*/
.bienvenida {
    width: 100%;  /* Asegura que las secciones ocupen todo el ancho disponible */
    text-align: left;
    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 TITULO*/
.bienvenida 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;
}
/*ESTILO IMAGEN*/
.img-doctor img {
    max-width: 300px;
    border-radius: 8px;
}


/*MEDIA QUERIES PARA MOVILES*/
@media (max-width: 768px) {
    /*CONTENEDOR INICIO*/
    .contenedor {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 90%;
        padding: 15px;
        gap: 10px;
    }
    /*SECCION INICIO*/    
    .bienvenida {
        width: 60%;
        font-size: 1rem;
        margin-right: 0;
    }
    /*TITULO*/
    .bienvenida h2 {
        font-size: 1.2rem;
        text-align: left;
    }
    /*IMAGEN*/
    .img-doctor {
        width: 35%;
        text-align: right;
    }

    .img-doctor img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
    /*PARRAFO*/
    p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

