.account_photo{  position:relative; margin:0 auto 20px auto; width:164px; height:164px; background-color:#EFEFEF; background-repeat:no-repeat; background-position:center top; background-size:cover; border-radius:82px; overflow:hidden;  }

.minha-conta_container-user{ display:block; }
.minha-conta_section-item-container{ display:block; color:var(--color); margin:0.3rem 0 1rem 0; }
.minha-conta_section-item-container:last-child{ border:0px; }
.minha-conta_section-item-container h1{ font-size:2rem; font-weight:400; padding-bottom:12px; }
.minha-conta_section-item h5{ font-size:1.375rem; font-weight:400; padding-bottom:12px; }
.minha-conta_section-item{ flex:1; padding:0 0 2rem 0; }
.minha-conta_section-item p{ font-size:1.25rem; margin:0; padding:0; }

.minha-conta_container-info-address .minha-conta_section-item{ flex-basis:48%; }

.minha-conta .form-control{ padding:0.875rem; }
.minha-conta label{ font-size:1.125rem; margin-bottom:0.1rem; font-weight:300; color:var(--color); }
.form-control:disabled, .form-control[readonly]{ background-color:#EDEDED; color:#CECECE; }
.form-control.error{ border:1px solid #FF0000; }

.minha-conta_address{ padding:0; }
.minha-conta_register{ padding:0; }
.minha-conta_title{ font-size:1.5rem; font-weight:600;  padding-bottom:12px; color:var(--secondaryColor);}


.user-dashboard {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0;
}

.dashboard-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
}

.dashboard-header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.stats-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.stats-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.stats-card .icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.stats-card .icon.primary {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.stats-card .icon.success {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.stats-card .icon.warning {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.stats-card .icon.info {
    background: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
}

.stats-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #212529;
}

.stats-card p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.user-info-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.user-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.quick-actions {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.quick-action-btn {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #495057;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.quick-action-btn:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #212529;
    text-decoration: none;
}

.quick-action-btn i {
    margin-right: 0.75rem;
    width: 1.25rem;
    text-align: center;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.spacer-4 {
    height: 2rem;
}

@media (max-width: 768px) {
    .dashboard-header h1 {
        font-size: 2rem;
    }
    
    .stats-card {
        margin-bottom: 1rem;
    }
    
    .user-info-card {
        margin-bottom: 1.5rem;
    }
}