.profile-container{
    background: var(--white);
    margin-bottom: 2rem;
    padding: 3rem 2rem;
    border-radius: .6rem;
    z-index: 100;
    position: relative;
}

.ajust-position{
    margin-top: -23rem;
}

.header-profile{
    min-height: 28rem;
}

.rounded-image {
    border: 0.3125rem solid #0E6FA5;
    object-fit: cover;
    border-radius: 50%;
    width: 100%;
    max-width: 15rem;
    aspect-ratio: 1 / 1;
}

.no-select-image {
    height: 30rem;
    object-fit: cover;
    user-select: none;
    pointer-events: none; 
}
.btn-profile{
    background: #0E6FA5;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.15s ease;
    border: none;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    width: 14.041rem;
    text-align: center;
}

.font-7{
    font-size: 1rem;
}

.truncate-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate-multiline {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    line-height: 1.5em; /* Altura de cada línea */
    max-height: calc(1.5em * 4); /* 4 líneas de alto */
}

@media screen and (max-width: 768px) {
    .ajust-position{
        margin-top: 0;
    }
    .header-profile{
        min-height: 8rem;
        height: 8rem;
    }
}