/* DESIGN LUXURY - PORTAL EFFECT */
:root {
    --green: #0F2F23;
    --gold: #C7A35A;
    --off-white: #FAF9F6;
    --white: #FFFFFF;
    --text: #1A1A1A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--green); /* Cor base do portal */
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, .serif-title { font-family: "Georgia", serif; font-weight: 300; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.narrow { max-width: 800px; margin: 0 auto; text-align: center; }

/* FIX DEFINITIVO DO LOGO (EFEITO ZOOM) */
.fixed-brand {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50; /* Atrás do conteúdo, mas visível na abertura */
    pointer-events: none;
}

/* Essa moldura corta o "vazio" da sua imagem */
.logo-frame {
    width: 400px; 
    height: 350px;
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
}

/* O Zoom forçado para o desenho aparecer */
.logo-frame img {
    width: 1000px; /* Aumentado para ignorar o vazio */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.1));
}

/* NAVEGAÇÃO */
.top-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 60px;
    z-index: 1000;
}

.nav-box { display: flex; justify-content: space-between; align-items: center; }
.links a { text-decoration: none; color: white; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-right: 30px; opacity: 0.6; }
.cta-nav { text-decoration: none; color: var(--gold); border: 1px solid var(--gold); padding: 10px 20px; font-size: 10px; font-weight: 700; text-transform: uppercase; }

/* HERO (PORTAL) */
.hero-portal {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 10;
}

.hero-text { margin-top: 380px; } /* Desce o texto para o logo respirar */
.gold-badge { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 5px; margin-bottom: 20px; display: block; }
.hero-portal h1 { font-size: 2.2rem; max-width: 600px; opacity: 0.8; }

.scroll-down { margin-top: 50px; opacity: 0.3; }
.scroll-down span { font-size: 10px; letter-spacing: 3px; }
.line { width: 1px; height: 50px; background: white; margin: 15px auto 0; position: relative; overflow: hidden; }
.line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--gold); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }

/* SITE REVEAL (CONTEÚDO QUE SOBE) */
.main-reveal {
    position: relative;
    z-index: 100; /* Sobe por cima de tudo */
    background: var(--off-white);
    box-shadow: 0 -40px 100px rgba(0,0,0,0.4);
}

.content-section { padding: 120px 0; }
.section-dark { background: var(--green); color: white; border-bottom: 1px solid rgba(255,255,255,0.1); }
.serif-title { font-size: 3.5rem; margin-bottom: 30px; }
.gold-divider { width: 50px; height: 1px; background: var(--gold); margin: 30px auto; }
.lead-p { font-size: 1.8rem; color: var(--gold); margin-bottom: 30px; font-style: italic; }

.section-white { background: var(--white); }
.luxury-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; }
.card { border-top: 1px solid #ddd; padding-top: 40px; }
.num { display: block; color: var(--gold); font-family: serif; font-size: 1.5rem; margin-bottom: 20px; }
.card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--green); }
.card p { color: #666; font-size: 0.95rem; }

/* FORMULÁRIO */
.section-form { background: var(--off-white); }
.form-card { max-width: 600px; margin: 0 auto; text-align: center; }
.gold { color: var(--gold); }
.form-sub { opacity: 0.6; margin-bottom: 40px; }

.luxury-form { text-align: left; }
.input-field { margin-bottom: 25px; }
.input-field label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; letter-spacing: 1px; }
.input-field input { width: 100%; background: transparent; border: none; border-bottom: 1px solid #ccc; padding: 15px 0; font-size: 1.1rem; outline: none; }
.input-field input:focus { border-bottom-color: var(--gold); }

.btn-gold-solid { width: 100%; background: var(--gold); color: white; border: none; padding: 25px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; cursor: pointer; transition: 0.3s; }
.btn-gold-solid:hover { background: var(--green); transform: translateY(-3px); }
.disclaimer { font-size: 10px; opacity: 0.4; margin-top: 20px; text-align: center; }

/* FOOTER */
.footer { padding: 100px 0 50px; text-align: center; border-top: 1px solid #eee; }
.f-logo { font-size: 1.2rem; letter-spacing: 5px; color: var(--green); margin-bottom: 10px; }
.footer-line { width: 30px; height: 1px; background: #ddd; margin: 30px auto; }
.copy { font-size: 9px; opacity: 0.4; text-transform: uppercase; letter-spacing: 1px; }

/* WHATSAPP */
.wa-btn-luxury { position: fixed; bottom: 40px; right: 40px; background: var(--gold); color: white; padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 11px; z-index: 2000; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* RESPONSIVO */
@media (max-width: 900px) {
    .logo-frame { width: 280px; height: 250px; }
    .logo-frame img { width: 600px; }
    .top-nav { display: none; }
    .hero-text { margin-top: 300px; }
    .serif-title { font-size: 2.2rem; }
    .luxury-grid { grid-template-columns: 1fr; }
}