#copo-personalidado {
    margin-top: 95px;
}

.container {
    padding: 0 40px;
    min-height: auto;
}

.container.showcase {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

#showcase {
    min-width: 475px;
    max-width: 475px;
}

#showcase .fixed-ctn {
    min-width: 475px;
    max-width: 475px;
    display: flex;
    gap: 10px;
    border-radius: 20px;
    position: relative;
}

#showcase .fixed-ctn .loader-box {
    border-radius: 20px;
}

#showcase .fixed-ctn .vertical-products {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#showcase .fixed-ctn .vertical-products .product {
    background-color: #E6E6E6;
    width: 62px;
    height: 65px;
    border-radius: 20px;
    padding: 5px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    transition: 0.3s ease-in-out;
}

#showcase .fixed-ctn .vertical-products .product:hover {
    transform: scale(1.1);
}

#showcase .fixed-ctn .vertical-products .product.active {
    border: 2px solid var(--green);
}

#showcase .fixed-ctn .vertical-products .product img {
    height: 100%;
}

#showcase .fixed-ctn .highlight-product {
    border-radius: 20px;
    flex: 1;
    background-color: #E6E6E6;
    height: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#infos-produto {
    max-width: 750px;
    width: 100%;
}

.expanded-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #DAFE83;
}

.expanded-container .content {
    width: 100%;
    max-width: 1450px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
}

.expanded-container .content .complement {
    width: 240px;
}

.expanded-container .content .complement .img-template {
    width: 100%;
    height: 300px;
    margin-bottom: 5px;
}

.expanded-container .content .complement .name {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
}

.container.measure-cups {
    padding: 40px;
}

.medidas-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 20px 0;
    min-height: auto;
}

.medida a {
    box-shadow: 3px 5px 19px rgb(0 0 0 / 15%);
    background: transparent;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 14px;
    color: white;
    font-size: 34px;
    line-height: 1.2em;
    font-weight: normal;
    text-decoration: underline;
    text-align: left;
    cursor: pointer;
    flex: 1;
    transition: 0.3s ease-in-out;
}

.medida a img {
    opacity: 1;
    transition: 0.3s ease-out;
}

.medida[data-medida="200ml"]:hover a img {
    opacity: 0;
}

.medida[data-medida="300ml"]:hover a img {
    opacity: 0;
}

.medida[data-medida="400ml"]:hover a img {
    opacity: 0;
}

.medida[data-medida="550ml"]:hover a img {
    opacity: 0;
}

.medida[data-medida="200ml"]:hover a::before {
    content: "";
    width: 53px;
    height: 74px;
    position: absolute;
    background-image: url('../../images/paginas/home/200ml-art.png');
}

.medida[data-medida="300ml"]:hover a::before {
    content: "";
    width: 56px;
    height: 93px;
    position: absolute;
    background-image: url('../../images/paginas/home/300ml-art.png');
}

.medida[data-medida="400ml"]:hover a::before {
    content: "";
    width: 56px;
    height: 108px;
    position: absolute;
    background-image: url('../../images/paginas/home/400ml-art.png');
}

.medida[data-medida="550ml"]:hover a::before {
    content: "";
    width: 66px;
    height: 122px;
    position: absolute;
    background-image: url('../../images/paginas/home/550ml-art.png');
}

.medidas-content .measure-button {
    text-align: center;
    margin-top: 10px;
}

.medidas-content .measure-button a {
    display: block;
    width: 79px;
    height: 35px;
    font-weight: bold;
    letter-spacing: 0.089em;
    font-size: 14px;
    color: var(--green);
    line-height: 16px;
    transition: 0.3s ease-in-out;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.ctn-medida:hover .measure-button a,
.medidas-content .measure-button:hover a {
    background-color: #E8EDEC;
}

.mobile {
    display: none;
}

@media only screen and (max-width: 1100px) {
    .expanded-container .content {
        padding: 20px;
    }

    .scrollable {
        user-select: none;
        cursor: grab;
        overflow-x: auto;
        scroll-behavior: smooth;
        display: flex;
        gap: 20px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

@media only screen and (max-width: 1000px) {
    .container {
        padding: 0 20px;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    #showcase,
    #showcase .fixed-ctn {
        min-width: 100%;
        max-width: 100%;
    }

    .container.showcase {
        flex-direction: column;
    }

    .medida[data-medida="200ml"]:hover a::before,
    .medida[data-medida="300ml"]:hover a::before,
    .medida[data-medida="400ml"]:hover a::before,
    .medida[data-medida="550ml"]:hover a::before {
        display: none;
    }

    .medida[data-medida="200ml"] a img,
    .medida[data-medida="300ml"] a img,
    .medida[data-medida="400ml"] a img,
    .medida[data-medida="550ml"] a img {
        opacity: 1 !important;
    }
}

@media only screen and (max-width: 700px) {
    .container.measure-cups {
        padding-right: 0px !important;
    }
}

@media only screen and (max-width: 600px) {
    .container.measure-cups {
        padding: 20px;
        padding-top: 40px;
        padding-right: 0px;
    }
}

@media only screen and (max-width: 450px) {
    #showcase .fixed-ctn {
        flex-direction: column-reverse;
    }

    #showcase .fixed-ctn .vertical-products {
        flex-direction: unset;
    }

    #showcase .fixed-ctn .highlight-product {
        padding: 10%;
    }

    #showcase .fixed-ctn .highlight-product img {
        width: 80%;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }
}