.section-white {
    background-color: #ffff;
}

.section-white .container {
    padding: 3rem 2.5rem 5rem;
}

.section-white {
    background-color: #ffff;
}

.section-white .container {
    padding: 8rem 2.5rem 5rem;
}

.mural-wrapper {
    position: relative;
    width: 100%;
    max-width: 76rem;
    margin-inline: 0;
    aspect-ratio: 64 / 33;
    container-type: inline-size;
    box-sizing: border-box;
}

/* 1u = 1rem no notebook (64rem). Escala com o container. */
.mural-wrapper>* {
    --u: 1.5625cqw;
}

.mural-grid {
    position: absolute;
    top: 0;
    left: calc(12 * var(--u));
    width: calc(28 * var(--u));
    height: 100%;
    display: grid;
    gap: calc(1.5 * var(--u));
}

.mural-item {
    overflow: hidden;
    border: 1px solid var(--block-bg-secondary);
}

.mural-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banners-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
}

.banner-item {
    position: absolute;
    box-sizing: border-box;

    top: var(--banner-top, auto);
    left: var(--banner-left, auto);
    right: var(--banner-right, auto);
    width: var(--banner-width, auto);
    height: var(--banner-height, auto);
    max-width: 100%;

    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;

    background-color: rgba(20, 20, 20, 0.35);
    backdrop-filter: blur(8px) saturate(140%);
    -webkit-backdrop-filter: blur(8px) saturate(140%);

    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    color: #fff;
    pointer-events: auto;

    display: flex;
    align-items: center;
    gap: calc(4 * var(--u));
    padding: calc(1 * var(--u)) calc(1 * var(--u)) calc(1 * var(--u)) calc(2 * var(--u));

    transition:
        background-color .35s ease,
        backdrop-filter .35s ease,
        box-shadow .35s ease,
        transform .35s ease;
    will-change: transform;
}

