/* ==============================
   CEST
============================== */

.cest-hero {
    padding: 20px 0;
    background: linear-gradient(180deg, #f7fbfb 0%, #ffffff 70%);
}

.cest-page h2 {
    margin-bottom: 16px;
}

.cest-page p {
    line-height: 1.7;
}

/* Tabela */
.tabela-wrapper {
    overflow-x: auto;
    margin-top: 20px;
}

.cest-table {
    width: 100%;
    min-width: 1100px;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e5e5e5;
}

.cest-table th,
.cest-table td {
    padding: 12px 10px;
    border: 1px solid #ddd;
    vertical-align: top;
    text-align: left;
    line-height: 1.5;
}

.cest-table th {
    background: #f3f3f3;
    font-weight: 700;
}

.cest-table tbody tr:nth-child(even) {
    background: #fafafa;
}

/* Reaproveitamento de padrões se ainda não estiverem em CSS compartilhado */
.highlight-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.highlight-card {
    background: #f7f7f7;
    border: 1px solid #e9eeee;
    border-radius: 6px;
    padding: 14px;
}

.hc-title {
    display: block;
    font-size: 12px;
    color: #667;
    margin-bottom: 6px;
}

.hc-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1f2a33;
}

.hc-desc {
    display: block;
    font-size: 13px;
    color: #667;
    margin-top: 4px;
}

.info-callout {
    margin-top: 18px;
    padding: 14px 16px;
    background: #f1fbfa;
    border-left: 4px solid #00b3a4;
}

@media (max-width: 900px) {
    .highlight-cards {
        grid-template-columns: 1fr;
    }
}