
body{font-family:Arial;background:#0f172a;color:#fff;padding:20px}

.abas{display:flex;gap:8px;margin-bottom:10px;flex-wrap:wrap}

.aba{background:#1e293b;color:#fff;border:none;padding:8px 12px;border-radius:6px;cursor:pointer}

.aba.ativa{background:#2563eb}

.conteudo-aba{display:none}

.conteudo-aba.ativa{display:block}


th,td{padding:6px;border-bottom:1px solid #334155}

/* =========================
   RESET E VARIÁVEIS
========================= */
:root {
    --azul-escuro: #0b4db8;
    --azul-principal: #1e88e5;
    --azul-claro: #e3f2fd;
    --azul-hover: #1565c0;

    --cinza-bg: #f5f7fa;
    --cinza-borda: #dbe1ea;
    --cinza-texto: #1f2937;

    --branco: #ffffff;
    --sucesso: #16a34a;
    --erro: #dc2626;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* =========================
   BODY
========================= */
body {
    font-family: 'Poppins', Arial, sans-serif;
    background: var(--cinza-bg);
    color: var(--cinza-texto);
    min-height: 100vh;
}

/* =========================
   CONTAINER
========================= */
.container {
    padding: 16px;
    max-width: 100%;
}

/* =========================
   TÍTULOS
========================= */
h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 12px;
}

h2 {
    font-size: 20px;
    color: var(--azul-escuro);
}

h3 {
    font-size: 16px;
    color: var(--azul-principal);
}

/* =========================
   CARDS
========================= */
.card {
    background: var(--branco);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 14px;
    border: 1px solid var(--cinza-borda);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

/* =========================
   FORMULÁRIOS
========================= */
form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin: 10px 0 4px;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--cinza-borda);
    font-size: 15px;
    background: var(--branco);
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 90px;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--azul-principal);
    box-shadow: 0 0 0 2px rgba(30,136,229,0.15);
}

/* =========================
   BOTÕES
========================= */
button,
.btn {
    width: 100%;
    padding: 16px;
    margin-top: 12px;
    background: linear-gradient(135deg, var(--azul-principal), var(--azul-escuro));
    color: var(--branco);
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover,
.btn:hover {
    background: linear-gradient(135deg, var(--azul-hover), var(--azul-escuro));
}

button:active,
.btn:active {
    transform: scale(
    
    .acoes{
    display:flex;
    gap:10px;
    justify-content:center;
}

.btn-icon{
    text-decoration:none;
    font-size:18px;
    padding:6px 8px;
    border-radius:8px;
    transition:0.2s;
}

.btn-icon.editar{
    background:#2563eb;
    color:#fff;
}

.btn-icon.editar:hover{
    background:#1d4ed8;
}

.btn-icon.excluir{
    background:#dc2626;
    color:#fff;
}

.btn-icon.excluir:hover{
    background:#b91c1c;
}

/* Mobile */
@media(max-width:600px){
    table{
        font-size:14px;
    }
    .btn-icon{
        font-size:16px;
    }
}

/* RESET BÁSICO */
* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* FUNDO */
.vab-bg {
    min-height: 100vh;
    background: linear-gradient(180deg, #0b2c4a, #061a2d);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

/* CARD */
.vab-card {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* LOGO / IDENTIDADE */
.logo-vab {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #0b2c4a;
    margin-bottom: 10px;
}

/* TÍTULO */
.vab-card h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #0b2c4a;
}

/* INPUTS */
.vab-card input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

/* BOTÃO PRINCIPAL */
.btn-vab {
    width: 100%;
    padding: 13px;
    background: #0b2c4a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.btn-vab:hover {
    background: #14406a;
}

/* BOTÃO INFO */
.btn-info {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: #eef4f9;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    color: #0b2c4a;
}

/* TEXTO COLAPSÁVEL */
.texto-info {
    display: none;
    margin-top: 10px;
    font-size: 13px;
    color: #444;
    text-align: justify;
}

.texto-info.ativo {
    display: block;
}

/* AÇÕES */
.acoes {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* BOTÕES SECUNDÁRIOS */
.btn-outline {
    flex: 1;
    text-align: center;
    padding: 10px;
    border: 1px solid #0b2c4a;
    border-radius: 8px;
    text-decoration: none;
    color: #0b2c4a;
    font-size: 14px;
}

.btn-outline:hover {
    background: #0b2c4a;
    color: #fff;
}

/* ERRO */
.erro {
    color: #c00;
    text-align: center;
    margin-top: 8px;
}

/* MOBILE EXTRA */
@media (max-width: 480px) {
    .acoes {
        flex-direction: column;
    }
}
