:root {
    --primary: #c9ab81; /* Champagne Gold */
    --dark-bg: #0d0e12;
    --surface: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-pure: #ffffff;
    --text-dim: #949494;
    --safe-area: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    background-color: var(--dark-bg);
    color: var(--text-pure);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}

/* CONTAINER CORRETOR (A CURA PARA O "GRUDADO") */
.main-container {
    max-width: var(--safe-area);
    margin: 0 auto;
    padding: 0 5%; /* Padding lateral seguro */
}

/* Background Elements */
.bg-glow {
    position: fixed; top: -10%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201, 171, 129, 0.08) 0%, transparent 70%);
    z-index: -1;
}

.bg-grid-overlay {
    position: fixed; inset: 0;
    background-image: linear-gradient(var(--glass-border) 1px, transparent 1px), 
                      linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle, black, transparent 80%);
    z-index: -1; opacity: 0.3;
}

/* Navbar Premium */
.nav-ultra {
    padding: 30px 0; position: absolute; width: 100%; z-index: 100;
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--glass-border); padding-bottom: 20px; }

.brand { display: flex; align-items: center; gap: 15px; }
.symbol { width: 45px; height: 45px; border: 1px solid var(--primary); display: grid; place-items: center; font-family: 'Cormorant Garamond'; font-size: 1.5rem; }
.brand .text { font-weight: 800; letter-spacing: 2px; font-size: 0.75rem; }
.brand span { color: var(--primary); font-weight: 300; }

.menu-desktop { display: flex; gap: 40px; align-items: center; }
.nav-link { text-decoration: none; color: var(--text-pure); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; transition: 0.3s; }
.nav-link span { color: var(--primary); margin-right: 8px; font-size: 0.6rem; }
.nav-cta-glass { border: 1px solid var(--primary); padding: 12px 25px; color: var(--primary); text-decoration: none; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; transition: 0.4s; }
.nav-cta-glass:hover { background: var(--primary); color: var(--dark-bg); }

/* Hero Section */
.hero-split { padding: 220px 0 120px; min-height: 100vh; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center; }

.eyebrow { color: var(--primary); text-transform: uppercase; font-size: 0.7rem; font-weight: 800; letter-spacing: 4px; display: block; margin-bottom: 20px; }
h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 6vw, 4.8rem); line-height: 0.95; margin-bottom: 35px; }
h1 .italic { font-style: italic; font-weight: 400; color: var(--primary); }
.hero-desc { color: var(--text-dim); font-size: 1.1rem; max-width: 550px; margin-bottom: 50px; border-left: 1px solid var(--primary); padding-left: 20px; }

.stats-row { display: flex; gap: 40px; }
.number { display: block; font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.label { font-size: 0.65rem; text-transform: uppercase; color: var(--text-dim); letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: var(--glass-border); }

/* Hero Visual Stack */
.hero-visual-stack .image-wrapper { position: relative; border: 1px solid var(--glass-border); padding: 15px; background: var(--surface); }
.hero-visual-stack img { width: 100%; height: 500px; object-fit: cover; filter: grayscale(0.6); }
.overlay-card { position: absolute; bottom: -20px; left: -20px; background: var(--primary); color: var(--dark-bg); padding: 25px; width: 220px; font-weight: 800; font-size: 0.75rem; box-shadow: 20px 20px 60px rgba(0,0,0,0.4); }

/* Bento Grid */
.section-padding { padding: 120px 0; }
.bento-header h2 { font-family: 'Cormorant Garamond'; font-size: 3rem; margin-bottom: 50px; }
.bento-header span { color: var(--primary); font-weight: 400; font-style: italic; }

.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 280px); gap: 20px; }
.bento-item.glass { background: var(--surface); border: 1px solid var(--glass-border); padding: 40px; transition: 0.5s; position: relative; }
.bento-item:hover { border-color: var(--primary); background: rgba(201, 171, 129, 0.05); transform: translateY(-5px); }
.bento-item.wide { grid-column: span 2; }
.bento-item.tall { grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; }

.bento-content i { font-size: 1.6rem; color: var(--primary); margin-bottom: 25px; display: block; }
.bento-content h3 { font-size: 1.2rem; margin-bottom: 15px; }
.btn-text { color: var(--primary); text-decoration: none; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; margin-top: 20px; display: inline-block; }

/* Local Section */
.local-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.contact-list { margin: 35px 0; }
.c-info { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; color: var(--text-dim); font-size: 0.9rem; }
.c-info i { color: var(--primary); }
.btn-maps { border-bottom: 1px solid var(--primary); color: var(--primary); text-decoration: none; font-weight: 700; padding-bottom: 5px; }
.map-box { height: 400px; border: 1px solid var(--glass-border); background: var(--surface); padding: 10px; }

/* Footer */
.footer-glass { padding: 60px 0; border-top: 1px solid var(--glass-border); margin-top: 50px; }
.footer-flex { display: flex; justify-content: space-between; align-items: center; }
.copyright { font-size: 0.7rem; color: var(--text-dim); }

/* Responsividade Senior */
@media (max-width: 1024px) {
    .hero-grid, .local-grid { grid-template-columns: 1fr; }
    .hero-visual-stack { display: none; }
    .menu-desktop { display: none; }
    .hero-split { padding-top: 150px; }
}

@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .bento-item.wide, .bento-item.tall { grid-column: span 1; grid-row: span 1; }
    h1 { font-size: 3rem; }
}