:root {
    --creme: #F3EEE6;
    --areia: #D8CBB8;
    --verde-oliva: #55624C;
    --marrom-cafe: #4A3428;
    --preto-suave: #222222;

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--creme);
    color: var(--preto-suave);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Lucide icon defaults */
[data-lucide] {
    width: 1em;
    height: 1em;
    stroke-width: 1.5;
    vertical-align: middle;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, padding 0.4s ease;
}

nav.scrolled {
    background: rgba(243, 238, 230, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
    padding: 1.2rem 4rem;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--marrom-cafe);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--marrom-cafe);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--verde-oliva);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--areia) 0%, var(--creme) 50%, var(--areia) 100%);
    opacity: 0.7;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, transparent 20%, var(--creme) 20%, var(--creme) 80%, transparent 80%, transparent),
                radial-gradient(circle, transparent 20%, var(--creme) 20%, var(--creme) 80%, transparent 80%, transparent) 25px 25px;
    background-size: 50px 50px;
    opacity: 0.03;
    animation: patternMove 60s linear infinite;
}

@keyframes patternMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--verde-oliva);
    margin-bottom: 1.5rem;
    opacity: 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--marrom-cafe);
    margin-bottom: 2rem;
    opacity: 0;
}

.hero-title .highlight {
    font-style: italic;
    color: var(--verde-oliva);
}

.hero-description {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--preto-suave);
    max-width: 650px;
    margin: 0 auto 3rem;
    opacity: 0;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--verde-oliva);
    color: var(--creme);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    cursor: pointer;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--marrom-cafe);
    transition: left 0.4s ease;
    z-index: -1;
}

.hero-cta:hover::before {
    left: 0;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 52, 40, 0.3);
}

/* Menu Preview Section */
.menu-preview {
    padding: 10rem 4rem;
    background: var(--creme);
    position: relative;
}

.section-header {
    max-width: 1400px;
    margin: 0 auto 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: end;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--marrom-cafe);
}

.section-description {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--preto-suave);
}

.dishes-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
}

.dish-card {
    opacity: 0;
    transform: translateY(60px);
    cursor: pointer;
    transition: transform 0.4s ease;
}

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

.dish-image {
    width: 100%;
    aspect-ratio: 4/5;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.dish-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(74, 52, 40, 0.5) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.dish-card:hover .dish-image::before {
    opacity: 0.7;
}

.dish-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--verde-oliva);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.dish-card:hover .dish-image::after {
    opacity: 0.2;
}

.dish-label {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--creme);
    background: var(--verde-oliva);
    padding: 0.5rem 1rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.dish-card:hover .dish-label {
    background: var(--marrom-cafe);
    transform: translateY(-5px);
}

.dish-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--marrom-cafe);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.dish-card:hover .dish-name {
    color: var(--verde-oliva);
}

.dish-details {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--preto-suave);
    margin-bottom: 1.5rem;
}

.dish-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--verde-oliva);
}

/* Experience Section */
.experience {
    padding: 0;
    background: var(--marrom-cafe);
    color: var(--creme);
    position: relative;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.experience-image {
    min-height: 600px;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.experience-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--marrom-cafe) 0%, transparent 100%);
    opacity: 0.6;
}

.experience-content {
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--areia);
    margin-bottom: 2rem;
}

.experience-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.experience-text {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 2;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.feature-item {
    opacity: 0;
    transform: translateX(-30px);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--areia);
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-flex;
}

.feature-icon [data-lucide] {
    width: 2.5rem;
    height: 2.5rem;
    stroke-width: 1.25;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--creme);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.feature-description {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--areia);
}

/* Testimonials Section */
.testimonials {
    padding: 10rem 4rem;
    background: var(--creme);
    position: relative;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: 8rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 15rem;
    color: var(--areia);
    opacity: 0.3;
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border: 1px solid rgba(85, 98, 76, 0.15);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s ease;
    cursor: pointer;
}

.testimonial-card:hover {
    border-color: var(--verde-oliva);
    box-shadow: 0 10px 40px rgba(85, 98, 76, 0.15);
    transform: translateY(-10px);
}

.testimonial-stars {
    color: var(--verde-oliva);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    gap: 0.15rem;
}

.testimonial-stars [data-lucide] {
    width: 1.2rem;
    height: 1.2rem;
    fill: currentColor;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--preto-suave);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--marrom-cafe);
}

.testimonial-role {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--verde-oliva);
    margin-top: 0.3rem;
}

/* Location Section */
.location {
    padding: 10rem 4rem;
    background: var(--verde-oliva);
    color: var(--creme);
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.location-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    margin-bottom: 3rem;
}

.info-group {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateX(-30px);
    padding-left: 2rem;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.info-group:hover {
    border-left-color: var(--creme);
    padding-left: 2.5rem;
}

.info-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--areia);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.info-label [data-lucide] {
    width: 1rem;
    height: 1rem;
}

.info-value {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
}

.info-value a {
    color: var(--creme);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.info-value a:hover {
    border-bottom-color: var(--creme);
}

.location-map {
    height: 550px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background: var(--preto-suave);
    color: var(--creme);
    padding: 5rem 4rem 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(216, 203, 184, 0.2);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--areia);
    max-width: 400px;
}

.footer-section h4 {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--areia);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--creme);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-links a [data-lucide] {
    width: 1rem;
    height: 1rem;
}

.footer-links a:hover {
    color: var(--verde-oliva);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-social a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--areia);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social a [data-lucide] {
    width: 1rem;
    height: 1rem;
}

.footer-social a:hover {
    color: var(--verde-oliva);
    border-color: var(--verde-oliva);
}

.footer-copyright {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--areia);
}

/* Responsive */
@media (max-width: 1024px) {
    nav {
        padding: 1.5rem 2rem;
    }

    nav.scrolled {
        padding: 1rem 2rem;
    }

    .nav-links {
        gap: 2rem;
    }

    .section-header,
    .experience-grid,
    .location-container,
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .menu-preview,
    .testimonials,
    .location {
        padding: 6rem 2rem;
    }

    .experience-content {
        padding: 4rem 2rem;
    }

    .experience-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .dishes-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .experience-features {
        grid-template-columns: 1fr;
    }

    .location-map {
        height: 350px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}
