/* ================================================================
   MVV Widget – Missão, Visão, Valores  v1.3.1
================================================================ */

.mvv-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    box-sizing: border-box;
}

.mvv-col-left {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    flex-shrink: 0;
}

.mvv-card {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-style: solid;
}

.mvv-col-right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-style: solid;
}

.mvv-title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
    margin-top: 0;
}

.mvv-text {
    line-height: 1.6;
    margin: 0;
}

.mvv-valores-lista {
    display: flex;
    flex-direction: column;
}

.mvv-valor-item {
    line-height: 1.6;
}

.mvv-valor-item:last-child {
    margin-bottom: 0 !important;
}

.mvv-valor-label {
    font-weight: 700;
}

.mvv-valor-texto {
    font-weight: 400;
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .mvv-wrapper {
        flex-direction: column;
    }
    .mvv-col-left {
        flex: 0 0 auto;
        width: 100% !important;
    }
    .mvv-col-right {
        flex: 0 0 auto;
        width: 100% !important;
    }
    .mvv-card {
        flex: 0 0 auto;
        width: 100% !important;
    }
}
