/* ==========================================================================
   PERFIL DE USUÁRIO (APPLE INSPIRED)
   ========================================================================== */
#profile-photo-preview {
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.08);
}

#profile-photo-preview:hover {
    transform: scale(1.04);
    border-color: #0071e3;
}

#foto {
    display: none;
}

.toggle-password {
    cursor: pointer;
    transition: color 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    color: rgba(255, 255, 255, 0.4);
}

.toggle-password:hover {
    color: #ffffff;
}

#formPerfil .form-control:focus {
    border-color: #0071e3 !important;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.25) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

#profile-status-badge {
    font-size: 0.75rem;
    padding: 0.35em 0.85em;
    border-radius: 980px !important;
}

.profile-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.profile-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
}

@media (max-width: 768px) {
    #profile-photo-preview {
        width: 120px !important;
        height: 120px !important;
    }
}