/*CSS Global*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", serif;
    text-decoration: none;
    color: inherit;
}

body {
    background-color: rgba(194, 194, 194, 0.699);
}

/*Layout*/
.interface {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    background-color: rgb(0, 107, 0); 
    padding: 10px;
    text-align: center;
}

.interface .menu-pc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; 
    justify-content: center; 
}

.interface .menu-pc li {
    margin: -35px -25px; 
    text-align: center;
}

.interface .menu-pc a {
    color: white; 
    text-decoration: none; 
    font-size: 19px; 
    font-weight: bold; 
}

.interface .menu-pc a:hover {
    color: #e68200; 
}


#logo img{
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

/*colar no topo*/
header {
    padding: 0px;
}

header > .interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

header nav ul {
    list-style-type: none;
    font-size: 22px;
}

header nav ul li {
    display: inline-block;
    margin-bottom: 20px;
    padding: 0 60px;
}

header li a {
    color: rgb(253, 253, 253);
    text-decoration: none;
    margin-top: 20px;
    font-size: 30px;
    display: inline-block;
    transition: 0.2s;
}

header a:hover {
    color: rgb(196, 114, 8);
    transform: scale(1.2);
}

/*Botões*/
.btn_contato button {
    padding: 5px 30px;
    font-size: 25px;
    font-weight: 700;
    background-color: orange;
    border-radius: 30px;
    color: black;
    cursor: pointer;
    box-shadow: 5px 5px 20px rgb(255, 140, 0);
    transition: all 0.3s ease;
    border: none;
    margin-right: 10px;
}

.btn_contato button:hover {
    box-shadow: 10px 10px 30px rgb(255, 140, 0);
    transform: scale(1.05);
}


.barra-pesquisa {
    text-align: center;
    margin-top: 10px;
}

.barra-pesquisa input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 10px;
}

.destaque {
    border: 3px solid green;
    border-radius: 10px;
    box-shadow: 0 0 10px limegreen;
    transition: all 0.3s ease-in-out;
}



header img {
    height: 40px; 
    margin-top: 0px;
    margin-left: 50px;
}


/* Botão fixo */
.btn-fixo-inicio {
    position: fixed;
    bottom: 50px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-weight: 700;
    border-radius: 50%;
    background-color: rgb(0, 120, 26);
    color: rgb(0, 0, 0);
    font-size: 16px;
    border: none;
    box-shadow: 0 4px 10px rgb(0, 0, 0);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 80;
}




.carrossel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 110px;
}

.carrossel-container {
    display: flex;
    transition: transform 0.3s ease-in-out; 
}

.carrossel-item {
    min-width: 100%;
    box-sizing: border-box;
}

.carrossel-img {
    width: 100%;
    height: auto;
    display: block;
}

.carrossel-msg {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 24px;
    padding: 12px 16px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.carrossel-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
    transform: translateY(-50%) scale(1.1);
}

.carrossel-btn.left {
    left: 15px;
}

.carrossel-btn.right {
    right: 15px;
}





#beneficios-cliente{
    text-align: center;
    font-size: 40px;
    color: rgb(0, 0, 0);
    text-shadow: 2px 2px 4px rgb(255, 140, 0);
    padding-top: 5px;
}

.fora-estoque {
    color: red;
    font-weight: bold;
    margin-left: 10px;
}


/* Container para os retângulos */
.retangulos-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; 
    flex-wrap: wrap; 
    padding: 10px;
}

/* Estilos para cada retângulo */
.retangulo {
    background-color:#0d3002;
    padding: 20px;
    border-radius: 50px;
    width: calc(25% - 20px); 
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: white;
    font-family: "Open Sans", serif;
    transition: transform 0.6s ease
}

.retangulo h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.retangulo p {
    font-size: 18px;
    margin: 0;
}

.retangulo:hover {
    transform: scale(1.05); 
    background-color: rgb(0, 107, 0);
}




#promoções,
#cachorros,
#gatos,
#pássaros,
#peixes,
#outros-animais,
#jardinagem {
    padding-top: 50px; 
}

.subcategoria h3{
    padding: 15px;
}


.titulo h2{
    text-shadow: 1px 1px 3px rgb(255, 140, 0);
    padding-top: 10px;
}


