/* CONFIGURAÇÃO GERAL */
html {
    scroll-behavior: smooth;
}

:root {
    --cor-fundo: #fdfaf6;
    --cor-texto: #4a3728;
    --cor-primaria: #d35400; /* Cor do mel/logo */
    --cor-secundaria: #5d4037; /* Marrom da logo */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER FIXO */
header {
    background: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-logo span { color: var(--cor-primaria); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--cor-texto);
    font-weight: 600;
}

/* TELA INICIAL (HERO) */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f7efe6; /* Cor bege que combina com a logo */
}

.main-logo {
    max-width: 400px;
    width: 80%;
    margin-bottom: 20px;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-style: italic;
}

.btn-explore {
    padding: 15px 40px;
    background-color: var(--cor-secundaria);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-explore:hover {
    background-color: var(--cor-primaria);
}

/* CATÁLOGO */
#catalogo {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--cor-primaria);
    margin: 10px auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 15px;
    border: 1px solid #eee;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* ÁREA DA IMAGEM NO PRODUTO */
.card-img-container {
    height: 200px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-real {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a foto preencher o espaço sem distorcer */
}

.placeholder-img {
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: bold;
}

.card-body {
    padding: 20px;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
    margin: 10px 0;
}

.btn-add {
    width: 100%;
    padding: 12px;
    background-color: var(--cor-primaria);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

footer {
    padding: 40px;
    background: var(--cor-secundaria);
    color: white;
    text-align: center;
}