#texto-info-2 {
    width: 100%;
    padding: 80px 5%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  
    position: relative;
    overflow: hidden;
}

#texto-info-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    background-position: -400px center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

#texto-info-2-img {
    width: 40%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease-out;
}

#texto-info-2-img:hover {
    transform: scale(1.02);
}

#texto-info-2-cont {
    width: 60%;
    padding: 0 5% 0 0;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

#texto-info-2-titulo {
    width: auto;
    max-width: 500px;
    box-sizing: border-box;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 2.2rem;
    text-transform: uppercase;
    position: relative;
    margin: 0 0 20px 0;
    font-weight: 700;
    padding-left: 70px;
}

#texto-info-2-titulo::before {
    width: 60px;
    content: "";
    background-color: var(--medical-green);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    border-radius: 2px;
    z-index: 1;
}

#texto-info-2-contenido {
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    margin: 20px 0 0 0;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
}

#texto-info-2-contenido p {
    margin-bottom: 1.2em;
}

#texto-info-2-contenido p:last-child {
    margin-bottom: 0;
}

/* Media Queries */
@media (max-width: 1000px) {
    #texto-info-2 {
        padding: 60px 5%;
    }
    
    #texto-info-2-titulo {
        font-size: 1.9rem;
        padding-left: 60px;
    }
    
    #texto-info-2-titulo::before {
        width: 50px;
    }
}

@media (max-width: 900px) {
    #texto-info-2 {
        flex-direction: column;
        background: var(--light-gray);
        padding: 50px 5%;
    }
    
    #texto-info-2::before {
        opacity: 0.05;
        background-position: center;
    }
    
    #texto-info-2-img {
        width: 80%;
        max-width: 400px;
        display: block;
        margin: 0 auto 30px;
    }
    
    #texto-info-2-cont {
        width: 100%;
        margin: 0 auto;
        padding: 0;
        text-align: center;
    }
    
    #texto-info-2-titulo {
        text-align: center;
        margin: 0 auto 20px;
        padding-left: 0;
        padding-top: 40px;
    }
    
    #texto-info-2-titulo::before {
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
    }
    
    #texto-info-2-contenido {
        text-align: justify;
    }
}

@media (max-width: 600px) {
    #texto-info-2 {
        padding: 40px 5%;
    }
    
    #texto-info-2-img {
        width: 100%;
    }
    
    #texto-info-2-titulo {
        font-size: 1.6rem;
        padding-top: 35px;
    }
    
    #texto-info-2-titulo::before {
        width: 50px;
    }
    
    #texto-info-2-contenido {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    #texto-info-2 {
        padding: 30px 5%;
    }
    
    #texto-info-2-titulo {
        font-size: 1.4rem;
        padding-top: 30px;
    }
    
    #texto-info-2-titulo::before {
        width: 40px;
    }
    
    #texto-info-2-contenido {
        font-size: 0.95rem;
    }
}