/* Reset básico e fontes */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;700&display=swap'); /* Exemplo */

:root {
    --dark-green: #1A4D2E; /* Ou outro tom de verde escuro */
    --gold: #E4C580; /* Um dourado mais suave */
    --light-text: #f8f8f8;
    --dark-text: #333333;
    --background-light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-text);
    background-color: var(--background-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-green);
}

a {
    text-decoration: none;
    color: inherit; /* Herda cor do pai por padrão */
}

/* Header e Navegação */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark-green);
    color: var(--light-text);
    padding: 1rem 2rem;
}

.navbar .logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold); /* Dourado no logo */
}

.navbar .nav-links {
    list-style: none;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 1.5rem;
}

.navbar .nav-links a {
    color: var(--light-text);
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: var(--gold);
}

.mobile-menu-icon {
    display: none; /* Escondido em telas maiores */
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: #f4f4f4; /* Um fundo suave */
    text-align: center;
    padding: 4rem 2rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/hero-background.jpg'); /* Adicionar uma imagem de fundo sutil se desejar */
    background-size: cover;
    background-position: center;
    color: var(--light-text); /* Texto claro sobre fundo escuro */
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--light-text); /* H1 claro no hero */
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--gold);
    color: var(--dark-green);
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: darken(var(--gold), 10%); /* Escurece um pouco no hover */
}


/* Seção de Categorias em Destaque */
.featured-categories {
    padding: 3rem 2rem;
    text-align: center;
}

.featured-categories h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Layout responsivo */
    gap: 1.5rem;
}

.category-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    max-width: 100%;
    height: 200px; /* Altura fixa para as imagens das categorias */
    object-fit: cover; /* Garante que a imagem cubra a área sem distorcer */
}

.category-card h3 {
    padding: 1rem;
    font-size: 1.2rem;
    margin: 0;
}
.category-card h3 a {
     color: var(--dark-green);
}

.category-card h3 a:hover {
     color: var(--gold);
}


/* Footer */
footer {
    background-color: var(--dark-green);
    color: var(--light-text);
    text-align: center;
    padding: 1.5rem 2rem;
    margin-top: 3rem; /* Espaço antes do rodapé */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Para telas menores */
    gap: 1rem;
}

.social-links a {
    color: var(--light-text);
    margin-left: 1rem;
    font-size: 1.2rem; /* Ajuste o tamanho dos ícones/texto */
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
}


/* Media Queries para Responsividade (Exemplo Básico) */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none; /* Esconde links no desktop */
        /* Lógica para exibir menu mobile será adicionada no JS */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Altura do navbar */
        left: 0;
        background-color: var(--dark-green);
        padding: 1rem 0;
    }

    .navbar .nav-links.active {
         display: flex; /* Mostra quando ativo */
    }


    .navbar .nav-links li {
        margin: 0.5rem 0;
        text-align: center;
    }

    .mobile-menu-icon {
        display: block; /* Mostra ícone do menu */
    }

     .footer-content {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Adicionar estilos para sobre.html, catalogo.html, contato.html conforme necessário */

/* Estilos para o Catálogo (catalogo.html) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    padding-bottom: 1rem;
    transition: transform 0.3s ease;
}

.product-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.product-card img {
    max-width: 100%;
    height: 250px; /* Altura fixa para imagens de produto */
    object-fit: cover;
}

.product-card h3 { /* Nome do produto */
    font-family: 'Lato', sans-serif; /* Usar fonte mais legível */
    font-size: 1.1rem;
    margin: 0.8rem 0 0.4rem 0;
    color: var(--dark-text);
}

.product-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.product-card .description {
     font-size: 0.9rem;
     color: #666;
     padding: 0 1rem;
     margin-bottom: 0.8rem; /* Espaço antes do botão */
     /* Limitar altura ou número de linhas se necessário */
}

.product-card .view-button {
    display: inline-block;
    background-color: var(--dark-green);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-top: auto; /* Empurra botão para baixo se usar flexbox no card */
    transition: background-color 0.3s ease;
}

.product-card .view-button:hover {
     background-color: var(--gold);
     color: var(--dark-green);
}

/* Estilos para filtros (opcional) */
.filter-section {
    padding: 1rem 2rem;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}
.filter-section label {
    margin-right: 0.5rem;
    font-weight: bold;
}
.filter-section select {
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
}