/* Estilos específicos para la página Sobre Mí */

.profile-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 2rem; /* Bordes redondeados modernos */
    border: 5px solid var(--blanco);
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.02);
}

.contenido-sobre-mi p {
    font-size: 1.8rem;
    color: #475569;
    margin-bottom: 2rem;
    text-align: justify;
}

.section-title {
    color: var(--primario);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primario);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .contenido-sobre-mi p {
        font-size: 1.6rem;
        text-align: left;
    }
    
    .section-title {
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}