/* ========================================
   ESTILOS PADRÃO - ÁREA DO LOJISTA
   ======================================== */

/* Layout Base */
body {
    background: #f5f7fa;
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 30px;
}

/* Containers Principais */
.conta-container,
.dados-container,
.plano-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Cabeçalho de Página */
.page-header {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-header h1,
.page-header h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #666;
    margin-bottom: 0;
}

/* Cards de Seção */
.section-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.section-card h2,
.section-card h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #667eea;
}

/* Cards de Estatísticas */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-label {
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    color: #333;
    font-size: 1.75rem;
    font-weight: 700;
}

.stat-icon {
    font-size: 2rem;
    opacity: 0.3;
}

/* Cards Coloridos */
.right-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.right-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
    border: none;
}

.right-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.right-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.right-card ul li:last-child {
    border-bottom: none;
}

/* Botões Personalizados */
.btn-lgpd,
.btn-custom-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-lgpd:hover,
.btn-custom-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Badges de Status */
.status-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-pendente { background-color: #ffc107; color: #000; }
.status-em_analise { background-color: #17a2b8; color: white; }
.status-aprovada, .status-concluida { background-color: #28a745; color: white; }
.status-rejeitada, .status-cancelada { background-color: #dc3545; color: white; }
.status-ativo { background-color: #28a745; color: white; }
.status-inativo, .status-suspenso { background-color: #6c757d; color: white; }

/* Caixas de Informação */
.info-box {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.info-box p {
    margin: 0;
    color: #495057;
}

/* Responsivo */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
        padding-bottom: 20px;
    }

    .conta-container,
    .dados-container,
    .plano-container {
        padding: 0 15px;
    }

    .page-header {
        padding: 1.5rem;
    }

    .section-card {
        padding: 1.5rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }
}
