/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CORES PADRÃO (BRISA STYLE) */
:root {
    --primary: #f79f1f;
    --primary-dark: #d97706;
    --dark: #0f172a;
    --gray: #64748b;
    --light: #f8fafc;
    --success: #22c55e;
    --danger: #ef4444;
}

/* BODY */
body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--dark);
}
html, body {
    height: 100%;
}

/* BOTÕES PADRÃO */
.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    transition: 0.3s;
}

    .btn-primary-custom:hover {
        background: var(--primary-dark);
    }

/* CARDS */
.card-custom {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* TABELA PADRÃO */
.table-custom {
    width: 100%;
    border-collapse: collapse;
}

    .table-custom th {
        background: #f1f5f9;
        padding: 12px;
    }

    .table-custom td {
        padding: 10px;
        border-bottom: 1px solid #e2e8f0;
    }
