.nossos__produtos {
    color: var(--branco);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em 1.5em;
}

.nossos__produtos-titulo {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.nossos__produtos-texto {
    text-align: justify;
    line-height: normal;
    margin-top: 24px;
    margin-bottom: 32px;
}

.nossos__produtos-texto-negrito {
    font-weight: 700;
}

.nossos__produtos swiper-container {
    width: 90%;
    height: 80%;
    margin-left: auto;
    margin-right: auto;
}

.nossos__produtos swiper-slide {
    text-align: center;
    font-size: 18px;
    height: calc((100% - 30px) / 2) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.card-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    /* gap: 30px; quando acionar o btn */
    gap: 10px;
}


.card {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; quando acionar o btn */
    gap: 20px;
    border-radius: 10px;
    text-align: center;
    width: 283px;
    height:380px;
}

.card-img {
    width: 283px;
    height: 187px;
    margin-bottom: 2em;
}

.card-img img {
    max-width: 100%;
    border-radius: 12px;
}

.card h2 {
    font-size:16px;
    margin: 9px 0;
    line-height: normal;
    font-weight: 700;
}

.card p {
    font-size: 14px;
    padding: auto;
    text-align: justify;
    line-height: normal;
}

.card button {
    background-color: #00796b;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
}

.card button:hover {
    background-color: #004d40;
}
.desktop-carrossel {
    display: none;
}

/* escondendo o btn */
.card button{
    display: none;
    visibility: hidden;
}
@media screen and (min-width:1024px) {
    .mobile-carrossel {
        display: none;
    }
    .desktop-carrossel {
        display: block;
    }

    .nossos__produtos {
        display: flex;
    }

    .nossos__produtos-titulo {
        font-size: 48px;
        margin-bottom: 48px;
    }

    .nossos__produtos-texto {
        width: 80%;
        font-size: 20px;
        line-height: normal;
    }

    .nossos__produtos swiper-container {
        width: 100%;
        height: 100%;
        margin-left: auto;
        margin-right: auto;
    }
   
    .card-container {
        display: flex;
        flex-direction: column;
        width: 90%;
        /* gap: 50px; descomentar qndo insrir o btn */
        gap: 20px;
    }

    .card-container-filho {
        display: flex;
        justify-content: center;
        gap: 50px;
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
    }


    .card {
        display: flex;
        flex-direction: column;
        /* justify-content: space-between; descomentar qndo insrir o btn*/
        border-radius: 10px;
        text-align: center;
        width: 455px;
        height:546px;
    }

    .card-img {
        width: 455px;
        height: 300px;
        margin-bottom: 2em;
    }

    .card-img img {
        max-width: 100%;
        border-radius: 12px;
    }

    .card h2 {
        font-size:24px;
        margin: 9px 0;
        line-height: normal;
        font-weight: 700;
    }

    .card p {
        font-size: 20px;
        padding: auto;
        text-align: justify;
        line-height: normal;
    }

    .card button {
        background-color: #00796b;
        color: white;
        border: none;
        border-radius: 4px;
        padding: 10px 20px;
        cursor: pointer;
        font-size: 1em;
    }

    .card button:hover {
        background-color: #004d40;
    }

}


@media screen and (min-width:1728px) {
    .nossos__produtos {
        padding: 5em;
    }

    .card-container {
        width: 80%;
    }
}