.titulo h2{
    font-size: 50px;
    text-align: center;
}

.subcategoria h3{
    font-size: 30px;
}



.preco.com-desconto {
    display: flex;
    flex-direction: row; 
    justify-content: center;
    align-items: center; 
}

.preco-original {
    text-decoration: line-through;
    color: gray;
    font-size: 14px;
    margin-right: 10px;
}

.preco-final {
    color: green;
    font-weight: bold;
    font-size: 26px;
}

.desconto-badge {
    background-color: #a00101;
    color: white;
    font-weight: bold;
    font-size: 20px;
    padding: 2px 6px;
    border-radius: 5px;
    margin-left: 10px;
    align-self: flex-start;
}


#campo-troco{
    margin-top: -25px;
}

.campo-troco {
    display: none !important; /* Oculta inicialmente */
    flex-direction: column;
    gap: 10px;
}

.campo-troco input[type="text"] {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    width: 200px;
}

.checkbox-linha, .linha-troco {
    display: flex;
    align-items: center;
    gap: 4px; /* Menor espaço entre checkbox e texto */
    font-size: 14px;
    margin-top: -10px;
    padding: 10px;
}

.checkbox-linha input[type="checkbox"], 
.linha-troco input[type="checkbox"] {
    margin: 0;
    padding: 0;
    width: 16px;
    height: 16px;
    accent-color: #4CAF50; /* Verde bonitinho */
}

.checkbox-linha label, 
.linha-troco label {
    margin: 0;
    padding: 0;
    line-height: 1; /* Alinha perfeitamente */
}


/* =======================================================
   ALTERAÇÃO PRINCIPAL: Caixas de Produtos (Layout GRID)
   ======================================================= */
.caixas-produtos {
    display: grid;
    width: 100%; /* Ocupa 100% da largura da tela */
    padding: 20px 40px; /* Um pouco de respiro nas laterais */
    gap: 20px;
    
    /* O SEGREDO: Cria exatamente 5 colunas que esticam (1fr) */
    grid-template-columns: repeat(5, 1fr);
    
    /* Centraliza o grid em si */
    margin: 0;
    box-sizing: border-box;
}

.caixa {
    width: 100%;
    /* Removido min-height grande, deixei o conteúdo definir a altura */
    min-height: auto; 
    padding: 15px; /* Reduzi um pouco o padding (era 20px) */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffffdf;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}


.info-produto {
    justify-content: space-between;
    margin-top: 0.5rem;
}
  
.info-produto .preco {
    font-size: 26px; 
    color: #0a7537;     
    font-weight: bold;
}

.caixa h3 {
    font-size: 15px;
    margin: 0; 
    padding-top: 5px; 
    font-weight: bold;
    font-family: Helvetica
}

.caixa img {
    /* Definir altura fixa em PX evita que a imagem estique o card */
    height: 140px; 
    width: auto;     /* Largura se ajusta proporcionalmente */
    max-width: 90%;  /* Garante que não vaze para os lados */
    object-fit: contain; /* Garante que a imagem não fique distorcida */
    margin-bottom: 10px;
}

.caixa:hover {
    transform: scale(1.03); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); 
}

/* ======================================================= */

.container-box {
    max-width: 100%;
    margin: 50px 50px;
    padding: 20px 10px;
    text-align: center;
}

.container-box h1 {
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: #333;
}

.box-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    align-items: center;    
    gap: 140px;
    padding: 10px;
}

.box {
    background: #86887cb6;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.box h3 {
    margin: 15px 0 10px;
    color: #333;
}

.box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.box a {
    color: white;
    background-color: #25D366;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.box a:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.box:hover {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

/*Painel lateral com maior informações do produto*/
.painel-produto {
    position: fixed;
    right: -100%;
    top: 0;
    width: 450px;
    height: 60vh; 
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3); 
    padding: 20px;
    z-index: 9999;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    border-bottom-left-radius: 15px; 
}

.painel-produto.ativo {
    right: 0;
}

