<style>
header[data-edit="cabecalhoColor"] { 
    display: none !important; 
}

.glider-slide {
    min-width: 175px !important;
}

@media (max-width: 1140px) { 
  .glider-slide {
    min-width: 130px !important;
   }
}

@media (max-width: 850px) { 
  .glider-slide {
    min-width: 116px !important;
   }
}

.js-carousel--simple { 
    display: table; 
    align-items: center; 
    height: 100px; 
}

.glider-track {
    transform: translateZ(0);
    width: 100% !important;
    margin: 0px;
    padding: 0px;
    display: flex;
    z-index: 1;
}

.c-carousel__slide {
    padding: 0 !important;
}

.product-card.animate .image_overlay { 
    opacity: 0.4; 
    transition: all 200ms ease-out; 
}

.product-description { 
    font-weight: 400; 
    display: flex; 
    flex-direction: column; 
    width: 100%; 
    font-size: 16px; 
}

#carouselMontink.carousel { 
    height: auto !important; 
    z-index: -1 !important; 
    margin-top: -157px; 
}

[data-loja]>header>span:nth-child(2) form input { 
    flex: 1; 
    border: 0; 
    background: #fff; 
    font-weight: 500; 
    font-size: 1.1rem; 
    line-height: 1.5em; 
    color: #000; 
    padding: 20px 30px; 
    border-radius: 0; 
    outline: none; 
    transition: font-size 0.3s, transform 0.3s; 
    font-style: italic; 
}

[data-loja]>header>span:nth-child(2) button { 
    background: #C05116 !important; 
    border-radius: 0; 
    padding: 20px; 
}

[data-loja]>header>span:nth-child(2) { 
    width: 50% !important; 
}

@media (max-width: 600px) { 
    [data-loja]>header>span:nth-child(2) { 
        width: 100% !important; 
    } 
}

body {
    background-image: url('https://i.ibb.co/0D5MFXQ/bg-body.jpg');
    background-repeat: repeat; 
    color: #FFF !important;
}

body, button, input, h1, h2, h3, h4, h5, h6, small, strong {
    font-family: 'Rokkitt', serif !important;
    color: white;
}

.cabecalho-principal { 
    width: 100%; 
    height: 156px; 
    background-color: rgba(0, 0, 0, 0.7); 
    border-bottom: 2px solid #990000; 
    position: relative; 
    top: 0; 
    left: 0; 
    z-index: 990; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 20px; 
    transition: top 0.3s; 
}

.logo-container { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 0 45px; 
    margin-top: -10px; 
}

.link-logo { 
    display: block; 
}

.logo { 
    width: 108px; 
    height: 108px; 
    transition: transform 0.1s; 
}

.link-logo:hover .logo { 
    animation: tremer 0.3s; 
}

.icones-esquerda { 
    display: flex; 
    align-items: center; 
    flex-shrink: 0; 
}

.icones-direita { 
    display: flex; 
    align-items: center; 
    flex-shrink: 0; 
}

.menu-esquerda, .menu-direita { 
    display: flex; 
    align-items: center; 
    flex: 1; 
}

.menu-esquerda { 
    justify-content: flex-end; 
}

.menu-direita { 
    justify-content: flex-start; 
}

.menu-item { 
    font-family: 'Rokkitt', serif; 
    font-size: 16px; 
    font-weight: bold; 
    color: #fff; 
    margin-right: 55px; 
}

.menu-item { 
    transition: opacity 0.3s ease; 
}

.menu-item:last-child { 
    margin-right: 0; 
}

.menu-item:hover { 
    opacity: 0.5; 
}

.icone-home, .icone-menu, .icone-lupa, .icone-carrinho { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-right: 12px; 
}

.icone-home img, 
.icone-menu img, 
.icone-lupa img, 
.icone-carrinho img { 
    transform: scale(0.8); 
    transition: opacity 0.3s ease; 
}

.icone-home a:hover img, 
.icone-menu a:hover img, 
.icone-lupa a:hover img, 
.icone-carrinho a:hover img { 
    opacity: 0.5; 
}

.icone-home img { 
    width: 19px; 
    height: 18px; 
}

.icone-menu img { 
    width: 19px; 
    height: 16px; 
}

/* Estilos para o modo desktop */
@media (min-width: 1024px) {
    .icone-menu {
        opacity: 0.5;
        pointer-events: none; /* Desativa interações */
        cursor: default; /* Remove o dedinho ao passar o mouse */
    }

    .icone-menu a:hover img {
        opacity: 0.5; /* Remove o efeito de hover */
    }
}

