/* Estilo automático para a página: portfolio */
section.portfolio {
    .swiper-slide {
        .card {
            border-radius: 30px;

            .card-thumb {
                overflow: hidden;

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

            .card-info {
                position: absolute;
                right: 0;
                bottom: 0;
                width: 85%;
                background-color: #fff;
                border-radius: 30px 0 30px 0;
                padding: 18px 30px;

                .logo {
                    max-width: 180px;
                    width: 50%;
                    img {
                        width: 100%;
                    }
                }

                .loc {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    p {
                        font-size: 20px;
                        color: #324657;
                        font-weight: 600;
                    }
                }
            }

            .data {
                position: absolute;
                top: 33px;
                left: 33px;
                background-color: #fff;
                padding: 8px 16px;
                border-radius: 20px;

                span {
                    color: #FAA41A;
                    font-weight: 700;
                    font-size: 20px;
                    text-transform: uppercase;
                }
            }
        }
    }
}

section.cta {
    background-color: #FAA41A;
    padding: 53px 0;
    h2, h3, p {
        color: #fff;
    }
    a.cta {
        background-color: #fff;
        color: #FAA41A;
    }
    .gap-40 {
        gap: 40px;
    }
}

footer {
    margin-top: 0 !important;
}