/* Importar fonte profissional do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    font-weight: 400;
    overflow-x: hidden;
}

/* Header */
.header {
    background: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f5f5f5;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.nav-menu a:hover {
    color: #d4af37; /* Dourado/Bronze para hover */
}

.cart-icon {
    background: #d4af37; /* Dourado/Bronze */
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.cart-icon:hover {
    background: #b8941f; /* Dourado/Bronze mais escuro */
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%); /* Tons de cinza claro */
    color: #1a1a1a;
    text-align: center;
    padding: 150px 2rem 100px;
    margin-top: 80px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    background: #d4af37; /* Dourado/Bronze */
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    background: #b8941f; /* Dourado/Bronze mais escuro */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Seção de Produtos - Ajustes para remover aparência de link */
.produtos-section {
    padding: 100px 2rem;
    background: #fafafa; /* Cinza muito claro */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.section-title p {
    font-size: 1.1rem;
    color: #6a6a6a;
    font-weight: 400;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.produto-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none; /* Sem underline no card inteiro */
    color: inherit; /* Herda cor neutra */
    display: block; /* Para o card se comportar como bloco clicável */
}

.produto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    text-decoration: none; /* Garante sem underline no hover */
}

.produto-card * {
    text-decoration: none !important; /* Força remoção de underline em todos os filhos */
    color: inherit !important; /* Mantém cor neutra, sem azul de link */
}

.produto-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block; /* Remove qualquer inline */
}

.produto-card:hover .produto-image {
    transform: scale(1.05);
}

.produto-info {
    padding: 2rem;
    text-decoration: none; /* Explícito para info */
    color: inherit;
}

.produto-nome {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    text-decoration: none; /* Sem link */
    pointer-events: none; /* Impede interação direta nos textos, foca no card */
}

.produto-descricao {
    color: #6a6a6a;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    text-decoration: none;
    pointer-events: none;
}

.produto-preco {
    font-size: 1.75rem;
    font-weight: 600;
    color: #d4af37; /* Dourado/Bronze */
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    text-decoration: none;
    pointer-events: none;
}

.produto-parcelamento {
    font-size: 0.9rem;
    color: #8a8a8a;
    margin-bottom: 2rem;
    text-decoration: none;
    pointer-events: none;
}

.btn-carrinho {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    letter-spacing: -0.01em;
    background: #d4af37; /* Cor padrão para o botão de carrinho */
    color: white;
    pointer-events: auto; /* Permite clique no botão */
}

.btn-carrinho:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background: #b8941f; /* Dourado/Bronze mais escuro */
}

