.cards {
    max-width: 1400px;
    margin: auto;
    padding: 20px;
    position: relative;
    bottom: 5rem;
}

.cards .bloco {
    width: 100%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 5px #0b5fff;
}

.bloco i {
    font-size: 3rem;
    display: flex;
    justify-content: center;
}

.bloco h3 {
    margin-top: 20px;
    text-align: center;
}

.bloco .button-bloco {
    display: flex;
    justify-content: center;
    background-color: #0b5fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 80px;
    width: 100%;
    border-radius: 5px;
}

.button-bloco:hover {
    background-color: rgba(0, 0, 60, 0.838);
}

.carousel {
    display: none;
}

.cards-desktop {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 968px) {
    .cards {
        max-width: 1200px;
        margin: auto;
        padding: 20px;
        position: relative;
        bottom: 0rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .cards-desktop {
        display: none;
    }

    .cards .bloco {
        width: 100%;
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        border: 2px solid #0b5fff;
        box-shadow: none;
    }

    .carousel {
        position: relative;
        width: 100%;
        display: block;
    }

    .carousel-track-container {
        overflow: hidden;
        width: 100%;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.3s ease-in-out;
        list-style: none;
    }

    .carousel-slide {
        min-width: 100%;
        box-sizing: border-box;
    }

    .carousel-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
    }

    .carousel-button {
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
    }
}