:root {
    --black: #0a0a0a;
    --gold: #D4AF37;
    --gold-bg: #e5b94c;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Navbar */
/* Navbar com fundo preto sólido para destaque */
/* Navbar com fundo preto sólido (conforme solicitado) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000000 !important; /* Preto puro sem transparência */
    padding: 20px 30px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

/* Branco Vivo para os textos (Fim do efeito apagado) */
.text-vivid {
    color: #ffffff !important;
    opacity: 1 !important;
    /* Sombra estratégica para destacar o branco sobre qualquer imagem */
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.9); 
}

.hero h1 {
    font-size: 3rem; /* Tamanho maior para impacto */
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.subtitle {
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 50px;
}

/* Ajuste da Imagem de Fundo para o texto brilhar */
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Escurecemos um pouco mais o fundo para o branco saltar */
    filter: brightness(45%); 
}

.btn-main-gold {
    display: inline-block; 
    background-color: transparent;
    color: #D4AF37 !important;
    border: 2px solid #D4AF37;
    padding: 20px 45px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 3px;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.btn-main-gold:hover {
    background-color: #D4AF37;
    color: #000 !important;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%); 
}

.logo {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 0.9rem;
}

.menu-icon span {
    display: block; width: 25px; height: 1px;
    background: var(--gold); margin-bottom: 6px;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh; /* ocupa toda a tela */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    z-index: 1; /* atrás do conteúdo */
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%); /* escurece a imagem para o texto brilhar */
}

.hero-content {
    position: relative;
    z-index: 2; /* acima da imagem */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    color: #ffffff; /* garante branco para os textos */
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0px 4px 10px rgba(0,0,0,0.9); /* destaque sobre a imagem */
}

.hero-content .subtitle {
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 50px;
    color: #ffffff;
    text-shadow: 0px 2px 8px rgba(0,0,0,0.7);
}

.btn-main-gold {
    display: inline-block;
    background-color: transparent;
    color: #D4AF37 !important;
    border: 2px solid #D4AF37;
    padding: 20px 45px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 3px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    cursor: pointer;
    pointer-events: auto;
}

.btn-main-gold:hover {
    background-color: #D4AF37;
    color: #000 !important;
    box-shadow: 0 0 25px rgba(212,175,55,0.5);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    margin-top: 40px;
    z-index: 2;
}

.arrow-down {
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: pulse 2s infinite;
    margin: 0 auto;
}

@keyframes pulse {
    0% { transform: rotate(45deg) translate(0,0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: rotate(45deg) translate(10px,10px); opacity: 0; }
}


/* Garante que o container da seção de destaque tenha um aspecto premium */
.featured-month {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #0a0a0a, #151515);
}

.gold-serif { color: var(--gold); font-style: italic; }

.subtitle {
    letter-spacing: 3px; font-size: 0.7rem; color: #ccc;
    margin-bottom: 40px;
}

.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 15px 35px;
    text-decoration: none;
    font-size: 0.8rem; letter-spacing: 2px;
}

/* Container da Imagem com Borda de Luxo */
.img-container {
    width: 100%;
    max-width: 350px; /* Tamanho ideal para mobile */
    aspect-ratio: 1 / 1; /* Força ser um quadrado perfeito */
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
    
    /* A borda dourada fina e elegante */
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 15px; /* Espaço entre a borda e a imagem */
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    
    /* Sombra suave para dar profundidade */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 
                inset 0 0 15px rgba(212, 175, 55, 0.05);
    
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Garante que o produto apareça inteiro sem cortar */
    transition: transform 0.8s ease;
}

/* Efeito de brilho ao passar o mouse (ou tocar no mobile) */
.img-container:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.img-container:hover img {
    transform: scale(1.08);
}

/* Tipografia das Descrições */
.product-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #eee;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

