@media only screen and (max-width: 767px) {
    .caixa-sombreada {
        padding: 0;
        box-shadow: none;
    }
    .listagem .listagem-item .acoes-produto-responsiva {
        position: relative;
        text-align: center;
        z-index: 1000;
        display: block !important;
    }
    #listagemProdutos > ul > li > div > ul > li:nth-child(1) > div > div.acoes-produto-responsiva.visible-phone > a > i {
        float: left;
        top: 10px;
        right: 11px;
        font-size: 18px;
    }
    .acoes-produto-responsiva .tag-comprar {
        margin: 0;
        padding: 0 45px;
    }
}
#corpo > div > div.secao-principal > div > div > h1 {
    ;
}
@media (min-width: 800px) {
    .listagem-item .acoes-produto {
        display: contents !important;
    }
}
@media (min-width: 800px) {
    .span12 .bandeiras-produto {
        top: 0;
    }
}

  .ingredientContainer {
            height: 100%;
            width: 100%;
            position: relative;
        }

        .ingredientNavbar {
            display: flex;
            gap: 10px;
            width: 100%;
            max-width: 1160px;
        }

        .hamburger {
            display: none;
            position: relative;
            top: 15px;
            right: 0;
            width: 30px;
            height: 24px;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
            z-index: 1100;
        }

        .hamburger div {
            width: 100%;
            height: 3px;
            background-color: #333;
            transition: all 0.3s ease;
        }

        .hamburger.active div:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.active div:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active div:nth-child(3) {
            transform: translateY(-12px) rotate(-45deg);
        }

        .mobileNavbar {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            max-width: 300px;
            height: 100%;
            background-color: white;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
            display: flex;
            flex-direction: column;
            padding-top: 50px;
            z-index: 1000;
        }

        .mobileNavbar.active {
            transform: translateX(0);
        }

        .ingredientDropdown-button {
            background-color: #ffffff;
            color: black;
            border: none;
            padding: 6px;
            text-align: left;
            width: 140px;
            max-width: 200px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 10px;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .ingredientDropdown-button::after {
            content: url("http://alfred.idkmedia.co/itely/assets/img/chevron.svg");
            margin-left: 6px;
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .ingredientDropdown.open .ingredientDropdown-button::after {
            transform: rotate(180deg);
        }

        .ingredientDropdown.open .ingredientDropdown-menu {
            display: flex;
        }

        .ingredientDropdown-menu {
            display: none;
            flex-direction: column;
            background-color: #ffffff;
            width: 99%;
            max-width: 139px;
            border-radius: 0 0 5px 5px;
            border: 1px solid #ccc;
            border-top: none;
            z-index: 99999;
            position: absolute;
        }

        .ingredientDropdown-menu a {
            padding: 12px;
            text-decoration: none;
            color: #333;
            font-size: 12px;
            display: block;
            transition: background-color 0.3s ease;
        }

        .ingredientDropdown-menu a:hover {
            background-color: #d8d6d6;
        }

        .wrapper {
            padding: 20px 0;
        }

        .wrapperTitle {
            display: flex;
            flex-direction: column;
            margin: 40px 0 32px 0;
        }

        .wrapper h1 {
            font-size: 32px;
            color: #C02829;
            line-height: 130%;
            font-weight: 500;
            margin: 0;
            text-transform: uppercase;
        }

        .wrapper span {
            color: #000000;
            opacity: 0.7;
        }

        .wrapper h2 {
            font-weight: 500;
            text-transform: uppercase;
            font-size: 18px;
            margin-top: 0;
            color: #C02829;
            line-height: 130%;
        }

        .wrapper h2>span {
            color: #000000;
            opacity: 0.5;
        }

        .wrapper p {
            text-transform: uppercase;
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            margin-bottom: 24px;
        }

        .wrapper p strong {
            font-weight: 900;
        }

        .content {
            width: 100%;
        }

        @media (max-width: 1199px) {
            .ingredientNavbar {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .ingredientDropdown {
                width: 100%;
            }

            .ingredientDropdown-button {
                width: 100%;
                border-top: none;
                border-radius: 0px;
                max-width: 100%;
                padding: 12px;
            }   
            .ingredientDropdown-menu {
                position: relative;
                top: 10px;
                max-width: 100%;
                width: 100%;
                border-radius: 0;
            }

            .mobileNavbar .ingredientDropdown {
                display: block;
                margin-bottom: 0px;
            }
        }