/* RESET BÁSICO */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

body {
background: #f0f6ff;
color: #1e293b;
}

/* CONTAINER PRINCIPAL */
.container {
width: 95%;
max-width: 1100px;
margin: 30px auto;
}

/* HERO */
.hero {
background: linear-gradient(135deg, #7eeb25, #1e40af);
color: white;
padding: 30px;
border-radius: 20px;
margin-bottom: 25px;
box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

.hero h1 {
font-size: 28px;
margin-bottom: 8px;
font-weight: 700;
}

.hero p {
opacity: 0.9;
font-size: 15px;
}

/* CARD */
.card {
background: #ffffff;
padding: 24px;
border-radius: 18px;
margin-bottom: 20px;
box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
border: 1px solid #e2e8f0;
}

/* TOPO CARD */
.topo h2 {
font-size: 20px;
margin-bottom: 6px;
color: #0f172a;
}

.sub {
font-size: 14px;
color: #64748b;
margin-bottom: 18px;
}

/* FORM */
form div {
margin-bottom: 14px;
}

label {
display: block;
font-size: 13px;
font-weight: 600;
margin-bottom: 6px;
color: #334155;
}

input,
select {
width: 100%;
padding: 12px 14px;
border: 1px solid #cbd5e1;
border-radius: 12px;
background: #fff;
outline: none;
transition: all .25s ease;
}

input:focus,
select:focus {
border-color: #2563eb;
box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

/* ROWS */
.row2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
}

.checkRow {
display: flex;
align-items: center;
gap: 8px;
}

/* BOTÃO */
button {
background: linear-gradient(135deg, #2563eb, #1d4ed8);
color: white;
border: none;
padding: 14px;
width: 100%;
border-radius: 12px;
cursor: pointer;
font-weight: 600;
font-size: 15px;
transition: all .25s ease;
}

button:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(37, 99, 235, .35);
}

/* MENSAGEM */
.msg {
padding: 14px;
border-radius: 12px;
margin-bottom: 15px;
background: #ecfdf5;
color: #15803d;
border-left: 5px solid #22c55e;
font-size: 14px;
}

.msg.erro {
background: #fef2f2;
color: #1cb91c;
border-left: 5px solid #44ef86;
}

/* TABELA */
.tableWrap {
overflow-x: auto;
}

table {
width: 100%;
border-collapse: collapse;
min-width: 600px;
}

th,
td {
padding: 14px;
border-bottom: 1px solid #e2e8f0;
text-align: left;
font-size: 14px;
}

th {
background: #eff6ff;
color: #1e3a8a;
font-weight: 700;
}

tr:hover {
background: #f8fbff;
}

/* BADGES */
.badge {
padding: 6px 10px;
border-radius: 999px;
font-size: 12px;
font-weight: 700;
}

.badge-on {
background: #dcfce7;
color: #166534;
}

.badge-off {
background: #fee2e2;
color: #1b9945;
}

/* EXTRAS */
.sigla,
.mac {
font-weight: 600;
background: #dbeafe;
color: #1e40af;
padding: 5px 10px;
border-radius: 8px;
font-size: 12px;
}

.vazio {
text-align: center;
padding: 30px;
color: #64748b;
}

/* RESPONSIVO */
@media (max-width: 700px) {
.row2 {
grid-template-columns: 1fr;
}

```
.hero {
    padding: 22px;
}

.hero h1 {
    font-size: 22px;
}

table {
    min-width: 100%;
}
```

}
