:root {
    /* Cor vermelha extraída da logo */
    --primary-color: #b92113; 
    /* Dourado da logo */
    --accent-gold: #f3a712;      
    --light-bg: #f8f9fa;
    --text-dark: #2d3436;
    --text-light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 60px; /* mais espaço lateral */
    background-color: var(--text-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06); /* sombra mais leve */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo { display: flex; align-items: center; }
.logo img { max-height: 50px; width: auto; object-fit: contain; }

.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--primary-color); font-weight: 600; font-size: 15px; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent-gold); }

.btn-orcamento {
    background-color: var(--accent-gold); color: var(--text-light); padding: 10px 25px; text-decoration: none; border-radius: 5px; font-weight: 700; transition: background 0.3s;
}
.btn-orcamento:hover { background-color: #d68910; }

.menu-toggle { display: none; font-size: 24px; color: var(--primary-color); cursor: pointer; }

/* AQUI ESTÁ A ALTERAÇÃO DA IMAGEM E DA PELÍCULA */
.hero {
    height: 100vh;
    background-image: url(boaznorma.jpeg); /* <-- SÓ MUDAR AQUI! */
    background-size: cover; background-position: center; position: relative; display: flex; align-items: center; padding: 0 5%; margin-top: 70px;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    /* Película mais escura (preta transparente) para o texto branco não brigar com a arte vermelha */
    background: rgba(0, 0, 0, 0.5); 
}
/* FIM DA ALTERAÇÃO */

.hero-content { position: relative; z-index: 1; max-width: 650px; color: var(--text-light); }
.hero-content h2 { color: var(--accent-gold); font-size: 1.2rem; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; }
.hero-content h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; margin-bottom: 30px; line-height: 1.6; color: #e0e0e0; }

.btn-primary {
    background-color: var(--accent-gold); color: var(--text-light); padding: 15px 35px; text-decoration: none; border-radius: 5px; font-weight: 700; font-size: 1.1rem; display: inline-block; transition: transform 0.3s, background 0.3s;
}
.btn-primary:hover { background-color: #d68910; transform: translateY(-3px); }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 10px; }
.section-title p { color: #666; font-size: 1.1rem; }

/* SEGMENTOS (Cartões como Links) */
.segments-section { padding: 80px 5%; background-color: var(--text-light); }
.segment-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }

a.segment-card {
    text-decoration: none; color: inherit; display: block;
    background: var(--light-bg); width: 250px; padding: 40px 20px; text-align: center; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; border-bottom: 4px solid transparent; cursor: pointer;
}
a.segment-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-bottom: 4px solid var(--accent-gold); }
.segment-icon { font-size: 50px; color: var(--primary-color); margin-bottom: 20px; }
a.segment-card h3 { margin-bottom: 15px; color: var(--primary-color); }
a.segment-card p { font-size: 0.95rem; color: #666; margin-bottom: 15px; }
.btn-ver-mais { display: inline-block; font-size: 0.9rem; color: var(--accent-gold); font-weight: 700; text-transform: uppercase; }

/* ESTILOS DOS PRODUTOS (Para as páginas secundárias) */
/* 1. Organiza os produtos lado a lado (Grade) */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: start; /* Mantém os cartões alinhados no topo */
}

/* 2. O cartãozinho branco de cada produto */
.catalog-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center; /* Centraliza todo o texto e o botão */
    padding-bottom: 20px;
    overflow: hidden; /* Impede que a imagem vaze das bordas */
}

/* 3. A imagem perfeitamente centralizada e padronizada */
.catalog-item img {
    width: 100%;
    height: 200px; /* Trava a altura para todas ficarem iguais */
    object-fit: contain; /* Faz a foto inteira caber sem achatar ou cortar */
    padding: 15px; /* Dá um espacinho branco em volta da máquina */
    background-color: #ffffff;
    border-bottom: 2px solid #E5A93C; /* Linha dourada abaixo da foto */
    margin: 0 auto;
    display: block;
}/* Tamanho apenas do texto de descrição do produto */
.catalog-item p {
    font-size: 13px; /* Aqui você diminui a letra. Tente 12px ou 13px */
    color: #555555; /* Deixa o texto num cinza mais elegante */
    line-height: 1.4;
    padding: 0 15px;
    margin-bottom: 15px;
}

/* Estilo para os Preços */
.produto-preco { font-size: 1.5rem; font-weight: 700; color: var(--accent-gold); margin-bottom: 15px; padding: 0 15px; }
.produto-preco span { display: block; font-size: 0.8rem; color: #888; font-weight: 400; margin-top: 3px; }

.btn-buy { display: inline-block; background-color: #25D366; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; font-weight: 600; transition: background 0.3s; }
.btn-buy:hover { background-color: #1ebe57; }

/* CONTATO E FOOTER */
.contact-section { padding: 80px 5%; background-color: var(--light-bg); }
.contact-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.contact-card { background: var(--text-light); padding: 40px; border-radius: 15px; width: 100%; max-width: 400px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.location-icon { font-size: 40px; color: var(--accent-gold); margin-bottom: 20px; }
.contact-card h3 { font-size: 1.8rem; color: var(--primary-color); margin-bottom: 10px; }
.contact-card > p { color: #666; margin-bottom: 25px; }
.contact-info p { font-size: 1.2rem; font-weight: 600; color: var(--primary-color); margin-bottom: 10px; }
.btn-whatsapp { display: block; margin-top: 25px; background-color: #25D366; color: white; padding: 15px; text-decoration: none; border-radius: 8px; font-weight: 700; transition: background 0.3s; }
.btn-whatsapp:hover { background-color: #1ebe57; }

footer { background-color: var(--primary-color); color: var(--text-light); padding: 60px 5% 20px; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; }
.footer-info h3 { color: var(--accent-gold); font-size: 1.5rem; margin-bottom: 10px; }
.footer-info p { margin-bottom: 10px; color: #ccc; }
.social-links a { color: var(--text-light); font-size: 24px; margin-right: 15px; transition: color 0.3s; }
.social-links a:hover { color: var(--accent-gold); }
.footer-links h4 { font-size: 1.2rem; margin-bottom: 10px; color: var(--accent-gold); }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: #ccc; text-decoration: none; transition: color 0.3s; }
.footer-links ul li a:hover { color: var(--text-light); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; color: #eee; font-size: 0.9rem; }

.float-wa { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 35px; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 1000; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform 0.3s ease; }
.float-wa:hover { transform: scale(1.1); background-color: #1ebe57; color: #FFF; }

@media (max-width: 768px) {
    .nav-links, .btn-orcamento { display: none; }
    .menu-toggle { display: block; }
    .nav-links.active { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background-color: var(--text-light); padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .hero-content h1 { font-size: 2.2rem; }
    
    /* Ajuste da imagem de fundo para o celular */
    .hero {
        background-size: cover; 
        background-position: center; 
        height: 70vh; 
        background-repeat: no-repeat;
    }
}