.banner-item:hover {
    background-color: var(--accent);
    backdrop-filter: blur(10px) saturate(160%);
    -webkit-backdrop-filter: blur(10px) saturate(160%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* opcional: sutil realce no texto no hover */
.banner-item:hover .banner-label,
.banner-item:hover .banner-title {
    opacity: 1;
}

.banner-label,
.banner-desc {
    transition: opacity .35s ease;
}

.banner-item h1 {
    font-family: "Geist Mono", monospace;
    font-weight: 200;
    font-size: calc(3 * var(--u));
    flex: 0 0 calc(10 * var(--u));
    white-space: nowrap;
    margin: 0;
}

.banner-item p {
    flex: 0 0 calc(15 * var(--u));
    font-size: calc(1 * var(--u));
    line-height: 1.5;
    margin: 0;
}

.banner-item-first {
    --banner-top: calc(2 * var(--u));
    --banner-left: 0;
    --banner-width: calc(15 * var(--u));
    --banner-height: calc(3 * var(--u));
}

.banner-item-second {
    --banner-top: calc(8 * var(--u));
    --banner-right: calc(4 * var(--u));
    --banner-width: calc(15 * var(--u));
    --banner-height: calc(3 * var(--u));
}

.banner-item-third {
    --banner-top: calc(22 * var(--u));
    --banner-left: calc(3 * var(--u));
    --banner-width: calc(15 * var(--u));
    --banner-height: calc(3 * var(--u));
}

.banner-item-fourth {
    --banner-top: calc(18 * var(--u));
    --banner-right: 0;
    --banner-width: calc(35 * var(--u));
    --banner-height: calc(11 * var(--u));
}

/* ---------- TELAS ESTREITAS: sai do palco, entra no fluxo ---------- */
@media (max-width: 62rem) {
    .mural-wrapper {
        aspect-ratio: auto;
    }

    .mural-grid {
        position: static;
        left: auto;
        width: 100%;
        height: 22rem;
        gap: 1rem;
    }

    .banners-overlay {
        position: static;
        inset: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .banner-item {
        position: static;
        width: 100%;
        height: auto;
        min-height: 3.5rem;
        gap: 1rem;
        padding: 1rem;
    }

    .banner-item-fourth {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }

    .banner-item h1 {
        font-size: 2rem;
        flex: 0 0 auto;
        white-space: normal;
    }

    .banner-item p {
        font-size: 1rem;
        flex: 0 0 auto;
    }
}

/* ---------- DESKTOP (seu layout, com o seletor corrigido) ---------- */
.mural-duo {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    margin-top: 3rem;
}

.mural-duo-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1 1 50%;
    min-width: 0;
}

.mural-duo-media {
    overflow: hidden;
    border: 1px solid var(--block-bg-secondary);
    height: var(--mural-duo-height, 35rem);
}

.mural-duo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mural-text {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 1rem 6rem 4rem;
}

.mural-text h1 {
    /* ← era .banner-item h1 (não aplicava) */
    font-family: "Geist Mono", monospace;
    font-weight: 200;
    font-size: 3rem;
    flex: 0 0 10rem;
    white-space: nowrap;
    margin: 0;
}

.mural-text p {
    flex: 0 0 15rem;
    margin: 0;
    line-height: 1.5;
}

.mural-duo-item-first {
    --mural-duo-height: 13rem;
}

.mural-duo-item-second {
    --mural-duo-height: 33rem;
}

@media (max-width: 62rem) {
    .mural-duo {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .mural-text {
        gap: 2rem;
        padding: 1rem 1rem 3rem 2rem;
    }

    .mural-text h1 {
        font-size: 2.25rem;
        flex: 0 1 auto;
    }

    .mural-text p {
        flex: 1 1 auto;
    }

    .mural-duo-item-first {
        --mural-duo-height: 11rem;
    }

    .mural-duo-item-second {
        --mural-duo-height: 26rem;
    }
}

@media (max-width: 48rem) {
    .mural-duo {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
        margin-top: 2rem;
    }

    .mural-duo-item {
        flex: 1 1 auto;
        width: 100%;
        gap: 1rem;
    }

    .mural-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0 0 0.5rem 0;
    }

    .mural-text h1 {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
        white-space: normal;
        flex: 0 0 auto;
        line-height: 1.1;
        overflow-wrap: anywhere;
    }

    .mural-text p {
        flex: 0 0 auto;
        font-size: 1rem;
    }

    .mural-duo-media {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .mural-duo-item-first .mural-duo-media {
        aspect-ratio: 16 / 9;
    }

    .mural-duo-item-second .mural-duo-media {
        aspect-ratio: 4 / 5;
    }
}


@media (max-width: 25rem) {
    .mural-duo {
        gap: 1.5rem;
    }

    .mural-duo-item-second .mural-duo-media {
        aspect-ratio: 1 / 1;
    }
}


.section-dark-green .container {
    padding: 3.5rem 2.5rem 4rem;
}

.section-dark-green {
    background-color: var(--block-bg);
    color: var(--bg-secondary);
}

.section-flex-dark {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.section-flex-left {
    flex: 0 0 20rem;
}

.section-flex-right {
    flex: 0 0 30rem;
    margin-left: auto;
}

.btn-equal {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 17rem;
    font-size: 1.25rem;
    text-align: center;
}

.btn-padded {
    padding: 3rem;
    width: 17rem;
    font-size: 1.25rem;
}

.text-title {
    font-family: "Geist Mono", monospace;
    font-weight: 900;
    color: var(--block-bg-secondary);
    font-size: 2rem;
}

.text-title-wrap {
    max-width: 20rem;
    word-wrap: break-word;
    line-height: 1.2;
}

.form-contact {
    background-color: var(--bg-secondary);
    color: var(--accent-dark);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
}

.form-contact input.form-control,
.form-contact textarea.form-control,
.form-contact select.form-select {
    border-radius: var(--border-radius-sm);
    color: var(--accent-dark);
    background-color: #ffffff;
    border: 1px solid transparent;
}

.form-contact input.form-control:focus,
.form-contact textarea.form-control:focus,
.form-contact select.form-select:focus {
    background-color: #ffffff;
    border-color: var(--accent-dark);
    box-shadow: none;
}

.form-contact input.form-control::placeholder,
.form-contact textarea.form-control::placeholder {
    color: var(--bg-secondary);
    opacity: 1;
}

.form-contact input.form-control:focus::placeholder,
.form-contact textarea.form-control:focus::placeholder {
    color: var(--bg-secondary);
}

@media (max-width: 768px) {

    .btn-equal,
    .btn-padded {
        width: 100%;
        padding: 1.25rem 1rem;
    }
}