/* Cores para os botões de carrinho (se ainda quiser variações, mas o padrão é mais clean) */
.btn-carrinho-1 { background: #d4af37; color: white; }
.btn-carrinho-2 { background: #4a4a4a; color: white; } /* Cinza escuro */
.btn-carrinho-3 { background: #8a8a8a; color: white; } /* Cinza médio */
.btn-carrinho-4 { background: #1a1a1a; color: white; } /* Preto */

/* Seção Sobre */
.sobre-section {
    padding: 100px 2rem;
    background: white;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* Gap menor e mais equilibrado (era 5rem, que deixava feio) */
    align-items: start; /* Alinha topo em vez de center, pra texto não pular */
    max-width: 100%;
}

.sobre-text {
    padding-right: 1rem; /* Espaçamento interno pro texto "respirar" */
}

.sobre-text h2 {
    font-size: 2.5rem; /* Um pouco menor pra harmonizar */
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.1;
}

.sobre-text p {
    margin-bottom: 1.25rem; /* Espaçamento menor entre parágrafos pra ficar mais clean */
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 1rem;
    text-align: justify; /* Justifica o texto pra preencher bonito no desktop também */
}

.sobre-image {
    text-align: center;
}

.logo-vm {
    width: 20%; /* Auto-adaptável: 20% da largura da coluna do grid (cresce com a tela) */
    max-width: 140px; /* Limite máximo pra não ficar enorme em telas grandes */
    min-width: 90px; /* Limite mínimo pra não ficar pequena demais em telas menores */
    height: auto; /* Mantém proporção sem distorcer */
    display: block;
    margin: 0 auto; /* Centraliza perfeitamente */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); /* Sombra sutil pra ficar mais bonito */
}

/* Seção Contato */
.contato-section {
    padding: 100px 2rem;
    background: #fafafa; /* Cinza muito claro */
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contato-info h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.contato-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contato-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contato-item a {
    color: #d4af37; /* Dourado/Bronze */
    text-decoration: none;
    font-weight: 500;
}

.como-comprar h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.passo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.passo-numero {
    background: #d4af37; /* Dourado/Bronze */
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-carrinho-ver {
    background: #1a1a1a; /* Preto */
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    margin-top: 2rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-carrinho-ver:hover {
    background: #333333; /* Cinza escuro */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: #1a1a1a; /* Preto */
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: #d4af37; /* Dourado/Bronze */
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: #b0b0b0;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #d4af37; /* Dourado/Bronze */
    transform: translateY(-2px);
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 64px;
    height: 64px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Página Individual do Produto - Responsividade Aprimorada e Clean */
.produto-individual {
    padding: 120px 2rem 80px; /* Padding padrão desktop */
    background: white;
    min-height: 100vh; /* Garante altura mínima */
}

.produto-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Lado a lado em desktop */
    gap: 4rem; /* Espaçamento arejado */
    align-items: start;
}

.produto-imagem-container {
    position: sticky;
    top: 120px; /* Sticky em desktop */
    padding: 2rem;
    background: #f9f9f9; /* Fundo leve */
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    text-align: center;
}

.produto-imagem-grande {
    width: 100%;
    max-width: 500px; /* Limite em desktop */
    height: auto;
    object-fit: contain; /* Proporção sem distorcer */
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.produto-imagem-grande:hover {
    transform: scale(1.05); 
}

    
/* Media Query para Mobile (telas até 768px) */
@media screen and (max-width: 768px) {
    /* Reforço Geral: Sem overflow em todo o mobile */
    body {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch; /* Smooth scroll no iOS */
    }
    
    * {
        max-width: 100%; /* Nada vaza além da tela */
        box-sizing: border-box;
    }
    
    .container {
        padding: 0 0.5rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Header e Navegação - Ajustado para não cobrir topo e sem overflow */
    /* Header mobile simplificado */
.header {
    padding: 0.5rem 1rem; /* Header mais compacto */
}

.nav-container {
    flex-direction: row; /* Logo e carrinho lado a lado */
    justify-content: space-between; /* Logo à esquerda, carrinho à direita */
    align-items: center;
    padding: 0 1rem; /* Espaço lateral menor */
}

.logo {
    font-size: 1.2rem; /* Ajusta tamanho do texto do logo */
    margin: 0;
    padding: 0;
}

.nav-menu {
    display: none; /* Esconde todos os links do menu */
}

.cart-icon {
    padding: 0.5rem 1rem; /* Ajusta tamanho do botão do carrinho */
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
    
    /* Hero: Reduz fontes e padding para caber no mobile (versão limpa, sem duplicatas) */
    .hero {
        padding: 80px 0.75rem 50px; /* Padding top menor pra não cobrir, laterais apertadas */
        margin-top: 0; /* Remove margem extra - header fixo cuida */
        text-align: center;
        overflow-x: hidden; /* Hidden na hero pra elementos não vazarem */
    }
    
    .hero .container {
        padding: 0 0.25rem; /* Container interno mais apertado */
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 1.8rem; /* Menor pra caber sem scroll extra */
        margin-bottom: 0.75rem;
        line-height: 1.2;
        padding: 0 0.25rem; /* Previne overflow no título longo */
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 0.25rem;
        overflow-wrap: break-word; /* Quebra palavras longas sem vazar */
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    /* Seção Produtos: Grid de 1 coluna, paddings reduzidos */
    .produtos-section {
        padding: 60px 1rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr; /* Uma coluna no mobile */
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .produto-info {
        padding: 1.5rem;
    }
    
    .produto-nome {
        font-size: 1.2rem;
    }
    
    .produto-preco {
        font-size: 1.5rem;
    }
    
    /* Seção Sobre: Stack vertical, texto identado e logo menor */
    .sobre-section {
        padding: 60px 1rem;
    }
    
    .sobre-content {
        grid-template-columns: 1fr; /* Stack texto e imagem */
        gap: 2rem;
        text-align: left; /* Alinha texto à esquerda */
    }
    
    .sobre-text {
        padding: 0 0.5rem; /* Padding para preencher e evitar vazio */
    }
    
    .sobre-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .sobre-text p {
        margin-bottom: 1.5rem;
        font-size: 1rem;
        line-height: 1.6;
        text-indent: 1.5em; /* Indentação clássica no início de cada parágrafo (melhor unidade) */
        text-align: justify; /* Justifica pra preencher bonito */
    }
    
    .logo-vm {
        width: 80px; /* Reduz ainda mais no mobile */
        height: auto;
        max-width: 100%;
    }
    
    /* Seção Contato: Stack vertical, itens flexíveis */
    .contato-section {
        padding: 60px 1rem;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contato-info h3,
    .como-comprar h3 {
        font-size: 1.5rem;
        text-align: left;
    }
    
    .contato-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .contato-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .passo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .passo-numero {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .btn-carrinho-ver {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
    
    /* Footer: Stack colunas */
    .footer {
        padding: 2rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* WhatsApp Flutuante: Ajusta posição no mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}