.titlePrecos {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: 'PT Sans Narrow', sans-serif;
    color: #000;
    margin: 0px;
}

.itemqtduser {
    color: #02808c !important;
}

.containerPrecosItens {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;

}

.containerPrecosItens>div {
    width: 20%;
    /* background-color: #f7f7f7; */
}

.preco_acao {
    display: flex;
    justify-content: center;
    padding: 30px 0px;
    padding-bottom: 42px;
}

.preco_acao>button {
    background-color: #02808c;
    border: none;
    padding: 10px;
    border-radius: 3px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid #000;
}

.preco_acao>button:hover {
    transform: scale(1.1);
    transition-duration: 1s;
}

.preco_head {
    background-color: #02808c;
    padding: 15px 5px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #000;
}

.preco_head h3 {
    font-size: 36px;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Abril Fatface', cursive;
}

.preco_head span {
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    text-align: center;
}

.preco_footer {
    background-color: #02808c;
    padding: 15px 5px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #000;
    /* border-top: none; */
}

.preco_footer h3 {
    font-size: 36px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Abril Fatface', cursive;
}

.preco_footer span {
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    text-align: center;
}

.preco_preco {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 2px solid #000;
    border-right: 2px solid #000;
    padding: 20px 0px;
    overflow: hidden;
    padding-top: 5px;
}

.preco_preco h2 {
    font-family: 'Abril Fatface', cursive;
    letter-spacing: 4px;
    color: #000;
    font-weight: 700;
    font-size: 55px;
    margin: 0px;
    position: relative;
}

.preco_preco h2>sub {
    font-family: 'Abril Fatface', cursive;
    letter-spacing: 2px;
    font-size: 20px;
    position: absolute;

    top: 25px;
    left: -30px;
}

.preco_preco>sub {
    font-family: 'Abril Fatface', cursive;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    /* margin-top: 5px; */
    font-weight: 600;
    align-self: end;
    margin-right: 10px;
}

.preco_itens {
    border-left: 2px solid #000;
    border-right: 2px solid #000;
    /* border-bottom: 2px solid #000; */
    /* border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px; */
}

.preco_itens ul {
    margin: 0px;
    padding: 0px;
}

.preco_itens ul li {
    list-style: none;
    padding: 5px;
    font-weight: 700;
    color: #000;

}

.preco_itens ul li i {
    font-size: 11pt;
    vertical-align: middle;
    width: 20px;
    color: #000;
    font-weight: 600;

}

.preco_itens ul>li:nth-of-type(odd) {
    background-color: #f3f3f3;
    color: #000;
}

.containerListaComplementar {
    font-size: 18px;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #000;
    margin-top: 50px;
    margin: 50px 0px;
}

.containerListaComplementar>h2 {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
}

.containerListaComplementar ul {
    margin: 0px;
    padding: 0px;
}

.containerListaComplementar ul li {
    list-style: none;
    padding: 5px;
    font-weight: 600;
    color: #000;
}

.containerListaComplementar ul>li:nth-of-type(odd) {
    background-color: #02808c;
    color: #fff;
}


.arrow-pulse-down {
    position: relative;
}

.arrow-pulse-down:after {
    content: "🡣";
    color: #000;
    /* Here you can change the style of the arrow */
    position: absolute;
    width: 35px;
    height: 18px;
    margin: 0 auto;
    left: 0;
    right: 0;
    font-size: 35px;
    animation: arrow-pulse-down 900ms linear infinite;
}

@keyframes arrow-pulse-down {
    0% {
        bottom: 40px;
        opacity: 0;
    }

    25% {
        opacity: .25;
    }

    50% {
        opacity: .5;
    }

    75% {
        opacity: .75;
    }

    100% {
        bottom: 20px;
        opacity: 1;
    }
}