.gold-highlight {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.highlight-bold {
    font-weight: 700;
    letter-spacing: 2px;
}

/* Ajuste na seção para dar respiro (o segredo do luxo) */
.category-section {
    padding: 100px 20px; /* Aumentei o espaço entre as seções */
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Layout Mobile First (Padrão) */
.categories-wrapper {
    display: flex;
    flex-direction: column; /* Um abaixo do outro no celular */
    width: 100%;
}

.category-section {
    flex: 1; /* Faz cada seção ocupar o mesmo espaço */
    padding: 80px 20px;
}

/* --- Ajuste para Computador (Desktop) --- */
@media (min-width: 1024px) {
    .categories-wrapper {
        flex-direction: row; /* Coloca um ao lado do outro */
        justify-content: center;
        align-items: flex-start;
        max-width: 1200px;
        margin: 0 auto; /* Centraliza o bloco todo na tela do PC */
        gap: 40px; /* Espaço entre as duas colunas */
    }

    .category-section {
        padding: 100px 40px;
        border-bottom: none; /* Tira a linha de baixo no PC pois estão lado a lado */
    }
}

/* Categorias e Zoom */
.category-section { padding: 80px 20px; text-align: center; }

.section-title { font-family: 'Playfair Display', serif; font-size: 2rem; letter-spacing: 8px; }

.gold-line-small {
    width: 60px; height: 1px; background: var(--gold);
    margin: 20px auto 40px;
}

.img-zoom { overflow: hidden; width: 100%; max-width: 400px; margin: 0 auto; }
.img-zoom img { 
    width: 100%; transition: transform 0.8s ease; 
}
.img-zoom:hover img { transform: scale(1.1); }

/* Produto Destaque */
.featured-month { background: #111; padding: 60px 20px; text-align: center; }

.tag-outline {
    border: 1px solid var(--gold);
    display: inline-block; padding: 5px 15px;
    color: var(--gold); font-size: 0.7rem; letter-spacing: 3px;
}

.btn-full-gold {
    background: var(--gold); color: var(--black);
    display: block; padding: 20px; font-weight: bold;
    text-decoration: none; letter-spacing: 2px;
}

/* WhatsApp */
.whatsapp-btn {
    position: fixed; bottom: 20px; right: 20px;
    background: var(--gold); width: 60px; height: 60px;
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    z-index: 1000; box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.whatsapp-btn img { width: 30px; }

/* Seção Nossa Essência - Mobile First */
.our-essence {
    padding: 120px 30px;
    background: linear-gradient(to bottom, #0a0a0a, #000);
    text-align: left; /* Alinhamento à esquerda no mobile traz mais sofisticação */
}

.essence-header {
    margin-bottom: 80px;
    text-align: center;
}

.section-title-white {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    letter-spacing: 5px;
    color: var(--white);
}

/* Grid de Itens */
.essence-grid {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.essence-item {
    position: relative;
    padding-left: 20px;
    border-left: 1px solid rgba(212, 175, 55, 0.2); /* Linha lateral discreta */
    transition: all 0.5s ease;
}

.essence-num-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.essence-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold); /* Número vazado - Ultra Luxo */
    opacity: 0.5;
    line-height: 1;
}

.number-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.essence-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.essence-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #bbb;
    font-weight: 300;
}

/* Efeito de destaque ao rolar (pode ser ativado via JS ou hover) */
.essence-item:hover {
    border-left: 1px solid var(--gold);
    padding-left: 30px;
}

.essence-item:hover .essence-number {
    opacity: 1;
    color: var(--gold);
    -webkit-text-stroke: 0px;
}

.minimal-footer {
    padding: 80px 20px 40px; /* Um pouco mais de espaço embaixo */
    text-align: center;
    background: #000;
}

/* Informações em Branco */
.footer-info p {
    color: #ffffff; 
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 300;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.8rem;
    color: #888; /* Um cinza elegante para não brigar com o branco principal */
}

/* Estilo do Desenvolvedor */
.developer-credit {
    margin-top: 40px;
    font-size: 0.7rem;
    color: #666;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.dev-link {
    color: #007bff; /* Azul clássico de link/tecnologia */
    text-decoration: underline; /* Linha embaixo conforme pedido */
    font-weight: 600;
    transition: color 0.3s ease;
}

.dev-link:hover {
    color: #00c3ff; /* Um azul mais claro no hover para o efeito 'uau' */
    text-decoration: none; /* Tira a linha quando passa o mouse pra dar um efeito legal */
}

@media (min-width: 1024px) {
    .essence-grid {
        flex-direction: row; /* Alinha os 3 itens lado a lado */
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 40px;
    }

    .essence-item {
        flex: 1; /* Garante que os 3 tenham a mesma largura */
        border-left: none; /* Remove a linha lateral no PC */
        border-top: 1px solid rgba(212, 175, 55, 0.2); /* Coloca a linha no topo */
        padding-left: 0;
        padding-top: 30px;
        text-align: center; /* Centraliza o texto para um visual mais 'editorial' no PC */
    }

    .essence-num-wrapper {
        justify-content: center; /* Centraliza os números no PC */
    }

    /* Ajuste do efeito de hover para o PC */
    .essence-item:hover {
        border-top: 1px solid var(--gold);
        padding-top: 40px;
        padding-left: 0;
        transform: translateY(-10px); /* Leve subida no PC para dinamismo */
    }
}