.content-banner {
    top: 27%;
    left: 6%;
    z-index: 2;
}

.card-solucoes {
    position: relative;
    overflow: hidden;
    width: 257px;
    background-color: #F8F8F8;
    padding: 16px 20px;
    cursor: pointer;

    transition: background-color 0.3s ease;
}

.card-solucoes::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    /* começa fora do card */
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    transform: skewX(-25deg);
}

.card-solucoes:hover {
    background-color: #00E4FF;
}

.card-solucoes:hover::before {
    animation: faixaPassando 0.8s linear forwards;
}

@keyframes faixaPassando {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}


.card-medalha {
    background-color: #FFF;
    padding: 18px 18px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);

    h3{
        font-size: 15px;
    }
}

.row-cards {
    left: 2%;
    bottom: 0%;
}

.card-numeros {
    border-radius: 40px;
    border: 5px solid #E7E7E8;
    height: 400px;
    max-width: 440px;
}

.circulo-central {
    border-radius: 500px;
    border: 17px solid #E7E7E8;
    background-color: #FFF;
    top: -27px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    padding: 79px 0px;
    box-shadow: 45px 65px 5px rgba(0, 0, 0, 0.15);
}

.circulo-central-2 {
    border-radius: 500px;
    border: 17px solid #E7E7E8;
    background-color: #FFF;
    width: 337px;
    height: 337px;
    padding: 79px 0px;
}

.pizza-central-1 {
    left: 25%;
    bottom: -290px;
}

.pizza-central-2 {
    left: 51%;
    bottom: -290px;
}

.pizza-central-3 {
    left: 25%;
    bottom: 30px;
}

.pizza-central-4 {
    left: 51%;
    bottom: 30px;
}

.text-cards-circle {
    max-width: 200px;
}

.cards-medalha {
    min-height: 266px;
}

@media (max-width: 1399px) {
    .card-numeros.left {
        margin-right: 0px !important;
    }

    .card-numeros.right {
        margin-left: 0px !important;
    }

    .pizza-central-1 {
        left: 22%;
        bottom: -290px;
    }

    .pizza-central-2 {
        left: 51%;
        bottom: -290px;
    }

    .pizza-central-3 {
        left: 22%;
        bottom: 30px;
    }

    .pizza-central-4 {
        left: 51%;
        bottom: 30px;
    }
}

@media (max-width: 1199px) {
    .card-numeros.left {
        margin-left: 0px !important;
    }

    .card-numeros.right {
        margin-right: 0px !important;
    }

    .pizza-central-1 {
        left: 17%;
        bottom: -290px;
    }

    .pizza-central-2 {
        left: 51%;
        bottom: -290px;
    }

    .pizza-central-3 {
        left: 17%;
        bottom: 30px;
    }

    .pizza-central-4 {
        left: 51%;
        bottom: 30px;
    }

    .card-numeros {
        max-width: 390px;
    }
}

@media (max-width: 1399px) {
    .cards-medalha {
        min-height: 326px;
    }
}

@media (max-width: 1300px) {
    .content-banner {
        top: 15%;
    }

    .title-banner {
        margin: 0;
    }
}

@media (max-width: 1199px) {
    .cards-medalha {
        min-height: 396px;
    }
}

@media (max-width: 991px) {
    .cards-medalha {
        min-height: 556px;
    }
}

@media (max-width: 767px) {
    .cards-medalha {
        min-height: 650px;
    }

    ul {
        list-style: none;
    }

    .row-selos {
        left: 3.5%;
    }

    .text-cards-circle {
        max-width: 100% !important;
    }

    .card-medalha {
        width: 370px;
    }

    .container-medalha {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 886px) {
    .content-banner {
        left: 2%;
    }

    .banner {
        height: 320px;
    }

    .container-pizzas {
        display: none;
    }
}

@media (max-width: 450px) {
    .content-banner {
        left: 0;
        top: 20%;
    }

    .cards-medalha {
        min-height: 1290px;
    }

    .card-medalha {
        width: 320px;
    }
}