/* =========================================
   PERFIL.CSS - TELA DE PERFIL (APP)
   ========================================= */

/* Área do Avatar no Topo */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0 1rem 0;
    text-align: center;
}

.profile-avatar-large {
    width: 90px;
    height: 90px;
    background: var(--gradient-brand);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.profile-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
}

.profile-email {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Container dos Formulários */
.profile-section {
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.profile-section-title {
    font-size: 1rem;
    color: var(--color-purple);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Botão de Sair (Logout) */
.btn-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background-color: rgba(244, 91, 105, 0.1);
    color: var(--color-pink);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 2rem;
}

.btn-logout:hover {
    background-color: rgba(244, 91, 105, 0.2);
}