/* Estilos para o modo mobile */
@media (max-width: 1023px) {
    .icone-menu {
        opacity: 1; /* Ativa o ícone do menu */
        pointer-events: auto; /* Permite interações */
        cursor: pointer; /* Mantém o dedinho ao passar o mouse */
    }
}


.icone-lupa img { 
    width: 18px; 
    height: 20px; 
}

.icone-carrinho img { 
    width: 26px; 
    height: 22px; 
}

@keyframes tremer { 
    0% { transform: translate(1px, 1px) rotate(0deg); } 
    10% { transform: translate(-1px, -2px) rotate(-1deg); } 
    20% { transform: translate(-3px, 0px) rotate(1deg); } 
    30% { transform: translate(3px, 2px) rotate(0deg); } 
    40% { transform: translate(1px, -1px) rotate(1deg); } 
    50% { transform: translate(-1px, 2px) rotate(-1deg); } 
    60% { transform: translate(-3px, 1px) rotate(0deg); } 
    70% { transform: translate(3px, 1px) rotate(-1deg); } 
    80% { transform: translate(-1px, -1px) rotate(1deg); } 
    90% { transform: translate(1px, 2px) rotate(0deg); } 
    100% { transform: translate(1px, -2px) rotate(-1deg); } 
}

@keyframes aparecer { 
    from { 
        opacity: 0; 
    } 
    to { 
        opacity: 1; 
    } 
}

.enfeite-cabecalho { 
    position: absolute; 
    top: 143px; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 991; 
    transition: opacity 0.5s ease-in-out; 
}

@media (max-width: 1400px) { 
    .menu-item { 
        margin-right: 30px; 
    } 
    .menu-item:last-child { 
        margin-right: 0; 
    } 
}

@media (max-width: 1200px) { 
    .menu-item { 
        margin-right: 20px; 
    } 
    .menu-item:last-child { 
        margin-right: 0; 
    } 
}

@media (max-width: 1050px) { 
    .menu-item { 
        display: none; 
    } 
    .enfeite-cabecalho { 
        transform: translateX(-50%); 
        width: 80%; 
    } 
}

.cabecalho-principal-estreito { 
    width: 100%; 
    height: 57px; 
    background-color: rgba(0, 0, 0, 0.7); 
    border-bottom: 2px solid #990000; 
    position: fixed; 
    top: 0; 
    left: 0; 
    z-index: 993; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 20px; 
    transition: top 0.3s, transform 0.3s; 
    transform: translateY(-100%); 
}

.cabecalho-principal-estreito.mostrar { 
    transform: translateY(0); 
}

.cabecalho-principal-estreito .logo { 
    width: 108px; 
    height: 63px; 
    position: relative; 
    top: 14px; 
}

.enfeite-cabecalho-estreito { 
    display: none; 
}

.product-card { 
    overflow: hidden; 
    transform-style: preserve-3d; 
    transition: 100ms ease-out; 
    background: rgba(0, 0, 0, 0.40); 
    border: 2px #990000 solid; 
}

.product-card .card-img-top, 
.product-card .image_overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    border-radius: 0; 
}

.content-wrapper { 
    margin-top: 0rem !important; 
    padding-top: 52px !important; 
    background: rgba(0, 0, 0, 0.40); 
}

.product-page__price--final, 
.product-page__price--variant { 
    color: #fff; 
    font-size: 30px; 
    font-weight: 700; 
    line-height: 1.2; 
    margin-bottom: 10px; 
}

.img-container { 
    position: relative; 
    width: 100%; 
    padding-top: 118%; 
    overflow: hidden; 
    top: -1px; 
}

.carousel ul { 
    width: 100%; 
    height: 100%; 
    margin-bottom: 0px; 
    padding-left: 0; 
    background: transparent !important; 
}

.product-page__price--final, 
.product-page__price--variant { 
    font-family: 'Rokkitt', serif; 
    color: #990000; 
    font-size: 60px; 
    font-weight: 700; 
    line-height: 1.0; 
    margin-bottom: 0; 
}

.page-header { 
    padding: 0; 
}

.page-header h1.custom-style { 
    font-family: 'Rokkitt', serif !important; 
    font-size: 30px !important; 
    font-weight: bold !important; 
    letter-spacing: normal !important; 
    line-height: 1.0; 
    margin-bottom: 20px; 
}

.breadcrumbs { 
    display: none; 
}

.product-page__price--installment { 
    color: #990000; 
    font-size: 15px; 
    font-weight: 400; 
    margin-bottom: 10px; 
}

.btn-line, .btn-primary, .form-select, .form-quantity, 
.form-control, .btn-default, .label, .swiper-pagination-fraction { 
    border-radius: 0px; 
    font-size: 15px;
}

