.hero-section {
    overflow: hidden;
    /* padding-top: 98px; */
    position: relative;
    min-height: 98dvh;

    img.hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        right: 0;
        filter: brightness(0.6);
    }

    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* padding: 160px 0; */
        /* background-color: #2C267B; */
        z-index: 2;
        display: flex;
        align-items: center;

        h1,
        p {
            color: #FFFCF5;
            font-size: 20px;
        }

        .cat {
            background-color: #FFFCF5;
            color: #faa41a;
            text-transform: uppercase;
            font-weight: 700;
            padding: 8px 12px;
            border-radius: 40px;
        }

        .texto {
            p.desc {
                color: #F5F5F5;
            }

            .diferenciais {

                .card-difs {
                    h4 {
                        font-size: 16px;
                        font-weight: 500;
                        color: #33142A;
                    }

                    p {
                        margin: 0;
                        color: #fff;
                    }

                    .icon-box {
                        img {
                            width: 42px;
                            height: auto;
                            aspect-ratio: 1 / 1;
                        }
                    }
                }
            }
        }

        a {
            pointer-events: auto;
        }

        a.cta {
            background-color: #D5B991;
            font-size: 20px;
        }

        h1 {
            font-size: 32px;
            line-height: 160%;
            font-weight: 600;
            /* margin-bottom: 16px; */
        }

        .form-container {
            position: static;
            margin: 0;

            p {
                color: #62737B;
                font-size: 16px;
            }
        }

        .logos {
            display: flex;
            align-items: center;
            gap: 34px;
            width: 100%;
            margin-top: 50px;

            .card-logo {
                padding: 28px 14px;
                border-radius: 20px;
                background-color: #FFF;
                display: flex;
                align-items: center;

                img {
                    height: 65px;
                    object-fit: contain;
                    width: 100%;
                }

                @media (max-width: 768px) {
                    padding: 18px;
                    flex: 1 1 calc(40% - 8px);

                    img {
                        height: 50px;
                    }
                }
            }

            .card-mcmv {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                padding: 28px 14px;
                border-radius: 20px;
                background-color: #62737B;
                min-height: 120px;

                p {
                    color: #FFF;
                    font-size: 16px;
                    font-weight: 700;
                    margin: 0;
                    text-transform: none;
                }

                @media (max-width: 768px) {
                    flex-direction: column;
                    padding: 10px;
                    min-height: auto;
                    flex: 1 1 calc(40% - 8px);

                    img {
                        height: 32px;
                    }

                    p {
                        font-size: 10px;
                    }
                }
            }

            @media (max-width: 576px) {
                gap: 10px;
                justify-content: space-between;
            }
        }
    }

}

.form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 16px;
    height: 100%;
    min-height: fit-content;
    box-shadow: 0px 4px 6px rgba(98, 115, 123, 0.2);
    justify-content: space-evenly;
    margin-top: -100px;
    z-index: 2;
    position: relative;

    h3 {
        color: #faa41a;
        font-size: 30px;
    }

    p {
        color: #62737B;
        font-size: 16px;
    }

    .input {
        position: relative;

        svg {
            position: absolute;
            top: 14px;
            left: 14px;
        }

        label {
            color: #62737B;
        }
    }

    .form-control {
        background-color: transparent;
        color: #62737B;
        border: 1px solid #62737B;
        border-radius: 40px;
        padding: 12px;
        position: relative;

        &[type="text"],
        &[type="mail"],
        &[type="phone"] {
            padding-left: 8%;
        }

        &::placeholder {
            color: #62737B;
        }

        svg path {
            color: #faa41a;
            fill: #faa41a;
        }
    }
}

.swiper-container {
    position: relative;
}

.img-sobre {
    width: 100%;
    border-radius: 30px;
}

/* .swiper-controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 50%;

    .swiper-button-prev {
        left: -50px;
    }

    .swiper-button-next {
        right: -50px;
    }
} */

