body {
    --menu-height: 0px !important;
}
/* CAPA */
#simuladormosaicosCover {
    width: 100dvw;
    height: calc(100dvh - var(--menutool-height));
    display: grid;
    grid-template-columns: 40% 1fr;
    grid-template-areas: "image content";
    gap: 180px;
    .image--container {
        grid-area: image;
        width: 100%;
        height: calc(100dvh - var(--menutool-height));
        > img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
    }
    .content--container {
        max-width: 36dvw;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 80px;
        .header--wrapper {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            flex-direction: column;
            gap: 40px;
            header {
                display: flex;
                justify-content: center;
                align-items: flex-start;
                flex-direction: column;
                gap: 10px;
                margin: 0;
                h1 {
                    order: 2;
                    margin: 0;
                    font-size: 3rem;
                    font-weight: 500;
                }
                span {
                    order: 1;
                    font-size: 1rem;
                    font-weight: 400;
                    letter-spacing: 2px;
                }
            }
        }
        .content--wrapper p {
            font-weight: 300;
        }
    }
    @media (max-width: 1440px) {
        gap: 78px;
        .content--container {
            max-width: 45dvw;
            gap: 40px;
        }
    }
    @media (max-width: 1180px) {
        min-height: auto;
        height: auto;
        grid-template-columns: 100%;
        grid-template-areas: "image" "content";
        grid-template-rows: 33dvh auto;
        gap: 160px;
        padding: 0 0 calc(2 * var(--menutool-height));
        .content--container {
            max-width: 50dvw;
            margin: 0 auto;
            justify-content: flex-start;
            gap: 40px;
        }
        .image--container {
            height: 100%;
        }
    }
    @media (max-width: 1024px) {
        grid-template-rows: 45dvh auto;
        gap: 50px;
    }
    @media (max-width: 769px) {
        .content--container {
            max-width: calc(100dvh - 40px);
            padding: 0 20px;
            .header--wrapper {
                gap: 20px;
                header {
                    span {
                        font-size: 0.875rem;
                    }
                    h1 {
                        font-size: 1.75rem;
                    }
                }
            }
        }
    }
}
/* LINHAS */
#Mosaico_mosaicsimulatorLines {
    padding-top: 60px;
    .pbds-header--tool {
        margin: 0 0 40px;
    }
    .pbds-list--grid{
        padding-bottom: calc(var(--menutool-height) + 40px);
    }
}