.fechar-painel {
    position: absolute;
    top: -5px;
    left: 20px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.painel-preco{
    font-size: 25px;
    color: darkgreen;
    font-weight: bold;
}

/*Mexendo no zoom da imagem*/

.zoom-container {
    position: relative;
    width: 100%;
    max-height: 300px;
    overflow: hidden;
}

.zoom-imagem {
    width: 100%;
    height: auto;
    display: block;
    max-height: 300px; 
    object-fit: contain; 
}

.lente {
    display: none;
    position: absolute;
    border: 2px solid #999;
    width: 100px;   
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 180%; 
    pointer-events: none;
    border-radius: 20%;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    z-index: 10;
}

/*Estilização carrinho*/
.btn-add-carrinho {
    background-color: rgb(0, 0, 0);
    border: none;
    padding: 5px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 5px;
}

.btn-add-carrinho i {
    color: white;
    font-size: 20px;
}

/*Estilização do footer carrinho fixo*/
.cart-btn{
    background-color: rgb(192, 134, 7); 
    color: rgb(255, 255, 255);
    border-radius: 10px; 
    width: 100%;
    height: 40px;
    font-weight: bold; 
    cursor: pointer;
    font-size: 22px; 
    position: fixed;
    bottom: 0px; 
    z-index: 40;
}

.fundo-model {
    background-color: rgba(0, 0, 0, 0.5); 
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: flex; 
    justify-content: center;
    align-items: center; 
    display: none;   
}

.fundo-branco-model {
    background-color: white;
    width: 30%; 
    padding: 20px; 
    border-radius: 8px;
    max-height: 80vh;       
    overflow-y: auto;       
    box-sizing: border-box; 
}

.fundo-branco-model h2{
    text-align: center;
}

.fundo-branco-model p{
    font-size: 15px;
    font-weight: bold;
}

/*Customização de quando adicionar o produto no model*/
#cart-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
}

.cart-item {
    width: 38%; 
    box-sizing: border-box;
    display: flex;
    flex-direction: column; 
    justify-content: flex-start; 
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px; 
    background-color: #ecddb1;
    max-width: calc(33% - 20px); 
    word-wrap: break-word; 
    overflow: hidden; 
}

.cart-item .cart-item-content {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.cart-item .cart-item-name {
    word-break: break-word; 
    overflow-wrap: break-word; 
    max-width: 100%; 
    white-space: normal; 
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px; 
}

.cart-item p {
    margin: 5px 0;
    font-size: 10px; 
}

.remove-item-btn {
    padding: 5px 10px;
    background-color: #e74c3c;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.remove-item-btn:hover {
    background-color: #c0392b;
}


#cart-total{
    font-weight: bold;
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 25px;
}

#cart-total-valor{
    font-weight: bold;
    color: rgb(33, 104, 18);
    margin-left: 0px;
}


/*Estilo para os inputs e placeholders*/
input {
    font-size: 12px;
    padding: 6px;
    width: 40%; 
    margin-bottom: 10px; 
    border-radius: 5px; 
    border: 1px solid #ccc; 
}

/*Estilizando o placeholder*/
input::placeholder {
    font-size: 10px; 
    color: #888; 
}


#detalhes-incompletos{
    background-color: red;
    padding: 5px;
    margin-top: 10px;
    border-radius: 5px;
    width: 50%;
    margin-left: 25%;
    color: black;
    text-align: center;
    display: none; /*para esconder da tela, só vai aparecer quando n colocar os dados*/
}

#finalizar-modal{
    background-color: green;
    color: white;
    border-radius: 10px;
    padding: 5px;
    margin-left: 60%;
    margin-top: -35px;
}

#fechar-modal{
    background-color: red;
    color: white;
    border-radius: 5px;
    padding: 5px;
    margin-top: -35px;
}


#forma-pagamento, #escolha-loja {
    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #f0f0f0;
    border: 2px solid #999;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 11px;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s ease;
    width: 180px; 
    font-weight: 600;
    top:20px;
    text-align: center;
}

/* Efeito ao focar no select */
#forma-pagamento:focus, #escolha-loja:focus {
    border-color: #4CAF50;
    outline: none;
    background-color: #e8f5e9;
}


#escolha-loja {
    position: relative;
    left: 190px;
    top: -32px;
}

/* Estilo do Footer */
footer {
    background-color: rgb(16, 73, 16); 
    padding: 5px 30px;
    color: #fff;
}

