/* ============ VARIÁVEIS DE CORES ============ */
:root {
    --orange-primary: #FF6B35;
    --orange-secondary: #FFA05D;
    --orange-light: #FFD6A5;
    --orange-accent: #FF914D;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-medium: #E9ECEF;
    --gray-dark: #6C757D;
    --text-dark: #212529;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --border-radius: 10px;
}

/* ============ ESTILOS GERAIS ============ */
.smf-minha-conta-container {
    background-color: var(--white);
    padding: 2.5rem 0;
    font-family: 'Poppins', sans-serif;
}

/* ============ LAYOUT PRINCIPAL ============ */
.row {
    --bs-gutter-x: 2rem;
}

.card {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.card-header {
    background-color: var(--orange-primary) !important;
    color: var(--white);
    padding: 1.25rem 1.75rem;
    border-bottom: none;
}

.card-header h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.card-body {
    padding: 1.75rem;
}

/* ============ MENU LATERAL ============ */
.smf-account-sidebar {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.smf-account-sidebar:hover {
    box-shadow: var(--shadow);
}

.list-group-item {
    padding: 1rem 1.75rem;
    border-left: none;
    border-right: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.list-group-item:not(.active):hover {
    background-color: var(--gray-light);
    color: var(--orange-primary);
}

.list-group-item.active {
    background-color: var(--orange-light);
    color: var(--orange-primary);
    border-color: var(--gray-medium);
    font-weight: 600;
}

.list-group-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: var(--orange-primary);
}

.list-group-item i {
    width: 24px;
    text-align: center;
    margin-right: 1rem;
    color: inherit;
}

/* ============ BOTÕES GERAIS ============ */
.smf-btn-primary {
    background-color: var(--orange-primary);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.smf-btn-primary:hover {
    background-color: var(--orange-accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(255, 107, 53, 0.3);
}

/* ============ RESPONSIVIDADE ============ */
@media (max-width: 992px) {
    .smf-account-sidebar {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .smf-minha-conta-container {
        padding: 1.5rem 0;
    }
    
    .card-header h5 {
        font-size: 1.1rem;
    }
    
    .list-group-item {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ============ ESTILOS PARA TODOS OS BOTÕES ============ */
.smf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange-primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.smf-btn:hover {
    background-color: var(--orange-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
}

.smf-btn:active {
    transform: translateY(0);
}

.smf-btn i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Botão secundário (para ações menos importantes) */
.smf-btn-secondary {
    background-color: white;
    color: var(--orange-primary);
    border: 1px solid var(--orange-primary);
}

.smf-btn-secondary:hover {
    background-color: var(--orange-primary);
    color: white;
}

.container {
    display: block;
}

/* Barra de Rolagem Personalizada */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cor-fundo);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--cor-primaria);
    border-radius: 4px;
    border: 2px solid var(--cor-fundo);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--cor-secundaria);
}