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

    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: 100px 0;
        /* background-color: #2C267B; */
        z-index: 2;
        /* pointer-events: none; */

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

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

        a {
            pointer-events: auto;
        }

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

        h1 {
            font-size: 46px;
            line-height: 60px;
            font-weight: 500;
            margin-bottom: 16px;

            span {
                color: #D5B991;
            }
        }
    }

    /* &::after {
        content: '';
        position: absolute;
        width: 50%;
        height: 100%;
        left: 0;
        top: 0;
        background: #2C267B;
        background: linear-gradient(135deg, rgba(44, 38, 123, 1) 0%, rgba(47, 43, 96, 1) 100%);
        z-index: 1;
        clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
    } */

    .form-container {
        background-color: #472135;
        padding: 32px 24px;
        border-radius: 16px;
        height: 100%;

        h3 {
            color: #C8AC78;
        }

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

        .input {
            position: relative;

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

        .form-control {
            background-color: transparent;
            color: #F5F5F5;
            border: 1px solid #C8AC78;
            padding: 12px;
            position: relative;

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

            &::placeholder {
                color: #F5F5F5;
            }
        }
    }
}

.swiper-container {
    position: relative;
}

.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.diferenciais {
    .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%;

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

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

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

section.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;
        }
    }
}