.form-quantity .btn { 
    flex: 0 0 30px; 
    height: 30px; 
    border-radius: 0%; 
    background-color: #990000; 
    padding: 0; 
    font-size: 15px !important;
}

#botaoComprar { 
    background-color: #990000 !important; 
    font-family: 'Rokkitt', serif !important; 
    font-size: 20px !important; 
    font-weight: bold !important; 
    letter-spacing: normal !important; 
    padding-top: 10px; 
}

input.campoCep { 
    background-color: #ffffff;
    border: 1px solid #e4e4e4;
    display: inline-block;
    padding: 9px 15px;
    border-radius: 0 !important;
    width: 50%;
    float: left;
    border-right: 0;
    font-size: 15px !important;
    color: black !important;
}

button.btCalc { 
    float: left;
    border-radius: 0;
    height: 42px;
    width: 50%;
    background-color: #ffffff9e;
    font-size: 15px !important;
}

@media (max-width: 768px) { 
    button.btCalc { 
        height: 43px;
    } 
}

a.naoSeiCep { 
    display: block;
    margin: 5px 0px 30px 16px;
    text-decoration: underline;
    font-size: 12px;
    float: left;
    width: 100%;
    color: #fff;
}

div#retorno .rowFrete { 
    color: #3f3f3f;
    background-color: #ffffff9e;
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-radius: 0px;
}

.informacoes__input:checked + .informacoes__label { 
    color: #000;
    border-color: #fff;
    background-color: #fff;
}

#search-form-container {
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: 498px;
    height: 72px;
    background-color: #ffffff;
    border: 2px solid #990000;
    padding: 10px 13px 7px 6px;
    z-index: 992;
    transition: top 0.2s ease-in-out;
}

@media (max-width: 767px) {
    #search-form-container {
        width: calc(100% - 40px);
        margin: 0;
    }
}

#custom-search-form {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.custom-search-input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: 'Rokkitt', serif;
    color: #777777;
    text-transform: uppercase;
    font-weight: 700;
}

.custom-search-button {
    background: none;
    border: none;
    width: 17px;
    height: 23px;
    margin-left: 10px;
    cursor: pointer;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #990000;
    transition: opacity 0.3s ease-in-out;
}

.custom-search-button:hover {
    opacity: 0.5;
}

.btn.dropdown-toggle.input-select.product-section__filter-button {
    padding: 5px 14px !important;
    background: #990000 !important;
    border-radius: 0 !important;
    border: 0 !important;
    color: #fff !important;
}

.btn.dropdown-toggle.input-select {
    padding: 5px 14px !important;
    background: #990000 !important;
    border-radius: 0 !important;
    border: 0 !important;
    color: #fff !important;
}

.dropdown-menu.show {
    display: block;
    background-color: #990000;
    border-radius: 0;
    padding: 7px 0 4px 0;
    margin-top: 1px;
    margin-left: -1px;
}

.dropdown-menu > .dropdown-item {
    padding-right: 1.25rem;
    padding-left: 0.8rem;
    border-left: 0;
    background-color: transparent;
    color: white;
    margin-top: -4px;
}

.dropdown-item:hover {
    text-decoration: none;
    background-color: transparent !important;
    color: black !important;
}

.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    color: white;
}

.custom-control:hover {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    color: black;
}

.custom-control-label:hover {
    color: white !important;
}

.custom-control-label:hover {
    color: black !important;
}

.product-section__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 27px;
    margin-bottom: -24px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 716px;
    height: 397px;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}

.modal img {
    width: 100%;
    height: 100%;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 999;
}

.clickable-image {
    cursor: pointer;
}

@media (max-width: 767px) {
    .modal, .modal-overlay {
        display: none !important;
    }
}

ul.product-pagination.numPg li {
    text-align: center;
    background-color: #990000;
    border-radius: 0;
    border-color: transparent !important;
}

ul.product-pagination.numPg li a {
    margin: 0;
    border-color: transparent !important;
    border-radius: 0 !important;
}

.numPg a {
    color: white !important;
}

.numPg a:hover :active {
    padding: 9px !important;
    height: 40px !important;
    width: 40px;
    background-color: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
    border-radius: 0 !important;
}

.product-card .product-card__stats .product_name {
    font-size: 1.2rem !important;
}

.product-card .image_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .image_overlay {
    opacity: 1;
}

.product-card:hover .view_details {
    opacity: 1;
}

.product-options .colors {
    display: none;
}

.product_price {
    color: #990000 !important;
    font-size: 33px;
    font-weight: 700;
}

