:root { --verde-principal: #166e36; --verde-escuro: #0e4722; --verde-destaque: #1ebe5d; --grafite: #333333; --fundo: #f4f7f6; --branco: #FFFFFF; --texto: #444; --borda: #e5e5e5; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, sans-serif; }
body { background-color: var(--fundo); color: var(--texto); overflow-x: hidden; scroll-behavior: smooth;}

/* CABEÇALHO */
header { background: var(--verde-principal); padding: 12px 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.logo-container { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { height: 45px; border-radius: 4px; border: 2px solid rgba(255,255,255,0.7); background: white; padding: 2px; }
.logo-texto { color: var(--branco); font-size: 1.5em; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.btn-menu { background: none; border: none; cursor: pointer; color: var(--branco); display: flex; align-items: center; gap: 10px; font-size: 1em; font-weight: bold; text-transform: uppercase; }
.icone-carrinho-topo { color: var(--branco); text-decoration: none; font-size: 1.4em; position: relative; transition: 0.3s; }
.icone-carrinho-topo:hover { color: var(--verde-destaque); transform: scale(1.1); }
.badge-carrinho { position: absolute; top: -10px; right: -12px; background: #e74c3c; color: white; border-radius: 50%; padding: 3px 7px; font-size: 0.7em; font-weight: bold; border: 2px solid var(--verde-principal);}

/* MENU LATERAL */
.gaveta { position: fixed; top: 0; height: 100vh; width: 320px; background: var(--branco); box-shadow: 5px 0 25px rgba(0,0,0,0.2); z-index: 2000; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); padding: 30px 20px; display: flex; flex-direction: column; left: -340px;}
.gaveta.aberto { left: 0; }
.gaveta-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; border-bottom: 2px solid var(--fundo); padding-bottom: 15px;}
.gaveta-header h2 { color: var(--verde-principal); font-weight: 800; text-transform: uppercase; }
.btn-fechar-menu { background: var(--fundo); color: var(--grafite); border: none; padding: 8px 12px; cursor: pointer; border-radius: 4px; font-weight: bold; transition: 0.3s;}
.btn-fechar-menu:hover { background: #e74c3c; color: white; }
.menu-links { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.menu-links a { text-decoration: none; color: var(--grafite); font-size: 1em; padding: 15px; border-radius: 4px; display: flex; align-items: center; gap: 15px; font-weight: 500; transition: 0.3s;}
.menu-links a:hover { background: #e8f5e9; color: var(--verde-principal); border-left: 4px solid var(--verde-principal);}
#overlay { display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.6); backdrop-filter: blur(2px); z-index: 1500; }

/* BARRA DE PESQUISA */
.faixa-pesquisa { background: var(--verde-escuro); padding: 15px 5%; display: flex; justify-content: center; border-bottom: 2px solid #0a3518;}
.box-pesquisa { display: flex; width: 100%; max-width: 700px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); border-radius: 25px;}
.box-pesquisa input { flex: 1; padding: 14px 20px; border: none; border-radius: 25px 0 0 25px; outline: none; font-size: 1.05em; }
.box-pesquisa button { background: var(--verde-destaque); color: white; border: none; padding: 0 30px; border-radius: 0 25px 25px 0; cursor: pointer; font-size: 1.2em; transition: 0.3s;}
.box-pesquisa button:hover { background: #159f4d; }

/* HERO SLIDER */
.hero-container { position: relative; width: 100%; height: 500px; background: var(--verde-principal) url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIj48ZyBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiMwMDM5MTUiIGZpbGwtb3BhY2l0eT0iMC4yMiI+PHBhdGggZD0iTTAgMGg0MHY0MEgwVjB6bTIwIDIwaDIwdjIwSDIWMjB6TTAgMjBoMjB2MjBIMFYyMHoyMCAwaDIwdjIwSDIwVjB6Ii8+PC9nPjwvZz48L3N2Zz4='); overflow: hidden;}
.slider-wrapper { display: flex; width: 100%; height: 100%; transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); }
.slide { min-width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 10%; }
.slide h1 { font-size: 3.8em; color: var(--branco); margin-bottom: 20px; font-weight: 900; text-shadow: 2px 2px 5px rgba(0,0,0,0.4);}
.slide p { font-size: 1.3em; color: rgba(255,255,255,0.9); margin-bottom: 35px; text-shadow: 1px 1px 3px rgba(0,0,0,0.3);}
.btn-hero { padding: 18px 45px; background: var(--branco); color: var(--verde-principal); font-weight: 900; text-decoration: none; text-transform: uppercase; border-radius: 4px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: 0.3s;}
.btn-hero:hover { background: var(--fundo); transform: translateY(-3px); }
.seta-slider { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.3); color: white; border: none; font-size: 2em; width: 60px; height: 60px; cursor: pointer; z-index: 10; border-radius: 50%; transition: 0.3s;}
.seta-slider:hover { background: rgba(0,0,0,0.7); }
.seta-esq { left: 20px; } .seta-dir { right: 20px; }

/* SEÇÕES E GRID */
.secao { max-width: 1200px; margin: 80px auto; padding: 0 20px; text-align: center;}
.titulo-secao { font-size: 2.2em; color: var(--verde-principal); text-transform: uppercase; font-weight: 900; margin-bottom: 50px; letter-spacing: 1px;}
.grid-produtos { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; text-align: left;}

.cartao-produto { background: white; border: 1px solid var(--borda); padding: 25px; border-radius: 8px; display: flex; flex-direction: column; position: relative; transition: 0.3s; height: 100%;}
.cartao-produto:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); border-color: var(--verde-principal); transform: translateY(-5px);}
.selo-desconto { position: absolute; top: 10px; right: 10px; background: #e74c3c; color: white; padding: 6px 12px; font-size: 0.85em; font-weight: 900; border-radius: 3px; z-index: 5;}
.cartao-produto img { width: 100%; height: 220px; object-fit: contain; margin-bottom: 20px; transition: 0.3s;}
.cartao-produto:hover img { transform: scale(1.05); }
.cartao-produto h3 { font-size: 1.1em; color: var(--grafite); margin-bottom: 10px; line-height: 1.4; font-weight: 700;}
.preco-antigo { text-decoration: line-through; color: #999; font-size: 0.95em; min-height: 1.2em;}
.preco-atual { color: var(--verde-principal); font-size: 2em; font-weight: 900; margin-bottom: 20px; margin-top: auto;}
.btn-comprar { background: var(--verde-principal); color: white; text-decoration: none; padding: 15px; font-weight: bold; text-transform: uppercase; border-radius: 4px; text-align: center; display: block; border: none; transition: 0.3s;}
.btn-comprar:hover { background: var(--verde-destaque); }

/* OUTRAS SEÇÕES */
.bloco-historia { background: white; padding: 60px; border-radius: 8px; border-top: 5px solid var(--verde-principal); font-size: 1.15em; line-height: 1.8; color: #555; box-shadow: 0 5px 20px rgba(0,0,0,0.05);}
.btn-secundario { background: var(--verde-principal); color: white; padding: 15px 35px; text-decoration: none; font-weight: bold; border-radius: 4px; display: inline-block; margin-top: 30px; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;}
.btn-secundario:hover { background: var(--verde-destaque); box-shadow: 0 4px 10px rgba(0,0,0,0.1);}

.grid-marcas { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.marca-box { background: white; padding: 25px 50px; font-size: 1.8em; font-weight: 900; color: #bbb; border: 2px solid #eee; border-radius: 8px; text-transform: uppercase; letter-spacing: 2px; box-shadow: 0 2px 10px rgba(0,0,0,0.02);}

/* RODAPÉ E FLUTUANTES */
.btn-zap-flutuante { position: fixed; bottom: 30px; right: 30px; background: #25D366; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); z-index: 999; transition: 0.3s; text-decoration: none;}
.btn-zap-flutuante:hover { transform: scale(1.1); background: #1ebe5d; }
.btn-zap-flutuante i { color: white; font-size: 2.2em; }

footer { background: var(--verde-escuro); color: white; padding: 70px 20px 40px; text-align: center; margin-top: 50px;}
footer h3 { font-size: 1.8em; margin-bottom: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px;}
.social-links { display: flex; justify-content: center; gap: 20px; margin: 30px 0; }
.social-links a { color: var(--verde-escuro); background: white; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; text-decoration: none; font-size: 1.4em; transition: 0.3s;}
.social-links a:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); color: var(--verde-destaque);}
.linha-rodape { height: 1px; background: rgba(255,255,255,0.1); margin: 30px auto; max-width: 800px; }

/* --- CARROSSEL INFINITO COM SETAS E LOGOS GRANDES --- */
.secao-marcas {
    max-width: 1200px;
    margin: 60px auto;
    padding: 50px 20px;
    text-align: center;
    background-color: var(--branco);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.secao-marcas h2 {
    color: var(--verde-principal);
    font-size: 2.2em;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 40px;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 70px; /* Dá bastante espaço para os botões nas laterais */
}

.carousel-container {
    overflow: hidden; /* Corta as imagens que saem da caixa */
    width: 100%;
    padding: 20px 0; /* Espaço pro zoom do hover não cortar */
}

.track-marcas {
    display: flex;
    align-items: center;
    /* A transição será ativada pelo JS */
}

.img-marca {
    min-width: 250px; /* LOGOS GRANDES */
    height: 120px;
    object-fit: contain;
    margin: 0 30px; /* Distância entre elas */
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0; /* Impede que o HTML "esprema" a imagem para caber */
}

.img-marca:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15); /* Zoom ao passar o mouse */
}

/* --- BOTÕES DO CARROSSEL --- */
.btn-carousel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--verde-principal);
    border: 2px solid var(--borda);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5em;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-carousel:hover {
    background: var(--verde-principal);
    color: white;
    border-color: var(--verde-principal);
}

#btn-prev { left: 0; }
#btn-next { right: 0; }

@media (max-width: 768px) {
    .img-marca { min-width: 180px; height: 100px; margin: 0 15px; }
    .carousel-wrapper { padding: 0 50px; }
    .btn-carousel { width: 40px; height: 40px; font-size: 1.2em; }
}