/* Estilo automático para a página: prospec */
.swiper {
    padding: 10px !important;
    user-select: none;
}

section.sobre {

    .card-atividade {
        width: 100%;
        display: inline-flex;
        align-items: center;
        padding: 20px;
        gap: 10px;
        border: 1px solid #E3E3E3;
        border-radius: 10px;
        box-shadow: 5px 5px 8px 0px #2C2C2C26;

        p {
            margin: 0;
        }
    }
}

.swiper.campanhas {
    width: calc(100% - 30px);
    margin: 0 auto;
}

.campanha-texto {
    color: var(--cinza-texto, #5A5A5A);
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.campanha-title {
    color: var(--cinza-texto, #5A5A5A);
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.campanha-body {
    padding: 27px;
    text-align: center;
}

.bloco-campanha {
    border-radius: 0 0 10px 10px;
    border: 1px solid #E3E3E3;
    background: #FFF;
    box-shadow: 5px 5px 8px 0 rgba(44, 44, 44, 0.15);
    overflow: hidden;
}

.swiper-campanhas-nav {
    position: absolute;
    top: calc(50% - 16px);
    width: calc(100% + 80px);
    left: -40px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;

    @media (max-width: 992px) {
        width: 100%;
        left: 0;
    }

    .swiper-campanha-prev,
    .swiper-campanha-next {
        pointer-events: auto;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        line-height: 0;
        transition: opacity 0.2s;

        &.swiper-button-disabled {
            opacity: 0.3;
            cursor: default;
            pointer-events: none;
        }
    }
}

.swiper-cards-container {
    position: relative;

    @media (min-width: 992px) {
        .swiper-cards-prev {
            display: none;
        }

        &.cards-nav-left {
            .swiper-cards-prev {
                display: block;
            }
            .swiper-cards-next {
                display: none;
            }
        }

        &.cards-nav-right-prev {
            .swiper-cards-next {
                display: block;
            }
            .swiper-cards-nav {
                justify-content: flex-end;
            }
        }
    }
}

.swiper-cards-nav {
    position: absolute;
    top: calc(50% - 16px);
    width: calc(100% + 80px);
    left: -40px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;

    @media (max-width: 992px) {
        width: 100%;
        left: 0;
    }

    .swiper-cards-prev,
    .swiper-cards-next {
        pointer-events: auto;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        line-height: 0;
        transition: opacity 0.2s;

        &.swiper-button-disabled {
            opacity: 0.3;
            cursor: default;
            pointer-events: none;
        }
    }
}


.bloco-campanha img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

section.atividades {
    background-color: #F5F5F5;
    padding: 65px 0;

    .section-title {
        margin-bottom: 40px;
    }

    h2.title {
        border: none;
    }

    .card-atividade {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        gap: 10px;
        background-color: #FFFFFF;
        border: 1px solid #E3E3E3;
        border-radius: 10px;
        box-shadow: 5px 5px 8px 0px #2C2C2C26;

        h3 {
            color: #5a5a5a;
            font-weight: 500;
            font-size: 18px;
            line-height: 100%;
        }

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

.pagination-campanhas {
    position: absolute;
    margin-bottom: -30px;
}

@media screen and (max-width: 768px) {
    .swiper-campanha-next, .swiper-campanha-prev {
        display: none !important;
    }
}

section.programas {
    padding: 65px 0;
    background-color: #F5F5F5;
    .section-title {
        margin-bottom: 40px;
    }

    h2.title {
        border: none;
    }

    .destaque-wrapper {
        display: flex;
        gap: 32px;
    }

    .destaque {
        img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .body {
            display: inline-flex;
            justify-content: space-between;
            width: 100%;
            margin-top: 20px;

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

            a {
                color: #E54344;
                font-weight: 500;
                line-height: 160%;
                font-size: 18px;
            }
        }
    }
}