.profile-cover-bg{
    height:200px;
}

.card-img{
    border-radius: 0px!important;
}

@media (max-width: 767px) {
    .avatar-holder, .avatar-holder img{
        width: 130px;
        height: 130px;
    }
}
.description-content p{
    margin-bottom: .5rem;
}
.description-content p:last-child{
    margin-bottom: 5px;
}

.description-content p{
    margin-bottom: 0.3rem;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none; /* Inicialmente oculto */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-overlay img {
    width: 90%; /* Ocupa 90% da largura */
    height: auto; /* Mantém proporção */
    max-height: 90%; /* Ocupa no máximo 90% da altura */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

/* Cursor para fechar */
.popup-overlay:hover {
    cursor: pointer;
}

/* Estilos específicos para dispositivos móveis */
@media (max-width: 768px) {
    .popup-overlay img {
        width: 100%; /* Ocupa 100% da largura no celular */
        max-height: 100%; /* Usa toda a altura disponível */
        border-radius: 0; /* Remove bordas arredondadas para máxima ocupação */
    }
}


