/* =========================
   RESET / BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

body {
    background: #f1f5f9;
    padding: 40px;
    color: #1f2933;
}

/* =========================
   CONTAINER
========================= */
.ipva-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* =========================
   TÍTULO
========================= */
.ipva-wrapper h2 {
    margin-bottom: 25px;
    font-size: 24px;
    color: #0f172a;
    border-left: 5px solid #2563eb;
    padding-left: 12px;
}

/* =========================
   TABELA
========================= */
.ipva-table {
    width: 100%;
    border-collapse: collapse;
}

.ipva-table thead {
    background: #2563eb;
    color: #ffffff;
}

.ipva-table th,
.ipva-table td {
    padding: 12px 14px;
    text-align: left;
}

.ipva-table th {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.ipva-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

.ipva-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.ipva-table tbody tr:hover {
    background: #e0e7ff;
    transition: background 0.2s ease-in-out;
}

/* =========================
   STATUS
========================= */
.status {
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    min-width: 90px;
}

.status-vencido {
    background: #fee2e2;
    color: #b91c1c;
}

.status-emdia {
    background: #dcfce7;
    color: #15803d;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .ipva-table th,
    .ipva-table td {
        padding: 10px;
        font-size: 13px;
    }
}
