header {
    color: white;
    text-align: center;
    background: #40c5ba;
}

footer {
    background-color: #40c5ba;
}

.navbar {
    background-color: #40c5ba;
    border-bottom: 3px solid #40c5ba;

}

.nav-links li a:hover {
    background-color: #2ea59b;
}

.charco-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 18px;
    align-items: start;
    padding: 8px 14px 24px;
}

.charco-panel {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.charco-photo {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    aspect-ratio: 16/9;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    margin-bottom: 12px;
}

.charco-kpis {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 16px;
}

@media (max-width: 980px) {
    .charco-wrap {
        grid-template-columns: 1fr;
    }

    .charco-kpis {
        grid-template-columns: 1fr;
    }
}

.kpi {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.kpi__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 8px;
}

.kpi__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 14px;
    background: #eef2ff;
    color: #1f2937;
    border: 1px solid #dbe1ff;
}

.kpi__status {
    font-size: 12px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 10px;
    background: #e5e7eb;
    color: #111827;
}

.kpi__status.ok {
    background: #22c55e;
    color: #0b1320;
}

.kpi__status.warn {
    background: #f59f00;
    color: #111;
}

.kpi__status.crit {
    background: #d72e2e;
    color: #fff;
}

.kpi__body {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px dashed #e5e7eb;
}

.kpi__value {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .2px;
}

.kpi__hint {
    margin-top: 8px;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.45;
}

.charco-footer {
    margin-top: 10px;
    font-size: 12px;
    color: #6b7280;
}

.manut-panel {
    margin: 10px 14px 24px;
}

.manut-intro {
    font-size: 14px;
    margin-bottom: 10px;
}

.manut-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 8px;
}

.manut-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.manut-table th,
.manut-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.manut-table thead {
    background: #e0f2fe;
}

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

.tag-ok,
.tag-pend {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.tag-ok {
    background: #22c55e;
    color: #0b1320;
}

.tag-pend {
    background: #facc15;
    color: #111827;
}

.manut-legenda {
    margin-top: 10px;
    font-size: 13px;
    color: #4b5563;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
    /* animação suave entre imagens */
}

.carousel-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}