.product-card .view_details {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #fff;
    color: transparent !important;
    background: transparent !important;
    padding: 165px 90px;
    font-size: 1.125rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0;
    transition: all 200ms ease-out;
    cursor: pointer;
    z-index: 10000000;
    width: max-content;
}

.product-card .view_details:hover {
    background: #0000001c;
    color: transparent !important;
}

@media (max-width: 768px) {
    .product-card .view_details:hover {
        color: #ffffff80 !important;
        font-size: 22px;
    }
}

.product-description {
    font-weight: 700 !important;
    display: flex;
    flex-direction: column;
    width: 100%;
    font-size: 20px;
    top: -40px !important;
    position: relative;
    line-height: 1.2;
}

.informacoes__conteudo > img {
    display: block;
    max-width: 100% !important;
    height: auto !important;
    margin-bottom: 21px;
}

.informacoes__span {
    font-size: 1rem;
    color: white;
}

.informacoes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(33.33%, 1fr));
    align-content: flex-start;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin-top: 20px;
}

.custom-unique-footer {
    width: 100%;
    height: 900px;
    background-image: url('https://i.ibb.co/D1XgZ5V/rodape-bg2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.custom-unique-footer.mostrar {
    opacity: 1;
}

.custom-unique-footer-logo,
.custom-unique-bottom-bar,
.custom-unique-footer-image-container,
.custom-unique-footer-description,
.custom-unique-footer-social-icons,
.custom-unique-footer-cards {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
}

.custom-unique-footer-logo {
    position: absolute;
    width: 50%;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .custom-unique-footer-logo {
        width: 85%;
        top: 69px;
    }
}

.custom-unique-footer-description {
    width: 692px;
    height: auto;
    background-color: transparent;
    padding: 13px;
    border-left: 5px solid #990000;
    color: white;
    font-size: 20px;
    box-sizing: border-box;
    position: absolute;
    top: 423px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .custom-unique-footer-description {
        width: 80%;
        top: 253px;
        font-size: 19px;
    }
}

.custom-unique-bottom-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background-color: #99000052;
    width: 100%;
    border-top: 2px solid #990000;
}

.bottom-bar-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    color: white;
    font-size: 14px;
}

.bottom-bar-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-bar-menu a:hover {
    color: #ffffff80;
}

.custom-unique-footer-image-container {
    position: absolute;
    top: 380px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .custom-unique-footer-image-container {
        width: 70%;
        top: 210px;
    }
}

.custom-unique-footer-image {
    max-width: 100%;
    height: auto;
}

.custom-unique-footer-social-icons {
    position: absolute;
    top: 645px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .custom-unique-footer-social-icons {
        top: 660px;
    }
}

.custom-unique-footer-social-icons img {
    width: 37px;
    height: 37px;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
}

.custom-unique-footer-social-icons img:hover {
    opacity: 0.5;
}

.custom-unique-footer-pagamento {
    position: absolute;
    top: 800px;
    left: 50%;
    transform: translateX(-50%);
    width: 698px;
    color: white;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) { 
    .custom-unique-footer-pagamento {
        display: flex;
        flex-direction: column;
        height: 105px;
    }
}

.custom-unique-footer-pagamento-img-esquerda {
    margin-left: 0;
    flex-shrink: 0;
}

.custom-unique-footer-pagamento-img-direita {
    margin-left: auto;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.custom-unique-footer-pagamento-img-direita:hover {
    opacity: 0.8;
}

.custom-unique-footer-separador {
    width: 1px;
    height: 100%;
    background-color: white;
}

@media (max-width: 768px) { 
    .custom-unique-footer-separador {
        display: none;
    }
}

body, html {
    margin: 0;
    padding: 0;
}

#top-banner-container {
    width: 100%;
    position: relative;
    z-index: 1;
    opacity: 1;
    margin-top: -161px;
}

#top-banner {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.services {
    display: none;
}

[data-loja]>footer {
    display: none !important;
}

.cookieConsentContainer {
    background: #990000;
}

.cookieConsentContainer .cookieContainer {
    color: #fff !important;
}

[data-loja]>header {
    display: none !important;
}

@media (max-width: 768px) { 
  .custom-unique-footer-pagamento-img-esquerda {
        width:50%;
    }
}

@media (max-width: 768px) { 
  .custom-unique-footer {
        height: 955px;
    }
}

@media (max-width: 768px) { 
  .bottom-bar-menu {
    gap: 4px;
    font-size: 16px;
    flex-direction: column;
    margin-top: 116px;
    padding-bottom: 15px;
}
    }
	
</style>
