/* Estilo automático para a página: empreendimentos */
section.empreendimentos {
    .empreendimento-card {
        .card-thumb {
            border-radius: 16px;
            overflow: hidden;
            width: 100%;
            height: 450px;
            margin-bottom: 16px;

            img.thumbnail {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all 0.5s ease-in-out;
            }

            .overlay {
                position: absolute;
                background: transparent;
                z-index: 99;
                transition: all 0.5s ease-in-out;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                display: flex;
                align-items: center;
                justify-content: center;

                img {
                    width: auto;
                    height: auto;
                    max-width: 350px;
                    opacity: 0;
                    transition: all 0.5s ease-in-out;
                }
            }

            &:hover {
                img.thumbnail {
                    transform: translatex(2%) translateY(2%) scale(1.05);
                }

                .overlay {
                    background: rgb(51, 20, 42, 0.5);
                    opacity: 1;

                    img {
                        opacity: 1;
                    }
                }
            }
        }

        .diferenciais {
            a.cta {
                font-weight: 600;
                padding: 14px 30px;
            }

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

                p {
                    margin: 0;
                }

                .icon-box {
                    padding: 8px;
                    aspect-ratio: 1 / 1;
                    background-color: #F1E7D9;
                    border-radius: 100%;
                    display: flex;
                    width: 35px;
                    height: 35px;
                }
            }
        }

    }
}

section.emp-listagem {
    .card {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);

        img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .card-thumb {
            span {
                color: #FFFCF5;
                position: absolute;
                padding: 8px 22px;
                border-radius: 6px;
                background-color: #472135;
                top: 4%;
                right: 6%;
            }
        }

        .texto {
            h3 {
                font-size: 20px;
                font-weight: 700;
                text-transform: uppercase;
            }

            p {
                color: #5A5A5A;
                font-weight: 500;
            }
        }
        .card-body {
            .dif {
                display: flex;
                gap: 8px;
                align-items: center;
                flex-wrap: nowrap;
                text-wrap-mode: wrap;
            }
        }

        a.cta {
            width: 100%;
            background-color: #FFF;
            border: 1px solid #C8AC78;
            color: #472135;
            text-align: center;
            transition: 0.3s all ease-in-out;

            &:hover {
                background-color: #33142A;
                border: 1px solid #33142A;
                color: #FFFCF5;
            }
        }
    }
}