#revestir2024 { 
    margin: 40px 0 60px;
    .header--container {
        .content--wrapper {
            display: grid;
            grid-template-columns: 1fr 608px;
            grid-template-areas: "content media";
            column-gap: 150px;
            row-gap: 40px;
            .content {
                grid-area: content;
                header {
                    margin: 0 0 40px;
                    .subtitle {
                        text-transform: uppercase;
                        font-weight: 400;
                    }
                }
                .cta--container {
                    margin: 40px 0;
                    display: flex;
                    gap: 20px;
                }
                .social-container {
                    margin: 20px 0 0;
                    display: flex;
                    gap: 60px;
                    .pbds-btn.clear {
                        --btn-border: 0px;
                        --btn-bg: none;
                        --btn-color: var(--clr-black);
                        --btn-size: 1rem;
                        --btn-icon: 16px;
                        --btn-padding: 0;
                    }
                }
            }
            .media {
                grid-area: media;
                align-self: center;
                justify-self: center;
            }
            @media (max-width: 1080px) {
                grid-template-columns: 100%;
                grid-template-areas: "content" "media";
            }
        }
    }
    #gallery {
        margin: 60px 0;
        p {
            margin: 0 0 30px;
        }
    }
    #collection {
        background: linear-gradient(0deg,var(--clr-gray-700) 90%,transparent 90%);
        .pbds-video {
            aspect-ratio: 992 / 558;
            border-radius: 5px;
            .image--wrapper {
                width: 100%;
                height: 100%;
                .desktop, .mobile {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                }
            }
            .icon {
                transform: translate(-50%,-50%);
                position: absolute;
                top: 50%;
                left: 50%;
                z-index: 2;
            }
        }
        .content--wrapper {
            margin: 80px 0 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-areas: "media content";
            column-gap: 150px;
            row-gap: 40px;
            .content {
                max-width: 610px;
                grid-area: content;
                color: var(--clr-white);
                > span, p {
                    display: block;
                    margin: 0 0 1rem;
                }
                .cta--container {
                    margin: 40px 0;
                    display: flex;
                    gap: 20px;
                }
            }
            .logo--wrapper {
                grid-area: media;
                height:100%;
                justify-self: center;
                h2 {
                    top: var(--menu-height);
                    position: sticky;
                }
            }
            @media (max-width: 1080px) {
                grid-template-columns: 100%;
                grid-template-areas: "content" "media";
            }
        }
    }
    #lancamentos {
        padding: 80px 0 0;
        background: var(--clr-gray-700);
        > .pbds-container {
            display: flex;gap: 40px;
            h2 {
                color: var(--clr-white);
                text-transform: uppercase;
                b {
                    display: block;
                }
            }
        }
        .carousel-container {
            padding: 20px 0 0;
            .item-carousel {
                width: 350px;
                height: 450px;
                border-radius: 10px;
                overflow: hidden;
                a {
                    width: 100%;
                    height: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    > img {
                        width: 100%;
                        height: 100%;
                        display: block;
                        object-fit: cover;
                        object-position: center;
                        position: absolute;
                        top: 0;
                        left: 0;
                        z-index: 1;
                        transition: all 0.3s ease-out;
                    }
                    > span {
                        position: relative;
                        font-size: 12px;
                        letter-spacing: 1px;
                        text-transform: uppercase;
                        color: var(--clr-white);
                        opacity: 0;
                        z-index: 5;
                        transition: all 0.3s ease-out;
                        &.title {
                            margin: 0 0 4px;
                            font-size: 22px;
                            font-weight: 400;
                        }
                        &.subtitle {
                            margin: 12px 0 0;
                            &:before {
                                width: 40px;
                                height: 1px;
                                display: block;
                                content: "";
                                background: var(--clr-white);
                                position: absolute;
                                top: -12px;
                                transform: translateX(50%);
                            }
                        }
                    }
                    &:before {
                        width: 100%;
                        height: 100%;
                        display: block;
                        content: "";
                        position: absolute;
                        top: 0;
                        left: 0;
                        z-index: 2;
                        background: rgba(0, 0, 0, 0.5);
                        opacity: 0;
                        transition: all 0.3s ease-out;
                    }
                    &:hover {
                      &:before,
                      > span {
                          opacity: 1;
                      }
                      > img {
                          filter: blur(8px);
                      }
                    }
                }
            }
            .filler {
                width: calc((100dvw - var(--max-container))/2 - 20px);
            }
            .item-carousel--more {
                display: flex;
                flex-grow: 1;
                align-self: stretch;
                a {
                    margin: 0 0 86px;
                    align-self: flex-end;
                    display: flex;
                    justify-content: flex-end;
                    align-items: center;
                    flex-direction: column;
                    gap: 20px;
                    img {
                        transition: all 0.3s ease-out;
                    }
                    span {
                        display: block;
                        width: 96px;
                        font-size: 0.75rem;
                        font-weight: 400;
                        text-transform: uppercase;
                        text-align: center;
                        color: var(--clr-white);
                    }
                    &:hover {
                        img {
                            margin: 0 0 0 40px;
                        }
                    }
                }
            }
        }
    }
    #parceiros {
        padding: 60px 0 0;
        background: linear-gradient(0deg,transparent 20%,var(--clr-gray-700) 20%);
        color: var(--clr-white);
        header {
            h2 {
                width: 240px;
                margin: 0 0 30px;
            }
            p {
                max-width: 769px;
            }
        }
        .card-parceiro {
            width: 100%;
            position: relative;
            aspect-ratio: 353 / 438;
            border-radius: 10px;
            overflow: hidden;
            .content {
                width: 100%;
                height: 100%;
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 20px;
                padding: 20px 40px;
                text-align: center;
                z-index: 2;
                background: rgba(0,0,0,0.8);
                opacity: 0;
                transition: all 0.3s ease-out;
                &:hover {
                    opacity: 1;
                }
                h3 {
                    font-size: 1.25rem;
                    font-weight: 500;
                    text-transform: uppercase;
                }
                a {
                    margin: 0 0 20px;
                }
                .footnote-author {
                    font-size: 0.675rem;
                }
            }
            .image {
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                z-index: 1;
                > img {
                    width: 100%;
                    height: 100%;
                    display: block;
                }
            }
        }
        .list--wrapper {
            margin: 40px 0 0;
            ul {
                display: grid;
                grid-template-columns: repeat(4,1fr);
                gap: 20px;
            }
        }
    }
    #sustentability {
        margin: 80px 0;
    }
    #auxcontent,
    #auxcontent * {
        --bnr--aspect: 766 / 380;
    }
    #content {
        margin: 60px 0;
        h2 {
            margin: 0 0 20px;
        }
    }
}