.fs-10 {
    font-size: 10px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.mg-auto {
    margin: auto;
}

.wt-70 {
    width: 70%;
}

.flex {
    display: flex;
}

.ai-end {
    align-items: end;
}

/* PÁGINA DE PRODUTOS */
.main-banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 70px;
}

.main-banner .img-banner {
    width: 100%;
}

.main-banner .img-banner img {
    width: 100%;
    transition: ease-in-out 1s;
}

.main-banner .text-block {
    z-index: 2;
    position: absolute;
    width: 100%;
    max-width: 1200px;
    bottom: 30px;
    left: 0px;
    margin: auto;
    padding: 0px 40px;
}

.main-banner .text-block h1 {
    font-size: 24px;
    font-family: 'Open sans';
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    transition: ease-in-out 0.8s;
}

.main-banner .text-block p {
    font-size: var(text) !important;
    color: #fff;
}

.main-banner .text-block .purchase-btn {
    width: 90px;
    height: 32px;
    background-color: var(--orange);
    color: #fff;
    font-size: var(--text) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.mobile {
    display: none;
}

.container {
    padding: 20px 40px;
    min-height: auto;
    margin-bottom: 20px;
}

.grid {
    display: flex;
    justify-content: space-between;
}

.grid.cups {
    gap: 20px;
}

.cups .card {
    /* flex: 1; */
    min-width: 305px;
    text-align: center;
    border-radius: 20px;
    transition: 0.4s ease-in-out;
}

.description {
    color: #000;
    margin-bottom: 10px;
    margin-top: -20px;
    padding-top: 35px;
    padding-left: 20px;
    padding-bottom: 20px;
    position: relative;
    transition: 0.4s ease-in-out;
}

.card .description::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: 0.3s ease-in-out;
    border-radius: 0 0 20px 20px;
}

.card:hover .description {
    color: #fff;
}

.card:hover .description::before {
    height: 100%;
    background-color: #6A8CF4;
}

/* Parte cinza com texto */
.cups .card-img {
    height: 300px;
    border-radius: 20px;
    color: white;
    font-size: 34px;
    line-height: 1.2em;
    font-weight: normal;
    text-decoration: underline;
    text-align: left;
    background-color: #f1f1f1;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 20px;
}

.cups .card .card-text {
    color: black;
    display: block;
    width: 100%;
    text-align: start;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    transition: 0.4s ease-in-out;
    letter-spacing: 0.075em;
}

.cups .card:hover .card-text {
    color: #fff;
}

.infinite-ctn {
    background-color: var(--mid-green);
}

.container.infos {
    display: flex;
    gap: 40px;
    padding: 40px 40px;
    min-height: auto;
}

.container.infos .banner {
    background: #525252;
    border-radius: 20px;
    width: 640px;
    height: 461px;
}

.container.infos .banner {
    background: #525252;
    width: 640px;
    display: flex;
}

.container.infos .content-container {
    flex: 1;
}

.grid.steps {
    gap: 20px;
    cursor: unset !important;
}

.steps .card {
    width: 305px;
    height: 270px;
    text-align: center;
    border-radius: 20px;
    transition: 0.4s ease-in-out;
}

.steps .card:hover {
    background-color: #9193F8;
}

/* Parte cinza com texto */

.steps .step {
    width: 100%;
}


.steps .card-img {
    height: 150px;
    width: 100%;
    border-radius: 20px;
    color: white;
    font-size: 34px;
    line-height: 1.2em;
    font-weight: normal;
    text-decoration: underline;
    text-align: left;
}

.steps .card .card-text {
    color: black;
    display: block;
    width: 100%;
    text-align: start;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    transition: 0.4s ease-in-out;
}

.steps .card:hover .card-text {
    color: #fff;
}

.steps .card .card-text p {
    color: white;
    font-size: 14px;
    text-transform: none;
    line-height: 18px;
    font-weight: 300;
    margin-top: 10px;
}

.scrollable {
    user-select: none;
    cursor: grab;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media only screen and (max-width: 1050px) {
    .container.infos {
        flex-direction: column-reverse;
    }

    .container.infos .banner {
        width: 100%;
        height: auto;
    }

    .container.infos .btn {
        display: none;
    }
}

@media only screen and (max-width: 750px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .main-banner .text-block {
        padding: 0px 20px;
    }

    .container {
        padding: 40px 20px !important;
    }

    .container.ctn-steps {
        padding: 40px 20px;
        padding-right: 0px;
    }

    .steps .card {
        background-color: #9193F8;
    }

    .steps .card .card-text {
        color: white;
    }

    .grid.steps {
        padding-right: 20px;
    }

    .mobile-no-mg {
        margin-bottom: 0px !important;
    }

    .card {
        background-color: #6A8CF4;
    }

    .cups .card .card-text {
        color: white;
    }
}