.propaganda {
    padding: 60px 8px 0 8px;

    width: calc(100% - 16px);

    display: flex;
    justify-content: center;
}

.propaganda__slides {
    width: 100%;
    max-width: 900px;

    padding-bottom: 25px;

    color: #005678;

    overflow: hidden;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    display: flex;
}

.propaganda__slide {
    background: linear-gradient(-45deg, #DB6C45 0%, #FFCCB9 100%);

    border-radius: 10px;

    position: relative;

    box-sizing: border-box;
    padding: 25px 0 25px 50px;

    min-width: 100%;
    width: 100%;
    height: 300px;

    flex-shrink: 0;
    scroll-snap-align: start;

    display: flex;
    justify-content: space-between;
}

.propaganda__slide::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";

    height: 300px;
    width: 250px;

    transform: translateX(-50%) rotate(45deg);

    background-color: #ffffff38;
}

.propaganda__slide::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";

    height: 50%;
    width: 50%;

    transform: rotate(180deg);

    background-image: url("../img/docoracao.png");
    background-repeat: no-repeat;
    background-size: 100%;
}

.propaganda__slide-conteudo {
    z-index: 3;

    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.propaganda__slide-conteudo-title {
    text-transform: uppercase;
    font-size: 45px;
}

.propaganda__slide-conteudo-preco {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.propaganda__slide-conteudo-preco p:first-of-type {
    margin-bottom: -10px;
}

.propaganda__slide-conteudo-preco p span {
    font-weight: 900;
    font-size: 45px;

    margin-left: 20px;
}

.propaganda__slide-conteudo-button {
    font-size: 20px;
    font-weight: bold;
    color: white;

    padding: 10px 15px;
    margin-top: auto;

    background-color: #0387BB;

    border: none;
    border-bottom: 3px solid #006188;
    border-right: 3px solid #006188;
    border-radius: 5px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.propaganda__slide-conteudo-button:hover {
    border-bottom: 3px solid #047faf;
    border-right: 3px solid #047faf;

    background-color: #0798d1;
}

.propaganda__slide-conteudo-button img {
    width: 30px;
}

.propaganda__slide-img {
    z-index: 3;
    height: 320px;
    margin-top: -20px;
}

@media screen and (max-width: 662px) {
    .propaganda__slides {
        padding-bottom: 0;
    }

    .propaganda__slide {
        padding: 25px 0 25px 20px;
        height: 225px;
    }

    .propaganda__slide::after {
        height: 40px;
        width: 50%;

        background-size: 100%;
    }

    .propaganda__slide-conteudo-title {
        text-transform: uppercase;
        font-size: 22px;
    }

    .propaganda__slide-conteudo-preco {
        font-size: 18px;
        font-weight: 500;
        text-transform: uppercase;
    }

    .propaganda__slide-conteudo-preco p span {
        font-size: 35px;

        margin-left: 10px;
    }

    .propaganda__slide-conteudo-button {
        font-size: 18px;
        padding: 10px;
        gap: 8px;
        text-align: start;
    }

    .propaganda__slide-conteudo-button img {
        width: 20px;
    }

    .propaganda__slide-img {
        position: absolute;
        right: 0;
        height: 200px;
        z-index: 2;
    }
}