/* =========================================
   ESTILOS GERAIS (Extraídos do index.html)
   ========================================= */
:root {
  --accent: #d4af37;
  --muted: #9ca3af;
  --bg: #ffffff;
  --text: #000;
  --card-bg: #f9f9f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Questrial', sans-serif; }
body { background-color: var(--bg); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
li { list-style: none; }

/* NAVBAR */
header {
  background: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo-img { height: 45px; cursor: pointer; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 500; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

/* ÍCONES E BOTÕES */
.nav-icons { display: flex; gap: 20px; align-items: center; }
.nav-icons i { font-size: 18px; cursor: pointer; transition: 0.3s; }
.nav-icons i:hover { color: var(--accent); }
.menu-toggle { display: none; font-size: 24px; cursor: pointer; }

/* HERO SECTION */
.hero { height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; background: #fafafa; padding: 20px; }
.hero-content h1 { font-size: 3rem; margin-bottom: 20px; letter-spacing: -1px; }
.hero-content p { font-size: 1.1rem; color: #666; max-width: 600px; margin: 0 auto 30px; }
.btn-primary { background: #000; color: #fff; padding: 15px 40px; border-radius: 50px; font-weight: bold; text-transform: uppercase; font-size: 13px; display: inline-block; }
.btn-primary:hover { background: var(--accent); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* CAROUSEL */
.section-title { padding: 60px 0 30px; display: flex; justify-content: space-between; align-items: center; }
.section-title h2 { font-size: 1.5rem; text-transform: uppercase; letter-spacing: 2px; }
.carousel-container { position: relative; overflow: hidden; padding: 10px 0; }
.carousel-track { display: flex; gap: 20px; transition: transform 0.5s ease-in-out; }
.product-card { min-width: calc(25% - 15px); background: var(--card-bg); border-radius: 10px; padding: 20px; text-align: center; }
.product-card img { width: 100%; height: 250px; object-fit: contain; margin-bottom: 15px; }
.product-card h3 { font-size: 1rem; margin-bottom: 10px; }
.product-card .price { font-weight: bold; color: var(--accent); }

/* FOOTER */
footer { background: #000; color: #fff; padding: 60px 0 20px; margin-top: 80px; }
.footer-grid { display: grid; grid-cols: 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h4 { margin-bottom: 20px; text-transform: uppercase; font-size: 14px; color: var(--accent); }
.footer-col p, .footer-col li { font-size: 14px; color: #ccc; margin-bottom: 10px; line-height: 1.6; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a { font-size: 20px; color: #fff; }

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .menu-toggle { display: block; }
  .nav-links { position: fixed; top: 75px; left: -100%; background: #fff; width: 100%; flex-direction: column; padding: 40px; transition: 0.4s; border-bottom: 1px solid #eee; }
  .nav-links.active { left: 0; }
  .product-card { min-width: calc(100% - 20px); }
  .hero-content h1 { font-size: 2rem; }
}




/* EFEITO ZOOM NA IMAGEM */
.img-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover img {
    transform: scale(1.18);
}

/* AJUSTE HEADER MOBILE (LINEARIDADE) */
/* Ajuste para telas pequenas (Mobile) */
@media (max-width: 768px) {
    .navbar { 
        display: flex; 
        justify-content: space-between; /* Mantém espaço entre logo e ícones */
        align-items: center; 
        padding: 10px 15px;
        height: 70px; /* Define uma altura fixa para o header */
    }

    /* Logo alinhada à esquerda */
    .logo-img { 
        height: 40px; 
        order: 1; 
        position: static; /* Remove o posicionamento absoluto que estava centralizando */
        transform: none;  /* Remove o deslocamento do transform */
    }

    /* Agrupamento de ícones e menu à direita */
    .nav-icons { 
        order: 2; 
        display: flex; 
        align-items: center; 
        gap: 15px; 
    }

    .menu-toggle { 
        display: block; /* Garante que o ícone do menu apareça */
        order: 3; 
        font-size: 22px; 
        cursor: pointer;
    }

    /* Ajuste da lista de links (Menu lateral) */
    .nav-links {
        position: fixed; 
        top: 70px; /* Alinhado com o fundo do header */
        left: -100%; 
        width: 100%; /* Ocupa a largura toda ao abrir */
        height: calc(100vh - 70px);
        background: #fff; 
        flex-direction: column; 
        padding: 40px 20px;
        transition: 0.4s ease-in-out; 
        z-index: 1000; 
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active { 
        left: 0; /* Faz o menu deslizar para dentro da tela */
    }

    .nav-links a { 
        width: 100%; 
        padding: 15px 0; 
        border-bottom: 1px solid #eee; 
        display: block;
    }
}

/* BADGES DE ARMAZENAMENTO */
.badge-opt {
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    cursor: pointer;
    background: #f8f8f8;
    font-weight: bold;
}
.badge-opt.selected {
    background: #000;
    color: #fff;
    border-color: #000;
}



/* AJUSTE DO MENU MOBILE */
@media (max-width: 768px) {
    .navbar { 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        height: 60px;
        position: relative;
    }

    /* Logo no canto esquerdo */
    .logo-img { 
        height: 40px !important; 
        position: static !important; 
        transform: none !important; 
        order: 1;
    }

    /* Ícones e Botão Hambúrguer no canto direito */
    .nav-icons { 
        order: 2; 
        display: flex; 
        align-items: center; 
        gap: 15px; 
    }

    .menu-toggle { 
        display: block !important; 
        font-size: 22px; 
        cursor: pointer;
    }

    /* Menu Lateral (Aparece ao clicar) */
    .nav-links {
        position: fixed; 
        top: 60px; 
        left: -100%; 
        width: 100%; 
        height: calc(100vh - 60px);
        background: #fff; 
        flex-direction: column; 
        padding: 40px 20px;
        transition: 0.4s ease-in-out; 
        z-index: 9999; 
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        display: flex; /* Garante que os links fiquem em coluna */
    }

    .nav-links.active { 
        left: 0; 
    }

    .nav-links a { 
        width: 100%; 
        padding: 15px 0; 
        border-bottom: 1px solid #eee; 
        color: #333 !important;
    }
}
/* PÁGINA DE CONTATO */
.contact-page { padding: 40px 0; background: #fdfdfd; }
.contact-container { max-width: 700px; margin: 0 auto; }
.contact-form { background: #fff; padding: 40px; border-radius: 15px; border: 1px solid #eee; }
.contact-form h1 { font-size: 2rem; margin-bottom: 10px; text-align: center; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: bold; font-size: 14px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px;
    font-family: 'Questrial', sans-serif; font-size: 16px; transition: 0.3s;
}
.form-group input:focus { border-color: var(--accent); outline: none; }

.btn-send {
    width: 100%; background: #000; color: #fff; padding: 15px;
    border: none; border-radius: 8px; font-weight: bold; cursor: pointer;
    transition: 0.3s; font-size: 16px;
}
.btn-send:hover { background: var(--accent); transform: translateY(-2px); }