:root {
    --creme-fundo: #F2EDE4;   
    --verde-musgo: #2D3A2D;   
    --dourado-luxo: #B8860B;  
    --branco-puro: #FFFFFF;
}

body {
    background-color: var(--creme-fundo);
    color: var(--verde-musgo);
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
}

header { 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
    padding: 20px; 
    text-align: center; 
    position: sticky; 
    top: 0; 
    background: var(--creme-fundo); 
    z-index: 100; 
}

.logo { 
    font-size: 24px; 
    font-weight: bold; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
}

nav { margin-top: 15px; }

nav a { 
    margin: 0 15px; 
    text-decoration: none; 
    color: var(--verde-musgo); 
    font-size: 13px; 
    text-transform: uppercase;
    transition: 0.3s;
}

nav a:hover {
    color: var(--dourado-luxo);
}

.hero {
    background: #cccccc url('./banner.jpg') no-repeat center center;
    background-size: cover !important;
    min-height: 100vh; /* Faz o banner ocupar a tela inteira, fica bem luxuoso */
    width: 100%;
}

.frases-container {
    height: 120px;
    background-color: var(--branco-puro); 
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.frase-efeito {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--verde-musgo);
    transition: all 0.5s ease;
    text-align: center;
}

.container { 
    max-width: 1200px; 
    margin: 40px auto; 
    padding: 0 20px; 
}

.section-title {
    text-align: center; 
    margin-bottom: 40px; 
    font-weight: 300;
}

.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
}

.product-card { 
    text-align: center; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    background: var(--branco-puro);
    padding: 20px;
    border-radius: 8px; /* Bordas mais suaves */
}

.product-card:hover { 
    transform: translateY(-10px); /* Ele "sobe" 10 pixels */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); /* Cria uma sombra elegante embaixo */
}

.product-card img { 
    width: 100%; 
    height: auto; 
    margin-bottom: 15px; 
    border-radius: 4px; /* Arredonda levemente a foto do perfume */
}

.btn-buy { 
    display: inline-block;
    background: var(--verde-musgo); 
    color: var(--creme-fundo); 
    padding: 10px 25px; 
    text-decoration: none; 
    font-size: 12px; 
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-buy:hover {
    background: var(--dourado-luxo);
}

@media (max-width: 768px) { 
    .hero { min-height: 300px; } 
}

.whatsapp-fixo {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-fixo img {
    width: 35px;
    height: 35px;
}

.whatsapp-fixo:hover {
    transform: scale(1.1); /* Ele aumenta um pouquinho no mouseover */
    background-color: #20ba5a;
}

@media (max-width: 768px) { 
    .hero { 
        min-height: 60vh; /* Aumenta a altura no celular para a foto aparecer mais */
        background-position: center center !important; /* Garante que o meio da foto seja o foco */
    } 

    .frase-efeito {
        font-size: 1.1rem; /* Diminui um pouco a letra para não quebrar em mil linhas */
        padding: 0 15px;
    }
}

/* Layout da Página de Produto */
.produto-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.produto-info h1 {
    font-size: 2.5rem;
    color: var(--verde-musgo);
    margin-bottom: 10px;
}

.preco-destaque {
    font-size: 1.8rem;
    color: var(--dourado-luxo);
    font-weight: bold;
    margin-bottom: 20px;
}

.descricao-olfativa {
    background: rgba(255,255,255,0.5);
    padding: 20px;
    border-left: 4px solid var(--verde-musgo);
    margin: 20px 0;
}

@media (max-width: 768px) {
    .produto-wrapper { grid-template-columns: 1fr; }
}

/* Ajuste para as fotos da vitrine ficarem alinhadas */
.product-card img {
    height: 400px; 
    object-fit: cover;
    width: 100%;
    border-radius: 8px 8px 0 0; /* Arredonda só os cantos de cima */
}

/* ESTILO DO RODAPÉ */
.footer-natureza {
    background-color: #2c2c2c; 
    color: #ffffff;
    padding: 40px 20px 20px;
    margin-top: 50px;
    font-family: sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links a, .footer-social a {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 14px;
    color: #888;
}

/* AJUSTE FINAL PARA CELULAR */
@media screen and (max-width: 480px) {
    header {
        padding: 5px !important;
    }
    
    .logo {
        font-size: 1.2rem !important;
        text-align: center !important;
    }

    nav {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 5px !important;
    }

    nav a {
        font-size: 11px !important; /* Força os links a ficarem pequenos para caberem */
        padding: 5px !important;
    }

    .hero {
        height: 300px !important; /* Define uma altura fixa que sabemos que cabe */
        background-size: cover !important;
        background-position: center !important;
    }

    .hero-content h1 {
        font-size: 1.5rem !important;
    }
}