/* Reset Básico */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #D4AF37;
    --gold-dark: #B59020;
    --rose: #E6A8D7;
    --cream: #FFFDD0;
    --dark: #2C2C2C;
    --light: #FAFAFA;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #F4EDDD;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- CONFIGURAÇÃO DAS IMAGENS DO LOGO --- */

/* Container que segura as duas imagens */
.brand-split {
    display: flex;
    align-items: center; /* Alinha o centro vertical do ícone com o centro do texto */
    gap: 15px; /* Espaço entre a borboleta e o texto */
    text-decoration: none;
    transition: opacity 0.3s;
}

.brand-split:hover {
    opacity: 0.8; /* Leve efeito ao passar o mouse sobre a marca */
}

/* Imagem 1: O Ícone (Borboleta) */
.img-icon {
    height: 75px; /* Altura imponente para um visual de luxo */
    width: auto; /* Mantém a proporção correta */
    display: block; /* Remove espaços indesejados abaixo da imagem */
}

/* Imagem 2: O Texto */
.img-text {
    /* Definimos a largura para controlar o tamanho do texto. 
       A altura se ajusta automaticamente. */
    width: 210px; 
    height: auto;
    display: block;
    /* DICA DE OURO: Se o texto parecer um pouco mais "alto" ou "baixo" 
       que o centro da borboleta, ajuste este valor de margem superior: */
    margin-top: 5px; 
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem; /* Adicionado para aumentar o texto (era padrão 1rem) */
    transition: color 0.3s;
    /* text-transform: uppercase; /* Opcional: deixa o menu mais moderno */
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: var(--gold);
}

.btn-cta {
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    /* Imagem de fundo */
    /*background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('../img/hero-bg.png'); */
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(253, 251, 245, 0.7)), url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.gold-text {
    color: var(--gold);
    font-style: italic;
}

.dark-text {
    color: var(--dark);
    font-weight: bold;
}

.btn-hero {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background-color: var(--gold);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn-hero:hover {
    transform: scale(1.05);
    background-color: var(--gold-dark);
}

/* Sections */
section {
    padding: 80px 0;
}

.about {
    text-align: center;
    background-color: #fff;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--gold-dark);
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* --- Estilo das Novas Imagens dos Produtos --- */
.card-img {
    width: 100%;
    height: auto;
    border-radius: 4px;       /* Cantos levemente arredondados */
    margin-bottom: 20px;      /* Espaço entre a foto e o título */
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* Sombra suave para dar destaque */
    transition: transform 0.3s ease;
}

/* Efeito de zoom leve na foto quando passa o mouse no card */
.card:hover .card-img {
    transform: scale(1.02);
}

.card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    text-align: center;
    border-top: 5px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 15px;
    color: var(--gold-dark);
}

.card ul {
    list-style: none;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

/* Gallery */
.gallery {
    background-color: var(--cream);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    background: #fff;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.gallery-item span {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--gold-dark);
}

/* Contact */
.contact {
    text-align: center;
    background: #fff;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form select, .contact-form textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

.btn-submit {
    padding: 15px;
    background-color: var(--dark);
    color: var(--gold);
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: #000;
}

footer {
    background-color: var(--dark);
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .nav-menu { display: none; } /* Simplificação para mobile */
}