:root {
    --primary: #cda274;
    --primary-dark: #a37c54;
    --bg-dark: #121212;
    --bg-lighter: #1a1a1a;
    --text-main: #f5f5f5;
    --text-muted: #888888;
    --border-color: #2a2a2a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg-dark); color: var(--text-main); font-family: 'Inter', sans-serif; overflow-x: hidden; scroll-behavior: smooth; }

h1, h2, h3, h4, .logo, .vintage-badge { font-family: 'Playfair Display', serif; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-up { animation: fadeInUp 1s ease forwards; opacity: 0; }
@keyframes pulseGreen { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
.pulse-green { animation: pulseGreen 2s infinite; }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 25px 5%; background: rgba(18, 18, 18, 0.95); position: fixed; width: 100%; top: 0; z-index: 100; border-bottom: 1px solid var(--border-color); backdrop-filter: blur(5px); }
.logo { font-size: 1.6rem; font-weight: 700; color: #fff; letter-spacing: 1px; }
.logo span { font-style: italic; color: var(--primary); font-weight: 400; }
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a:not(.btn-outline) { color: var(--text-main); text-decoration: none; font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s; }
.nav-links a:not(.btn-outline):hover { color: var(--primary); }

/* Buttons */
.btn-primary { background: var(--primary); color: #000; padding: 14px 32px; border: none; cursor: pointer; font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; transition: all 0.4s ease; display: inline-block; font-family: 'Inter', sans-serif; }
.btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.btn-outline { background: transparent; color: var(--primary); padding: 12px 28px; border: 1px solid var(--primary); cursor: pointer; font-weight: 500; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; text-decoration: none; }
.btn-outline:hover { background: var(--primary); color: #000; }
.large { padding: 18px 45px; }

/* Hero */
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; background: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat fixed; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(18,18,18,0.7) 0%, rgba(18,18,18,0.95) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 0 20px; }
.vintage-badge { color: var(--primary); font-size: 1.1rem; font-style: italic; margin-bottom: 20px; display: inline-block; border-bottom: 1px solid var(--primary); padding-bottom: 5px; }
.hero-content h1 { font-size: 5rem; font-weight: 400; line-height: 1.1; margin-bottom: 30px; color: #fff; }
.hero-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; font-weight: 300; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.8; }

/* Sections */
.section { padding: 100px 5%; }
.section-title { font-size: 3rem; font-weight: 400; color: var(--primary); margin-bottom: 40px; }
.text-center { text-align: center; }

/* Split Section */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.split-image img { width: 100%; height: 600px; object-fit: cover; filter: sepia(0.2) grayscale(0.2); transition: filter 0.5s; border-radius: 4px; }
.split-image img:hover { filter: sepia(0) grayscale(0); }
.split-text p { color: var(--text-muted); line-height: 1.8; font-size: 1.1rem; margin-bottom: 20px; }
.split-text strong { color: var(--primary); }
.features-list { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.feat { display: flex; align-items: center; gap: 15px; font-size: 1.1rem; color: #fff; }
.feat i { color: var(--primary); font-size: 1.2rem; }

/* Menu */
.bg-texture { background-color: var(--bg-lighter); background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px); background-size: 20px 20px; }
.services-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.service-item { display: flex; align-items: center; padding: 30px 40px; background: var(--bg-dark); border: 1px solid var(--border-color); transition: all 0.3s; border-radius: 4px; }
.service-item:hover { border-color: var(--primary); transform: translateX(10px); }
.service-item.highlight { border-color: var(--primary); background: rgba(205, 162, 116, 0.05); }
.service-info { flex: 1; }
.service-info h3 { font-size: 1.4rem; color: #fff; margin-bottom: 10px; font-family: 'Inter', sans-serif; font-weight: 600; }
.service-info p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; max-width: 80%; }
.badge-gold { background: var(--primary); color: #000; font-size: 0.7rem; padding: 3px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; font-family: 'Inter', sans-serif; vertical-align: middle; margin-left: 10px; }
.service-price { font-size: 2rem; font-weight: 300; color: var(--primary); font-family: 'Playfair Display', serif; margin-right: 40px; }
.service-price .currency { font-size: 1rem; vertical-align: top; margin-right: 5px; }
.btn-book { background: transparent; color: var(--text-muted); border: 1px solid var(--border-color); width: 50px; height: 50px; border-radius: 50%; cursor: pointer; transition: all 0.3s; font-size: 1.2rem; display: flex; justify-content: center; align-items: center; }
.btn-book:hover { background: var(--primary); color: #000; border-color: var(--primary); }

/* Depoimentos */
.testimonials-container { display: flex; gap: 40px; max-width: 1000px; margin: 0 auto; justify-content: center; }
.testimonial { background: var(--bg-lighter); border: 1px solid var(--border-color); padding: 40px; text-align: center; border-radius: 4px; flex: 1; }
.testimonial img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; border: 2px solid var(--primary); }
.testimonial p { font-style: italic; color: #ccc; margin-bottom: 20px; font-size: 1.1rem; line-height: 1.6; }
.testimonial h4 { color: var(--primary); font-size: 1.1rem; }

/* FAQ & Form */
.faq-list { display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: var(--bg-dark); padding: 20px; border: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: 0.3s; }
.faq-item:hover { border-color: var(--primary); }
.contact-box { background: var(--bg-dark); padding: 40px; border: 1px solid var(--border-color); }
.input-field { width: 100%; padding: 15px; background: transparent; border: 1px solid var(--border-color); color: #fff; margin-bottom: 20px; font-family: 'Inter', sans-serif; cursor: pointer; }

/* Footer */
.footer { padding: 80px 5% 30px; background: #000; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer .logo { margin-bottom: 20px; }
.footer p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.social-icons { margin-top: 20px; display: flex; gap: 15px; }
.social-icons i { font-size: 1.2rem; color: #fff; width: 40px; height: 40px; border: 1px solid var(--border-color); display: flex; justify-content: center; align-items: center; border-radius: 50%; cursor: pointer; transition: 0.3s; }
.social-icons i:hover { background: var(--primary); color: #000; border-color: var(--primary); }
.footer-title { color: #fff; font-size: 1.2rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 15px; }
.footer ul li a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.footer ul li a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 30px; text-align: center; }
.footer-bottom p { color: #666; font-size: 0.85rem; margin-bottom: 5px; }

/* WhatsApp Btn */
.whatsapp-btn { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25d366; color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; text-decoration: none; z-index: 999; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }

/* Elegant Modal */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); display: flex; justify-content: center; align-items: center; z-index: 9999; opacity: 1; transition: opacity 0.4s ease; backdrop-filter: blur(8px); }
.modal-overlay.hidden { opacity: 0; pointer-events: none; }
.elegant-modal { background: #1a1a1a; border: 1px solid var(--primary-dark); padding: 50px; text-align: center; max-width: 420px; transform: scale(1); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.modal-overlay.hidden .elegant-modal { transform: scale(0.95) translateY(20px); opacity: 0; }
.modal-header i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.elegant-modal h2 { color: #fff; font-size: 1.8rem; margin-bottom: 15px; font-weight: 400; }
.elegant-modal p { color: #ccc; font-size: 1rem; line-height: 1.6; font-family: 'Inter', sans-serif; }
.elegant-modal strong { color: var(--primary); font-weight: 600; }
.divider { width: 40px; height: 1px; background: var(--primary-dark); margin: 25px auto; }
.elegant-modal .small-text { font-size: 0.85rem; color: #666; margin-bottom: 35px; }
.modal-btn { width: 100%; text-align: center; padding: 15px; }
