/* Estilos principais do site */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--color-bg-main, #0f172a);
    color: #ffffff;
    line-height: 1.6;
}

/* Scrollbar customizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* Links */
a {
    color: #fbbf24;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #f59e0b;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background-color: #f59e0b;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #d97706;
}

.btn-secondary {
    background-color: #3b82f6;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #2563eb;
}

/* Cards */
.card {
    background-color: #1e293b;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #334155;
    transition: border-color 0.3s;
}

.card:hover {
    border-color: #475569;
}

/* Formulários */
input, textarea, select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #334155;
    background-color: #1e293b;
    color: #ffffff;
    font-size: 1rem;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

/* Tabelas */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #334155;
}

th {
    background-color: #1e293b;
    font-weight: 600;
}

tr:hover {
    background-color: #1e293b;
}

/* Responsividade */
@media (max-width: 768px) {
    .card {
        padding: 1rem;
    }
}



