:root {
    --bg-color: #F9F7F2; /* Creme suave */
    --text-color: #2C2C2C;
    --accent-color: #A67B5B; /* Marrom Café */
    --secondary-color: #E6DCCD;
    --white: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Navegação */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    background: rgba(249, 247, 242, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    
    text-decoration: none;
    
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--accent-color); }

.btn-destaque {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--text-color);
    border-radius: 50px;
}

.btn-destaque:hover {
    background-color: var(--text-color);
    color: var(--white) !important;
}

/* Mobile Menu Icon */
.hamburger { display: none; cursor: pointer; }
.hamburger span {
    display: block; width: 25px; height: 3px;
    background: var(--text-color); margin: 5px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 0 20px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover { background-color: #8a6246; }

/* Seções Gerais */
section { padding: 5rem 10%; }
.container { max-width: 1200px; margin: 0 auto; }

/* Sobre */
.sobre .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sobre-img img {
    width: 100%;
    border-radius: 10px;
}

.sobre-texto h2, .menu h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Menu Grid */
.menu { background-color: var(--secondary-color); }
.grid-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card:hover { transform: translateY(-5px); }

.card h3 { margin-bottom: 0.5rem; color: var(--accent-color); }
.preco { display: block; margin-top: 1rem; font-weight: 700; font-size: 1.2rem; }

/* Footer */
footer {
    background-color: var(--text-color);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
}

.socials { margin: 1.5rem 0; }
.socials a { color: var(--white); margin: 0 10px; text-decoration: none; }
.copyright { font-size: 0.8rem; opacity: 0.7; }

/* Responsivo (Celular) */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: var(--bg-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
    }
    
    .nav-links li { opacity: 0; }
    .hamburger { display: block; }
    
    .nav-active { transform: translateX(0%); }
    
    @keyframes navLinkFade {
        from { opacity: 0; transform: translateX(50px); }
        to { opacity: 1; transform: translateX(0px); }
    }
    
    .hero h1 { font-size: 2.5rem; }
    .sobre .container { grid-template-columns: 1fr; }
}
html {
    scroll-behavior: smooth;
    
    scroll-padding-top: 100px; 
}