/***************** Style *****************/
.mobile {
    display: none;
}

.personalizacao-online {
    margin-top: 70px;
}

hr {
    border-bottom: 1px solid;
}

.banner {
    width: 100%;
    max-height: 320px;
    background-color: #525252;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.banner .img-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.banner .img-banner {
    width: 100%;
    display: flex;
    position: relative;
}

.banner .img-banner img {
    width: 100%;
    transition: ease-in-out 1s;
    z-index: 1;
}

.banner .text-block {
    z-index: 2;
    position: absolute;
    width: 100%;
    max-width: 1200px;
    bottom: 30px;
    left: 0px;
    margin: auto;
    padding: 0px 40px;
}

.mobile {
    display: none;
}

.container {
    padding: 40px;
    min-height: auto;
}

.grid {
    display: flex;
    flex-flow: row wrap;
    gap: 20px;
}

.scrollable {
    user-select: none;
    cursor: grab;
    overflow-x: auto;
    scroll-behavior: smooth;
    display: flex;
    gap: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollable::-webkit-scrollbar {
    display: none;
}

.grid .cups .card {
    cursor: pointer;
}

.cups .card {
    flex: 0 0 auto;
    width: 255px;
    cursor: pointer;
}

.cups .card-img {
    background: white;
    height: 180px;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    color: white;
    font-size: 34px;
    line-height: 1.2em;
    font-weight: normal;
    text-decoration: underline;
    text-align: left;
    margin-bottom: 5px;
    border: 1px solid #0000003b;
}

/* .btn {
    margin-top: 10px;
    background: white;
    border: 1.5px solid #707070;
    border-radius: 30px;
    width: 183px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 0.5px;
    transition: background 0.2s;
} */

.description {
    color: #000;
    margin-bottom: 10px;
    margin-top: -20px;
    padding-top: 30px;
    padding-left: 20px;
    padding-bottom: 10px;
    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;
}

.container.promocao .visualizer {
    width: 100%;
    border-radius: 20px;
    height: 200px;
    background: #525252;
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 15px;
}


@media only screen and (max-width: 1050px) {
    .container.cups {
        padding: 20px;
        padding-right: 0px;
    }

    .header-slider {
        padding-right: 20px;
    }

    .container.cups.single-theme {
        padding-right: 20px;
    }

    .container.cups.single-theme .card {
        width: 100%;
        max-width: 390px;
    }
}

@media only screen and (max-width: 750px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .banner .text-block {
        bottom: 20px;
        padding: 0px 20px;
    }
}