section.sobre {
    background-color: #faa41a;

    h2,
    h3,
    p,
    span {
        color: #FFF;
    }

    .card {
        align-items: center;
        background-color: #472135;
        padding: 20px 24px;
        border-radius: 10px;
    }

    .card-body {
        display: flex;
        align-items: center;
        color: #F5F5F5;
        gap: 10px;

        p {
            line-height: 120%;
            font-weight: 600;
            font-size: 24px;
            color: #F5F5F5;
        }
    }
}

section.galeria {
    background-color: #FBF5EB;

    .swiper.galeria {

        .swiper-slide {
            /* height: 100%; */
            user-select: none;
            -webkit-user-select: none;
            -ms-user-select: none;

            .card {
                /* height: 100%; */
                border-radius: 10px;
                overflow: hidden;

                &:hover {
                    img {
                        transform: scale(1.05);
                    }
                }
            }

            img {
                width: 100%;
                height: 60svh;
                object-fit: cover;
                transition: 0.4s all ease-in-out;
            }
        }
    }
}

section.ficha {
    h4 {
        color: #faa41a;
        font-size: 20px;
    }

    li {
        color: #62737B;
        font-size: 16px;
        line-height: 160%;
    }

    .numero-box {
        border-radius: 10px;
        background-color: #62737B;
        flex: 1 1 calc(30% - 8px);
        padding: 32px;
        color: #FFF;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: auto;
        gap: .5rem;

        img {
            width: 28px;
            height: auto;
            aspect-ratio: 1 / 1;
        }

        p {
            font-size: 20px;
            margin: 0;
            font-weight: 500;
            color: #fff;
        }
    }
}

section.plantas {
    background-color: #FFF6E8;

    .swiper.plantas {

        .swiper-slide {
            /* height: 100%; */
            user-select: none;
            -webkit-user-select: none;
            -ms-user-select: none;

            .card {
                /* height: 100%; */
                border-radius: 10px;
                overflow: hidden;
                padding: 32px;

                &:hover {
                    img {
                        transform: scale(1.05);
                    }
                }
            }

            img {
                width: 100%;
                height: 58svh;
                object-fit: cover;
                transition: 0.4s all ease-in-out;
            }
        }
    }

    .tour {
        overflow-x: hidden;

        .title {
            background-color: #472135;

            h2 {
                color: #C8AC78;
            }
        }
    }
}

section.obras {
    background-color: #FBF5EB;

    .line {
        position: relative;
        z-index: 0;

        &::after {
            content: '';
            position: absolute;
            display: block;
            width: 100%;
            height: 10px;
            background-color: #D5B991;
            top: calc(50% - 8px);
            z-index: -1;
        }
    }

    .card {
        align-items: center;
        background-color: #472135;
        padding: 22px;
        border-radius: 10px;
        flex: 1 1 auto;
        width: 100%;
    }

    .card-body {
        display: flex;
        align-items: center;
        flex-direction: column;
        color: #F5F5F5;
        gap: 10px;

        p {
            line-height: 120%;
            font-weight: 600;
            font-size: 24px;
            color: #F5F5F5;
        }
    }

    .obras {
        display: flex;
        flex-direction: column;
        gap: 20px;

        img {
            width: 100%;
            object-fit: cover;
            border-radius: 30px;
        }
    }

    .linha-obra {
        display: flex;
        align-items: center;
        gap: 20px;

        p {
            text-wrap-mode: nowrap;
            font-size: 20px;
            font-weight: 600;
            color: #62737B;
        }

        span {
            font-size: 20px;
            font-weight: 600;
            color: #FAA41A;
            min-width: 42px;
            text-align: end;
        }
    }

    .barra {
        width: 100%;
        height: 30px;
        background-color: #E3E3E3;
        border-radius: 40px;
        overflow: hidden;
        position: relative;

        .porcentagem {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 30%;
            background-color: #FAA41A;
            border-radius: 40px;
        }
    }
}