.footer-container {
    max-width: 100%;
    margin: 30px 400px;
    display: flex;
    justify-content: space-between; 
    align-items: flex-start; 
    flex-wrap: wrap;
}

.copyright {
    font-size: 14px;
    margin: 0;
}

/* Ajustando os ícones sociais */
.social-icons {
    font-size: 35px;
    display: flex;
    gap: 20px;
    margin-top: -10px;  
}

.social-icon {
    color: #fff;
    text-decoration: none;
}

.social-icon:hover {
    opacity: 0.7;
}


.social-icon.instagram {
    color: #E1306C;
}

.social-icon.whatsapp {
    color: #25D366;
}



.btn-restrita {
    background-color: #000000;
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: -20px;
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f2f2f2;
}

::-webkit-scrollbar-thumb {
    background: #9b9b9b;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6f6f6f;
}



/* RESPONSIVIDADE */

/* Telas até 1024px*/
@media (max-width: 1024px) {
    header > .interface {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }

    .interface .menu-pc ul {
        flex-direction: column;
        align-items: center;
    }

    .interface .menu-pc li {
        margin: 10px 0;
    }

    /* Removida a estilização que forçava coluna nos produtos aqui */
    
    .retangulos-container {
        flex-direction: column;
        align-items: center;
    }

.caixas-produtos {
        /* Em tablets/celulares, volta ao automático para caber 2 ou 3 */
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        padding: 10px; /* Menos borda no mobile */
    }

    .box-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .container-box {
        margin: 50px 20px;
    }

    .cart-item {
        width: 100%;
    }

    .fundo-branco-model {
        width: 90%;
    }

    .btn_contato button {
        font-size: 18px;
        padding: 5px 20px;
    }

    .titulo h2 {
        font-size: 36px;
    }

    .subcategoria h3 {
        font-size: 24px;
    }

    .painel-produto {
        width: 350px;
        height: 50vh;
        border-bottom-right-radius: 12px;
    }
  
  .lente {
        width: 80px;
        height: 80px;
        background-size: 160%; 
        border-radius: 20%;
    }

}

    /*Telas até 768px*/
    @media (max-width: 768px) {
        .interface{
            flex-direction: column;
            background-color: rgb(181, 181, 181);
        }

        .interface .menu-pc a {
            font-size: 15px; 
            font-weight: bold; 
        }
        
        .btn_contato{
            display: none;
        }

        #logo img {
            display: block; 
            position: fixed; 
            top: 25px;      
            right: 10px;     
            width: 40px;    
            height: auto;    
        }


        header nav ul li {
            padding: 10px 0;
        }

        header li a {
            font-size: 22px;
        }

        .carrossel-btn {
            display: none;
        }

        .carrossel{
            margin-top: 10px;
        }


        .btn-fixo-inicio {
            bottom: 40px;
            right: 7px;
            width: 30px;
            height: 30px;
            font-size: 14px;
        }

        .carrossel-msg {
            font-size: 14px;
        }


        .retangulo {
            width: 90%;
        }

        .retangulo h3 {
            font-size: 15px;
        }

        .retangulo p {
            font-size: 13px;
            margin: 0;
        }

        #beneficios-cliente{
            text-align: center;
            font-size: 25px;
            color: rgb(0, 0, 0);
            text-shadow: 2px 2px 4px rgb(255, 140, 0);
            padding-top: 15px;
        }

        .titulo h2 {
            font-size: 28px;
        }

        .preco-final {
            font-size: 20px;
        }

        .desconto-badge {
            font-size: 16px;
        }

        .box {
            width: 90%;
        }

        .cart-btn {
            font-size: 18px;
            height: 35px;
        }

        .caixa img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
        }

        .footer-container {
            flex-direction: column;  
            margin: 0 auto;
        }

        .social-icons {
            font-size: 30px;
            margin-top: 15px;
        }

        .copyright {
            font-size: 12px;
            margin-top: 10px;
        }

        .painel-produto {
            width: 280px;
            height: 55vh;
            border-bottom-right-radius: 10px;
            padding: 15px;
        }
    
        .zoom-container {
            max-height: 220px;
        }
        
        .zoom-imagem {
            max-height: 220px;
        }
        
        .lente {
            width: 70px;
            height: 70px;
            background-size: 150%;
            border-radius: 15%;
        }

        #cart-items {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-direction: row;
            flex-wrap: wrap; 
            
        }

        .cart-item {
            width: 40%;
            max-width: none;
            font-size: 13px;
        }

        .cart-item .cart-item-name {
            font-size: 13px;
        }

        .remove-item-btn {
            font-size: 10px;
            padding: 4px 8px;
        }

        #cart-total {
            font-size: 25px;
        }

        #cart-total-valor {
            font-size: 25px;
        }

        .fundo-branco-model{
            max-height: 80vh;      
            overflow-y: auto;       
            box-sizing: border-box; 
            width: 90%;
        }
        
        #finalizar-modal{
            margin-left: 40%;
        }

            #forma-pagamento,
        #escolha-loja {
            width: 100%;
            font-size: 13px;
            margin-top: 10px;
            margin-bottom: 10px;
            position: static;
        }

    }
        
    /* Telas até 480px*/
    @media (max-width: 480px) {
        header img {
            margin-left: 10px;
            height: 30px;
        }

        .carrossel-btn {
            display: none;
        }

        .interface {
            padding: 5px;
        }

        .retangulo {
            width: 90%;
        }

        .retangulo h3 {
            font-size: 12px;
        }

        .retangulo p {
            font-size: 9px;
            margin: 0;
        }

        #beneficios-cliente{
            text-align: center;
            font-size: 15px;
            color: rgb(0, 0, 0);
            text-shadow: 2px 2px 4px rgb(255, 140, 0);
            padding-top: 10px;
        }

        .caixa {
            height: auto;
            padding: 10px;
        }

        .caixa h3 {
            font-size: 14px;
        }

        .box p {
            font-size: 12px;
        }

        .fundo-branco-model p {
            font-size: 13px;
        }

        .btn_contato button {
            font-size: 16px;
            padding: 4px 15px;
        }

        .caixa img {
            width: 130px;
            height: 130px;
            object-fit: cover;
            border-radius: 10px;
        }


        #cart-items {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 10px;
        }

        .cart-item {
            width: 48%;
            background-color: #f4e4b4;
            padding: 10px;
            border-radius: 10px;
            box-sizing: border-box;
        }

        .cart-item .cart-item-name {
            font-size: 12px;
        }

        .remove-item-btn {
            font-size: 11px;
            padding: 3px 6px;
        }

        #cart-total {
            font-size: 18px;
        }

        #cart-total-valor {
            font-size: 23px;
        }

        .fundo-branco-model{
            max-height: 80vh;      
            overflow-y: auto;       
            box-sizing: border-box; 
        }

        #finalizar-model{
            margin-left: 40%;
        }

        #campo-troco{
            margin-top: 10px;
        }

        #forma-pagamento,
        #escolha-loja {
            width: 100%;
            font-size: 12px;
            margin-top: 8px;
            margin-bottom: 8px;
            position: static;
        }

        input {
            font-size: 14px;
            padding: 6px;
            width: 70%; 
            margin-bottom: 10px; 
            border-radius: 5px; 
            border: 1px solid #ccc; 
        }

        /*Estilizando o placeholder*/
        input::placeholder {
            font-size: 12px; 
            color: #888; 
        }

        
    }


/* MENU HAMBÚRGUER E ESTILO ADICIONAL PARA RESPONSIVIDADE */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    margin: 10px;
    z-index: 1001;
    position: relative;
}



/* Mobile */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
        position: fixed;
    }


    /* Estilo base do menu*/
.menu-pc {
    position: fixed;
    top: 0;
    left: -250px; 
    width: 190px;
    height: 100vh;
    background-color: #dab445;
    flex-direction: column;
    align-items: flex-start;
    padding: 4px;
    gap: 4px;
    transition: left 0.3s ease;
    z-index: 1000;
    display: flex;
}

/* Quando ativo, aparece */
.menu-pc.ativo {
    left: 0;
}

.menu-pc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-pc li {
    width: 100%;
}

.menu-pc li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 4px;
    border-radius: 4px;
}

}

