/* TEMA ADMIN - CREDIBILITA GOLD */
:root {
    --gold-primary: #D4AF37;
    --gold-light: #FFD700;
    --gold-dark: #B38728;
    --bg-dark: #f9fafb; /* gray-50 */
    --bg-card: #ffffff;
    --text-gray: #4b5563; /* gray-600 */
}

body {
    background-color: var(--bg-dark) !important;
    color: #111827 !important; /* gray-900 */
    font-family: 'Inter', sans-serif;
}

/* === CORREÇÃO DE CORES (Burgundy -> Gold) === */
.text-burgundy, [class*="text-burgundy"] { color: var(--gold-primary) !important; }
.bg-burgundy, [class*="bg-burgundy"] { background-color: var(--gold-primary) !important; color: black !important; }
.border-burgundy, [class*="border-burgundy"] { border-color: var(--gold-primary) !important; }
.hover\:bg-burgundy-light:hover, [class*="hover:bg-burgundy"]:hover { background-color: var(--gold-light) !important; }

/* === CLASSES DO TEMA GOLD === */
.text-gold { color: var(--gold-primary) !important; }
.bg-gold { background-color: var(--gold-primary) !important; color: black !important; }
.border-gold { border-color: var(--gold-primary) !important; }

/* === BOTÕES === */
.btn-gold-gradient, .btn-burgundy {
    background: linear-gradient(45deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C) !important;
    background-size: 200% 200% !important;
    color: black !important;
    font-weight: bold !important;
    border: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}
.btn-gold-gradient:hover, .btn-burgundy:hover {
    background-position: right center !important;
    transform: scale(1.02);
}

/* Botões de Ação (Deletar/Ativar) */
button.bg-red-600 { background-color: #dc2626 !important; color: white !important; }
button.bg-red-600:hover { background-color: #b91c1c !important; }
button.bg-blue-600 { background-color: #2563eb !important; color: white !important; }

/* === FORMULÁRIOS E INPUTS === */
input, textarea, select {
    background-color: #ffffff !important;
    border: 1px solid #d1d5db !important; /* gray-300 */
    color: #111827 !important;
    padding: 0.75rem !important;
    border-radius: 0.375rem !important;
    width: 100%;
    box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
    border-color: var(--gold-primary) !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2) !important;
}

/* === ABAS DE NAVEGAÇÃO === */
.tab-btn {
    color: var(--text-gray);
    padding: 1rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}
.tab-btn:hover { color: #000000; }
.tab-btn.active, .tab-btn[class*="text-gold"], .tab-btn[class*="text-burgundy"] {
    color: var(--gold-primary) !important;
    border-bottom: 2px solid var(--gold-primary) !important;
}

/* === UTILITÁRIOS (Caso Tailwind falhe) === */
.hidden { display: none !important; }
.block { display: block; }
.flex { display: flex; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.w-full { width: 100%; }
.text-white { color: #111827; } /* Invertido para tema claro onde necessário, classes específicas sobrescrevem */
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.bg-gray-900 { background-color: #ffffff; }
.bg-black { background-color: #f3f4f6; }
.border-gray-700 { border-color: #e5e7eb; }
.cursor-pointer { cursor: pointer; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.font-semibold { font-weight: 600; }
.text-sm { font-size: 0.875rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }