/* ============================================
   MANIFESTO PAGE
============================================ */

.va-manifesto {
    background: #03111f;
    color: #f4f1eb;
    min-height: 100vh;
    font-family: "Montserrat", Arial, sans-serif;
}

.va-manifesto-hero__inner,
.va-manifesto-pillars__inner,
.va-manifesto-body__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
}

.va-manifesto-hero {
    position: relative;
    padding: 55px 0 32px;
    background:
        linear-gradient(
            to right,
            rgba(3,17,31,0.96) 0%,
            rgba(3,17,31,0.88) 42%,
            rgba(3,17,31,0.42) 74%,
            rgba(3,17,31,0.74) 100%
        ),
        url('/wp-content/themes/universo-va/assets/images/manifesto-bg.jpg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.va-manifesto-hero__content {
    max-width: 900px;
}

.va-manifesto__eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #EF790D;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.va-manifesto h1 {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.035em;
}

.va-manifesto-hero p {
    margin: 0;
    max-width: 900px;
    color: rgba(255,255,255,0.88);
    font-size: 20px;
    line-height: 1.75;
}

.va-manifesto-pillars {
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.14);
}

.va-manifesto-pillars__inner {
    padding-top: 18px;
    padding-bottom: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.va-manifesto-pillar {
    text-align: left;
}

.va-manifesto-pillar h2 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.va-manifesto-pillar p {
    margin: 0;
    color: rgba(255,255,255,0.70);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
}

.va-manifesto-body {
    padding: 22px 0 80px;
}

.va-manifesto-block {
    margin-bottom: 38px;
}

.va-manifesto-block p {
    margin: 0 0 24px;
    color: rgba(255,255,255,0.92);
    font-size: 21px;
    line-height: 1.95;
    font-weight: 400;
    letter-spacing: -0.015em;
}

.va-manifesto-block strong {
    color: #ffffff;
    font-weight: 700;
}

.va-manifesto-divider {
    display: none;
}

.va-manifesto-block--closing {
    padding-top: 42px;
    text-align: center;
}

.va-manifesto-block--closing p {
    color: rgba(255,255,255,0.96);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 2.1;
    font-weight: 400;
}

/* RESPONSIVO */

@media (max-width: 1024px) {

    .va-manifesto h1 {
        font-size: 42px;
    }

    .va-manifesto-pillars__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .va-manifesto-block p {
        font-size: 19px;
    }
}

@media (max-width: 768px) {

    .va-manifesto {
        display: block;
        background: #03111f;
    }

    .va-manifesto-hero__inner,
    .va-manifesto-pillars__inner,
    .va-manifesto-body__inner {
        max-width: none;
        padding: 0 24px;
    }

    .va-manifesto-hero {
        padding: 44px 0 34px;
        background:
            linear-gradient(
                rgba(3,17,31,0.88),
                rgba(3,17,31,0.94)
            ),
            url('/wp-content/themes/universo-va/assets/images/manifesto-bg.jpg.png');
        background-size: cover;
        background-position: center;
    }

    .va-manifesto__eyebrow {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .va-manifesto h1 {
        font-size: 40px;
        line-height: 1.05;
        margin-bottom: 18px;
    }

    .va-manifesto-hero p {
        font-size: 18px;
        line-height: 1.65;
    }

    .va-manifesto-pillars__inner {
        grid-template-columns: 1fr 1fr;
        gap: 18px 20px;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .va-manifesto-pillar h2 {
        font-size: 12px;
    }

    .va-manifesto-pillar p {
        font-size: 13px;
    }

    .va-manifesto-body {
        padding: 34px 0 72px;
    }

    .va-manifesto-block {
        margin-bottom: 34px;
    }

    .va-manifesto-block p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 22px;
    }

    .va-manifesto-block--closing {
        padding-top: 26px;
    }

    .va-manifesto-block--closing p {
        font-size: 28px;
        line-height: 1.75;
    }
}