#texto-info-5 {
    width: 100%;
    padding: 120px 10%;
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1500px;
    position: relative;
    background: var(--primary-blue);
    text-align: center;
}

#texto-info-5::before {
 width: 100%;
    content: " ";
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1500 79.35" preserveAspectRatio="none"><rect width="1500" height="79.35" fill="%23FFFFFF" /><path fill="%231A4B8C" d="M1500,79.35l-125-8.8C1211.61,33.19,999.06,0,750,0S288.39,33.19,125,70.55L0,79.35L0,0l125,0c125,0,375,0,625,0c250,0,500,0,625,0l125,0L1500,79.35z"/></svg>');
    position: absolute;
    left: 0%;
    bottom: -1px;
    height: 80px;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 3;
}

#texto-info-5-contenedor {
    position: relative;
    z-index: 2;
    display: inline-block;
    width: 100%;
    max-width: 1200px;
}

#texto-info-5-img {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 5px solid var(--white);
    margin-right: 50px;
    box-sizing: border-box;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-out;
}

#texto-info-5-img:hover {
    transform: scale(1.05);
    border-color: var(--medical-green);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

#texto-info-5-cont {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 370px);
    padding: 40px 35px;
    box-sizing: border-box;
    position: relative;
    background-color: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-out;
    text-align: left;
}

#texto-info-5-cont:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

#texto-info-5-titulo {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}

#texto-info-5-titulo::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--medical-green);
    margin: 15px auto 0;
    border-radius: 2px;
}

#texto-info-5-contenido {
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    margin: 20px auto 0;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
}

#texto-info-5-contenido p {
    margin-bottom: 1.2em;
}

#texto-info-5-contenido p:last-child {
    margin-bottom: 0;
}

/* Media Queries - Manteniendo estructura original */
@media (max-width: 1100px) {
    #texto-info-5 {
        padding: 70px 8%;
    }
    
    #texto-info-5-img {
        width: 280px;
        height: 280px;
        margin-right: 40px;
    }
    
    #texto-info-5-cont {
        width: calc(100% - 340px);
        padding: 35px 30px;
    }
    
    #texto-info-5-titulo {
        font-size: 1.6rem;
    }
}

@media (max-width: 900px) {
    #texto-info-5-img {
        display: block;
        margin: 0 auto 30px;
    }
    
    #texto-info-5-cont {
        display: block;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    
    #texto-info-5-titulo {
        font-size: 1.5rem;
    }
    
    #texto-info-5-contenido {
        text-align: center;
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    #texto-info-5 {
        padding: 60px 5%;
    }
    
    #texto-info-5-img {
        width: 250px;
        height: 250px;
    }
    
    #texto-info-5-cont {
        padding: 30px 25px;
    }
    
    #texto-info-5-titulo {
        font-size: 1.4rem;
    }
    
    #texto-info-5-titulo::after {
        width: 50px;
        margin-top: 12px;
    }
}

@media (max-width: 600px) {
    #texto-info-5-img {
        width: 220px;
        height: 220px;
    }
    
    #texto-info-5-cont {
        padding: 25px 20px;
    }
    
    #texto-info-5-titulo {
        font-size: 1.3rem;
    }
    
    #texto-info-5-contenido {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    #texto-info-5 {
        padding: 50px 5%;
    }
    
    #texto-info-5-img {
        width: 200px;
        height: 200px;
        border-width: 4px;
    }
    
    #texto-info-5-cont {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    #texto-info-5-titulo {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    #texto-info-5-titulo::after {
        width: 40px;
        height: 2px;
        margin-top: 10px;
    }
    
    #texto-info-5-contenido {
        font-size: 0.95rem;
    }
}

/* Estados de accesibilidad */
#texto-info-5-cont:focus-within {
    outline: 2px solid var(--medical-green);
    outline-offset: 2px;
}

/* Mejoras de rendimiento */
@media (prefers-reduced-motion: reduce) {
    #texto-info-5-img,
    #texto-info-5-cont {
        transition: none;
    }
}

