@media screen and (min-width: 750px) {
    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');

    @font-face {
        font-family: 'Honey';
        /* O nome que você vai usar no código */
        src: url('../fonts/honey.otf') format('truetype');
        /* Verifique o caminho e a extensão */
        font-weight: normal;
        font-style: normal;
    }

    html {
        scroll-behavior: smooth !important;
        margin: 0;
        padding: 0;
    }

    .numeral {
        font-family: "Fjalla One", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .honney {
        font-family: 'Honey', sans-serif;
        font-weight: lighter;
        font-style: normal;

    }

    * {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-style: normal;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-size: 20px;
    }

    :root {
        --cor1: #FF00AA;
        --cor2: #F38CF5;
        --cor3: #BC51F5;
        --cor4: #ffa2c4;
        --cor5: #FF5CBE;
        transition: all 1s;

    }


    body {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        overflow: scroll;
        width:100vw;
        overflow-x: hidden;
    }

    .header {
        width: 100%;
        height: 80px;
        display: flex;
        padding: 10px;
        justify-content: center;
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 100;
        transition: all 1s ease;
        border: none;

    }

    .navegacao {
        display: none;
    }

    .navpc {
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .abrenav {
        display: flex;
        width: 100px;
        height: 100px;
        position: absolute;
        left: 30px;
        top: 20px;

        & img {
            width: 20px;
            height: 20px;
            transition: all 0.5s;

            &:hover {
                transform: rotate(90deg) scale(1.1);
                cursor: pointer;
            }
        }
    }

    #navopen {
        display: none;
        /* Garante que ele comece fechado */
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        position: absolute;
        top: 80px;
        left: 0px;
        width: 130px;
        height: 100px;
        /* Ajustei a largura para caber o texto e ícone lado a lado */
        height: auto;
        /* Deixe automático para crescer conforme o conteúdo */
        padding: 10px;
        background-color: var(--cor1);
        z-index: 1000;
        border-radius: 0 0 15px 0;
        box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    }

    #navopen div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.65s;

        & a:hover {
            transform: scale(1.2);
        }
    }

    #navopen a {
        color: white;
        text-decoration: none;
        font-weight: bold;
        font-size: 8pt;


    }

    #navopen img {
        width: 17px;
        height: 17px;
    }

    .header-active {
        background: var(--cor1);
        border: none;

        .logo-header {
            border: none;

            .logo {
                font-size: 40px;
                font-weight: bolder;
                padding-bottom: 5px;
                color: white;
                border: none;
            }
        }


    }

    .header-unative {
        background-color: var(--cor1);
        border: none;

        .logo-header {
            border: none;

            .logo {
                font-size: 40px;
                font-weight: bolder;
                padding-bottom: 5px;
                color: white;
                border: none;
            }
        }
    }



    .cart {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 15px;
        transform: translateY(-10px);


        &>p {
            transform: translate(7px, 8px);
            border-radius: 50%;
            font-size: 8pt;
            background-color: rgb(255, 255, 255);
            width: 20px;
            height: 22px;
            display: flex;
            justify-content: center;
            align-items: center;
            align-self: center;
            border-radius: 22px;
            color: var(--cor1);
            font-size: 15pt;

        }
    }

    .fa-shopping-cart {
        color: white;

    }



    .container {
        display: flex;
        flex-direction: column;
        width: 100vw;
        margin-bottom: 50px;
        margin-top: 0px;
        align-items: center;
        justify-content: center;
        align-self: center;
    }


    .slider {
        width: 100%;
        /* Alinhado com a largura da navegação */
        height: 50vw;
        max-height: 400px;
        overflow: hidden;
        box-shadow: var(--shadow-soft);
    }

   .slides {
        display: flex;
        position: relative;
        width: 303%;
        /* Ajustado para 3 slides exatos */
        height: 100%;
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        background-color: gray;
    }

    .slide {
        width: 33%;
        height: auto;
        position: relative;
        transition: 1s;
    }

    .slides input {
        display: none;
    }

    .slide img {
        width: 100%%;
        height: 100%;
        object-fit: cover;
    }

    .navigation-auto {
        display: none;
    }

    .manual-navigation {
        position: absolute;
        width: 100vw;
        bottom: 10px;
        display: flex;
        justify-content: center;
        z-index: 10;
    }

    .manual-btn {
        border: 1px solid var(--cor5);
        background-color: var(--cor4);
        padding: 5px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 1s;
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.329);
    }

    .manual-btn:not(:last-child) {
        margin-right: 10px;
    }

    .manual-btn:hover {
        background-color: var(--cor4);
    }

    #radio1:checked~.first {
        margin-left: 0;
    }

    #radio2:checked~.first {
        margin-left: -33%;
    }

    #radio3:checked~.first {
        margin-left: -66%;
    }

    #radio1:checked~.manual-navigation .btn1 {
        width: 25px;
        border-radius: 40%;
        background-color: var(--cor5);
    }

    #radio2:checked~.manual-navigation .btn2 {
        width: 25px;
        border-radius: 40%;
        background-color: var(--cor5);
    }

    #radio3:checked~.manual-navigation .btn3 {
        width: 25px;
        border-radius: 40%;
        background-color: var(--cor5);
    }




  .separador-content {
        display: flex;
        font-size: 15pt;
        font-weight: bold;
        color: var(--cor1);
        margin: 20px 10px;
        width: 90%;
        max-width: 600px;
        padding-top: 10px;
        border-top: 1px solid var(--cor1);
        align-self: center;
        justify-content: center;
        align-items: center;
    }


   
    .filtros-produtos {
        display: flex;
        width: 100vw;
        align-items: center;
        justify-content: flex-start;
        /* Alinha no início para o scroll fluir */
        margin: 10px 0 30px;
        padding: 15px 5%;
        /* Alinhado com a margem do site */
        overflow-x: auto;
        /* Permite o deslize lateral */
        -webkit-overflow-scrolling: touch;
        /* Scroll suave no iPhone */
        gap: 12px;
    }

    .filtros-produtos::-webkit-scrollbar {
        display: none;
    }

    .filtros-produtos {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .filtros-produtos table,
    .filtros-produtos tbody,
    .filtros-produtos tr {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .filtro {
        list-style: none;
        background: var(--white);
        color: var(--text-muted);
        border: 1px solid #E0E0E0;
        padding: 8px 20px;
        border-radius: 25px;
        /* Formato de pílula */
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        /* Não deixa o texto quebrar linha */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .filtro td {
        font-size: 0.9rem;
        font-weight: 500;
    }

    .filtro:hover {
        border-color: var(--cor1);
        color: var(--cor1);
    }

    /* ESTADO ATIVO: A categoria selecionada */
    .filter-active {
        background: var(--cor1) !important;
        color: var(--white) !important;
        border-color: var(--cor1) !important;
        box-shadow: 0 4px 10px rgba(216, 27, 96, 0.3) !important;
    }

    /* Container das variações */
    .secao-variacoes {
        margin: 10px 0;
    }

    .controle-variacao p {
        font-weight: bold;
        margin-bottom: 10px;
        font-size: 10px;
    }

    .wrapper-opcoes {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    /* Esconde o rádio original */
    .wrapper-opcoes input[type="radio"] {
        display: none;
    }

    /* Estilo das Bolinhas de Cor */
    .swatch-cor {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: block;
        border: 1px solid #e1e1e1;
        cursor: pointer;
        transition: 0.3s;
    }

    /* Estilo dos Quadradinhos de Tamanho */
    .caixa-tamanho {
        padding: 8px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        cursor: pointer;
        display: block;
        font-weight: bold;
        transition: 0.3s;
    }



    /* Quando o usuário seleciona (Efeito Visual) */
    .wrapper-opcoes input[type="radio"]:checked+.swatch-cor {
        transform: scale(1.1);
        box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
        border: 3px solid rgba(43, 43, 43, 0.527);
    }

    .wrapper-opcoes input[type="radio"]:checked+.caixa-tamanho {
        background-color: var(--cor1);
        color: #fff;

    }

    /* Classe que faremos o JS injetar caso falte seleção */
    .campo-obrigatorio-vazio {
        border: 1px solid #ff4d4d;
        padding: 10px;
        border-radius: 8px;
        animation: shake 0.4s linear;
    }

    @keyframes shake {
        0% {
            transform: translateX(0);
        }

        25% {
            transform: translateX(-5px);
        }

        50% {
            transform: translateX(5px);
        }

        75% {
            transform: translateX(-5px);
        }

        100% {
            transform: translateX(0);
        }
    }

    /* Um aviso sutil em texto que fica escondido por padrão */
    .msg-erro-selecao {
        color: #ff4d4d;
        font-size: 12px;
        display: none;
        margin-top: 5px;
    }

    .linha-produtos {
        display: grid;
        width: 90%;
        max-width: 1000px;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        margin: 0;
        gap: 15px;
        align-self: center  ;
    }

    .corpoProduto {
        display: flex;
        width: 100%;
        height: 340px;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.171);
        background-color: white;
    }

    .imgProduto {
        width: 100%;
        height: 180px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        object-fit: cover;

        &>img {
            width: auto;
            height: 100%;
        }
    }

    .produtoMiniatura {
        object-fit: cover;
        object-position: center;
    }



    
    .titulo .preco {
        font-size: 12pt;
        color: rgb(0, 0, 0);
        padding: 7px;
        
    }

    .button {
        background-color: white;
        width: 100%;
        border: none;
        border-radius: 5px;
        position: relative;
        padding: 7px 25px;
        color: var(--cor1);
        font-size: 15px;
        cursor: pointer;
        border-radius: 10px;

    }

    .button:hover {
        background: var(--cor1);
        color: white;

    }

    .body-pedido {
        width: 100%;
        height: 100%;
        overflow: scroll;

    }

    /* Apenas o mínimo de CSS para separar os blocos de pedidos */
    .bloco-separador-pedido {
        border: 2px solid var(--cor1);
        border-radius: 10px;
        margin-bottom: 30px;
        background: #e7e7e7;
        padding-bottom: 10px;
        max-width: 600px;
        display: flex;
        flex-direction: column;
        align-self: center;
        margin: 20px auto;
    }

    .cabecalho-agrupado {
        background: #f9f9f9;
        padding: 15px;
        border-bottom: 1px solid #eee;
        border-radius: 10px 10px 0 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .status-tag {
        padding: 0px 5px;
        border-radius: 5px;
        font-size: 8pt;
        font-weight: bold;
        color: white;
        background: #acacac;
    }

    .status-S {
        background: #28a745;
    }

    /* Verde para Enviado */
    .status-N {
        background: #ffc107;
        color: #000;
    }

    /* Amarelo para Processando */
    .barraLateral {
        background-color: #ffffff;
        text-align: center;
        display: flex;
        flex-direction: column;
        width: 100vw;
        align-self: center;
        justify-self: center;
        height: 100vh;
        font-size: 15px;
    }

    .topoCarrinho-ver {
        background: var(--cor1);
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        max-width: 400px;
        min-height: 60px;
        width: 90%;
        border-radius: 20px;
        margin-bottom: 30px;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.199);
        margin: 10px;
        color: #ffffff;


        & p {
            font-size: 15pt;
        }

    }



    .container-ver {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-bottom: 50px;
        margin-top: 0px;
        align-items: center;
        justify-content: center;
        align-self: center;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .barraLateral-pedidos {
        background-color: #ffffff;
        text-align: center;
        display: flex;
        flex-direction: column;
        width: 90%;
        align-self: center;
        justify-self: center;
        height: 100%;

    }

    .linha-pedidos {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 700px;
        justify-content: center;
        align-self: center;
        align-items: center;
        overflow: scroll;
        gap: 4px;
        padding: 20px 0px;

        & form {
            min-width: 100%;
        }
    }

    .corpoPedido {
        display: flex;
        width: 90%;
        height: 60px;
        max-width: 700px;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        border-radius: 10px;
        box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.082);
        margin: auto;
        overflow: hidden;
        background-color: white;
        font-size: 20px;
    }



    .imgPedido {
        width: 150px;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        object-fit: scale-down;
        border-radius: 10px;

        & img {
            object-fit: cover;
            width: 100%;
            overflow: hidden;

        }

    }

    .item-carrinho-vazio {
        padding: 15px;
        font-size: 12pt;
    }

    .titulo>p {
        padding: 5px 15px;
        font-size: 8pt;
        
        
    }
    

    .titulo-pedido {
        display: flex;
        width: 100%;
        margin: 0px 10px;
        align-items: start;
        justify-content: space-between;
        text-align: left;
        flex-direction: column;

        & p {
            font-size: 10pt;
        }
    }

    .valor-pedido {
        padding: 5px;
        width: 70px;
        font-size: 10pt;

    }

    .rodape-pedido {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .rodape {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 15px;

        & h3,
        h2 {
            font-size: 10pt;
        }
    }

    .ver-button {
        width: 160px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        bottom: 4px;

        & a {
            font-size: 15pt;
            text-decoration: none;
            color: var(--cor1);

        }

        & a:hover {
            color: white;
        }
    }

    .topoCarrinho {
        background: var(--cor1);
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        max-width: 400px;
        min-height: 60px;
        width: 90%;
        border-radius: 20px;
        margin-bottom: 30px;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.199);
        margin: 10px;
        color: #ffffff;


        & p {
            font-size: 15pt;
        }
    }

    .container-produto-exclusivo {
        max-width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

    }

    .modal-body-pagina {
        display: flex;
        flex-direction: column;
        align-self: center;
        width: 90vw;
        max-width: 800px;
        height: 100%;

        & div:nth-child(1) {
            order: 2;
        }

        & div:nth-child(2) {
            order: 1;
        }

        & div:nth-child(3) {
            order: 3;
        }



    }

    .modal-body-pagina {
        display: flex;
        flex-direction: row;
        align-self: center;
        width: 90vw;
        height: 100%;

    }

    .modal-content {
        background-color: #fefefe;
        width: 96%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: scroll;
        scrollbar-width: 0px;
        scrollbar-color: transparent transparent;
        border-radius: 25px;
        padding: 3px;

        & form {
            height: 100%;
            width: 92%;
        }
    }


    #dados-produto-modal,
    .modal-body {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }




    .modal-infos {

        display: flex;
        flex-direction: column;
        margin-top: 20px;
        max-width: 30%;
    }

    .modal-titulo {
        font-size: 15pt;
        font-weight: bold;
        margin: 10px 0px;
    }

    .modal-preco {
        font-size: 20pt;
        color: var(--cor1);
        font-weight: normal;
    }

    .modal-variacoes {
        margin-top: 15px;
        display: flex;
        flex-direction: column;

        & h2 {
            font-size: 20pt;
            font-weight: normal;
        }

        & small {
            font-weight: normal;
            color: #525252;
        }
    }

    .modal-detalhes {
        display: flex;
        flex-direction: column;

        & h2 {
            margin: 10px 0px;
            font-size: 13pt;
            font-weight: bold;
        }

        & small {
            font-size: 10pt;
            font-weight: light;
            color: #3d3d3d;
        }
    }

    .modal-button {
        margin: 10px 0px;
        font-size: 15px;
        padding: 10px;
        border: 1px solid var(--cor1);
        border-radius: 10px;
        max-width: 200px;
    }

    .someLento {
        animation: some 0.4s ease-in-out forwards;
    }

    @keyframes some {
        0% {
            opacity: 1;
            transform: scale(1);
        }

        100% {
            opacity: 0;
            transform: scale(0.5);
        }
    }

    .apareceLento {
        animation: aparece 0.4s ease-in-out forwards;
    }

    @keyframes aparece {
        0% {
            opacity: 0;
            transform: scale(0.5);
        }

        100% {
            opacity: 1;
            transform: scale(1);
        }
    }

    .slides-modal {
        display: flex;
        margin: 0 auto;

        max-width: 400px;
        max-height: 600px;

        overflow: hidden;
        position: relative;
        justify-content: center;
        align-items: center;
    }

    .container-produto-exclusivo,
    .slides-modal,
    .imagens-modal img {
        height: 50vw;
        width: 90%;
        height: auto;
        box-sizing: border-box;
    }

    .imagens-modal {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-height: 600px;
        background-color: #ffffff;
        align-items: center;
        margin-top: 10px;
        border-radius: 25px;
        overflow: hidden;

    }

    .slide-modal {
        height: 100%;
        width: auto;
        display: none;
        transition: 0.5s;
        align-items: center;
        justify-content: center;
        margin: 10px;
    }

    .slides-modal input {
        display: none;
    }

    .slide-modal img {
        height: 100%;
        width: auto;
        object-fit: cover;
    }

    .modal-navigation {
        display: flex;
        flex-direction: column;
        width: min-content;
        height: 100%;
        max-height: 600px;
        justify-content: center;
        justify-content: start;
        align-self: center;
        gap: 10px;
    }

    .modal-btn {
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        padding: 3px;
        border-radius: 12px;
    }

    .modal-btn img {
        width: 5vw;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0px 4px 6px rgb(161, 161, 161);
    }

    .modal-btn:hover {
        transform: translateY(-4px);
    }

    #capa:checked~.modal-navigation .btn1,
    #capa:checked~.modal-navigation .btn2,
    #capa:checked~.modal-navigation .btn3,
    #capa:checked~.modal-navigation .btn4,
    #capa:checked~.modal-navigation .btn5 {
        border-color: var(--cor1);
        opacity: 1;
    }

    #capa:checked~.imagens-modal .slide-modal:nth-child(1) {
        display: flex;
    }

    #foto1:checked~.imagens-modal .slide-modal:nth-child(2) {
        display: flex;
    }

    #foto2:checked~.imagens-modal .slide-modal:nth-child(3) {
        display: flex;
    }

    #foto3:checked~.imagens-modal .slide-modal:nth-child(4) {
        display: flex;
    }

    #foto4:checked~.imagens-modal .slide-modal:nth-child(5) {
        display: flex;
    }


    .fechar {
        cursor: pointer;
        font-size: 35px;
        display: flex;
        align-self: flex-end;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        margin: 10px 0px;
        border-radius: 50%;
        background-color: var(--cor4);
        color: #ffffff;
        transition: all 0.3s;
    }

    .fechar:hover {
        background-color: var(--cor1);
        transform: scale(1.3);
    }


    .item-carrinho {
        display: flex;
        align-items: center;
        align-self: center;
        justify-content: space-around;
        padding: 3px;
        background-color: #fff;
        border-radius: 3px;
        margin: 3px;
        width: 50%;
        max-width: 740px;
        border: 1px solid var(--cor1);
        border-radius: 15px;
        box-shadow: 0px 6px 15px var(--cor4);

        &>p {
            font-size: 10pt;
        }
    }

    .linha-da-imagem {
        display: flex;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid #c7aeda;
        align-items: center;
        justify-content: center;


    }

    .img-carrinho {

        width: 90%;
        height: 90%;
        border-radius: 50%;
        object-fit: cover;
        object-position: center;


    }


    .fa-trash-o::before {
        height: 100%;
        padding: 20px;
    }

    .fa-trash-o:hover {
        cursor: pointer;
        color: white;
        background-color: rgb(255, 80, 80);
        padding: 10px 0px;
        border-radius: 20%;

    }

    .excluir-btn {

        background: none;
        border: none;

        :hover {
            background-color: rgb(255, 56, 56);
        }
    }

    hr {
        clear: both;
    }

    .btn-final {
        display: flex;
        align-items: center;
        align-self: center;
        text-decoration: none;
        width: max-content;
        padding: 10px;
        font-size: 15pt;
        z-index: 2;
        border: 1px solid var(--cor1);
        transition: all 0.3s;
        border-radius: 15px;
        margin-top: 30px;
    }

    .btn-final:hover {
        background: var(--cor1);
        color: white;

    }

    /*PRODUTOS PERSONALIZADOS PARA A RECOMENDAÇÃO*/
    .container-recomendado {
        display: flex;
        flex-direction: column;
        max-width: 80vw;
        margin-bottom: 100px;
        margin-top: 80px;
        align-items: center;
        justify-content: center;
        align-self: center;

        & h1 {
            padding: 10px;
            margin: 20px;
        }
    }

    .linha-produtos-recomendados {
        display: grid;
        width: 80vw;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .corpoProduto-recomendado {
        display: flex;
        width: 100%;
        height: 340px;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.171);
        background-color: white;
    }

    .imgProduto {
        width: 100%;
        height: 270px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        object-fit: cover;

        &>img {
            width: 100%;
            height: auto;
        }
    }

    .produtoMiniatura {
        object-fit: cover;
        object-position: center;
    }
 .footer {
        background-color: #1A1A1A;
        /* Fundo escuro para contraste premium */
        color: #FFFFFF;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        width: 100%;
        height: min-content;
        padding: 40px 20px 110px;
        /* Padding extra embaixo por causa da barra fixa */
        margin-top: 40px;
        border-top: 4px solid var(--cor1);
    }

    .footer-data {
         display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        height: auto;

        a,
        p,
        div {
           font-size: 13pt;
            color: var(--white);
            margin-bottom: 5px;
        }

        img {
            width: 20px;
            height: 20px;
            opacity: 0.7;
            margin: 0px 10px;
        }
    }
.footer-data-capricho{
    display: flex;
}
 .footer-data a:hover {
        color: var(--cor1);
    }

}