:root {
    --color-bg-deep: #140E0A; /* Darkest, replaces pure black with a warm profound undertone */
    --color-bg-dark: #1F1713; /* Mid-Dark for alternating sections */
    --color-bg-light: #F9F7F1; /* Clean off-white/beige for clear sections (Storytelling contrast) */
    
    --color-text-dark: #2A1F1A;
    --color-text-light: #F9F7F1;
    --color-text-muted: #A3968F;
    
    --color-copper: #D2884A; /* Iconic Copper */
    --color-copper-hover: #E8A87C;
    --color-wa-green: #25D366;
    
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.3s ease;
}

/* Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    background-color: var(--color-bg-deep); 
    color: var(--color-text-light); 
    font-family: 'Inter', sans-serif; 
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Grain & Atmosphere */
.grain {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.05; pointer-events: none; z-index: 9999;
}

/* Typography (SEO Based) */
h1, h2, h3, h4, .font-serif { font-family: 'Playfair Display', serif; font-weight: 800; }
.italic-serif { font-style: italic; font-weight: 400; font-family: 'Playfair Display', serif; }
.hero-title { font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1.1; letter-spacing: -1.5px; font-weight: 800; }
.section-title, h2 { font-size: clamp(2.5rem, 4.5vw, 4rem); line-height: 1.15; margin-bottom: 35px; letter-spacing: -0.5px; }
.section-tag { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 4px; color: var(--color-copper); display: block; margin-bottom: 20px; font-weight: 900; }
.section-tag.center { text-align: center; }
.mt-20 { margin-top: 20px;}
.mt-40 { margin-top: 40px;}

.container { width: 90%; max-width: 1300px; margin: 0 auto; }
.text-center { text-align: center; }
.mb-80 { margin-bottom: 80px; }
.max-w-700 { max-width: 700px; margin: 0 auto; }

/* Float WhatsApp */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; z-index: 1000;
    background: var(--color-wa-green); width: 60px; height: 60px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: var(--transition-fast);
}
.whatsapp-float:hover { transform: scale(1.1) rotate(5deg); }
.wa-icon { width: 32px; height: 32px; fill: white; }
.wa-tooltip {
    position: absolute; right: 75px; background: white; color: var(--color-text-dark);
    padding: 8px 15px; border-radius: 5px; font-size: 0.85rem; font-weight: 700;
    white-space: nowrap; pointer-events: none; opacity: 0; transition: var(--transition-fast);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; right: 80px; }

/* Navbar */
.navbar { 
    position: fixed; top: 0; width: 100%; padding: 25px 0; z-index: 1000; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    border-bottom: 1px solid transparent;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
}
.navbar.scrolled { 
    background: rgba(20, 15, 10, 0.88); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 0; 
    border-bottom: 1px solid rgba(210, 136, 74, 0.15); 
}
.navbar.scrolled .logo img { height: 75px; min-width: 140px; }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo img { 
    height: 100px; 
    min-width: 160px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); 
    cursor: pointer; 
    filter: drop-shadow(0px 0px 12px rgba(210, 160, 60, 0.55)) brightness(1.15);
}
.logo img:hover { transform: scale(1.03); }
.nav-actions { display: flex; align-items: center; gap: 30px; }
.nav-link { color: var(--color-text-light); text-decoration: none; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; transition: opacity 0.3s; }
.nav-link:hover { opacity: 1; color: var(--color-copper); }

/* Buttons */
.btn-primary, .btn-submit, .btn-whatsapp, #nl-submit-btn {
    display: inline-block; background: var(--color-copper); color: #fff; text-decoration: none;
    padding: 18px 36px; border-radius: 4px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1px; font-size: 0.9rem; transition: var(--transition-fast);
    border: 1px solid var(--color-copper); cursor: pointer; text-align: center;
}
.btn-primary:hover, .btn-submit:hover { background: transparent; color: var(--color-copper); }

.btn-secondary {
    display: inline-block; background: transparent; color: var(--color-text-light); text-decoration: none;
    padding: 18px 36px; border-radius: 4px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1px; font-size: 0.9rem; transition: var(--transition-fast);
    border: 1px solid rgba(255,255,255,0.2); margin-left: 15px;
}
.btn-secondary:hover { border-color: var(--color-text-light); }

.btn-whatsapp { background: #128C7E; border-color: #128C7E; }
.btn-whatsapp:hover { background: #075E54; border-color: #075E54; color: #fff; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(18, 140, 126, 0.4); }

/* Scene Structure */
.scene { min-height: 100vh; display: flex; align-items: center; padding: 160px 0; }
.split-layout { display: flex; gap: 100px; align-items: center; flex-wrap: wrap; }
.split-layout > div { flex: 1; min-width: 400px; }
.split-layout.reverse { flex-direction: row-reverse; }

/* Storytelling Color Flow */
/* Scene 1/Hero/Pain: Dark, Heavy, Imposing */
.scene-1 { 
    background: linear-gradient(rgba(20, 14, 10, 0.9), rgba(20, 14, 10, 0.95)), url('https://images.unsplash.com/photo-1542435503-956c469947f6?auto=format&fit=crop&q=80&w=2000') center/cover fixed; 
    text-align: center; position: relative; padding-top: 150px;
}
.hero-subtitle { font-size: 1.25rem; max-width: 800px; margin: 0 auto 50px; font-weight: 300; line-height: 1.8; }
.cta-group { display: flex; justify-content: center; margin-top: 40px; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); opacity: 0; display: flex; flex-direction: column; align-items: center;}
.scroll-indicator span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--color-copper); margin-top: 15px; }
.mouse { width: 30px; height: 50px; border: 2px solid rgba(210, 136, 74, 0.5); border-radius: 15px; position: relative; }
.mouse::before { content: ''; position: absolute; top: 10px; left: 50%; width: 4px; height: 8px; background: var(--color-copper); transform: translateX(-50%); border-radius: 2px; animation: scrollAnim 1.5s infinite; }
@keyframes scrollAnim { 0% { top: 8px; opacity: 1; } 100% { top: 25px; opacity: 0; } }

/* Scene 2 & 4: The Reality & Audit (Clean, Light, Revealing) - Shift in Storytelling */
.scene-2, .scene-4, .scene-webpages { background-color: var(--color-bg-light); color: var(--color-text-dark); }
.highlight-copper { color: var(--color-copper); }
.scene-2 p, .scene-4 p, .scene-webpages p { font-size: 1.15rem; line-height: 1.8; color: #4A3F39; }

/* Stats grid */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 40px; }
.stat-item { border-left: 3px solid var(--color-copper); padding-left: 20px; }
.stat-num { font-size: 2.5rem; font-weight: 800; display: block; color: var(--color-copper); font-family: 'Playfair Display', serif; }
.stat-label { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; color: var(--color-text-dark); }

/* GSAP Mockup Original */
.google-mockup { background: white; border-radius: 8px; padding: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.08); border: 1px solid #EBE6DF; }
.search-bar { background: #F1F3F4; padding: 15px 25px; border-radius: 40px; font-size: 0.95rem; color: #5F6368; font-weight: 500; }
.premium-card { background: #fff; border-bottom: 1px solid #F1F3F4; padding: 25px 0; }
.you-missing-v2 { background: #FFF5F4; border: 2px dashed #D93025; padding: 25px; margin-top: 25px; text-align: center; border-radius: 8px; }
.you-missing-v2 span { color: #D93025; font-size: 1.2rem; display: block; margin-bottom: 5px; }
.you-missing-v2 p { font-size: 0.9rem !important; margin: 0; font-weight: 600; }

/* Scene 3: Metodologia Iconic (Dark, Professional) */
.scene-3 { background-color: var(--color-bg-deep); border-top: 1px solid rgba(255,255,255,0.05); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.pillar { background: #1A1412; padding: 50px 40px; position: relative; border: 1px solid rgba(210, 136, 74, 0.1); border-radius: 4px; transition: transform 0.4s ease, border-color 0.4s ease; }
.pillar:hover { transform: translateY(-10px); border-color: var(--color-copper); }
.pillar-rank { position: absolute; top: -15px; right: 20px; font-size: 5rem; font-weight: 800; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.05); font-family: 'Playfair Display'; }
.pillar .icon { font-size: 2.5rem; margin-bottom: 30px; color: var(--color-copper); }
.pillar h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--color-text-light); }
.pillar p { font-size: 1.05rem; opacity: 0.8; }

/* Scene Webpages Mockup CSS - Premium & No Image */
.ui-mockup { width: 100%; max-width: 500px; margin: 0 auto; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.05); }
.mockup-browser { background: #F1F3F4; padding: 15px 20px; display: flex; align-items: center; border-bottom: 1px solid #E4E7EB; }
.mockup-browser .dots { display: flex; gap: 8px; margin-right: 20px; }
.mockup-browser .dots i { width: 12px; height: 12px; border-radius: 50%; background: #D1D5DB; }
.mockup-browser .dots i:nth-child(1) { background: #FF5F56; }
.mockup-browser .dots i:nth-child(2) { background: #FFBD2E; }
.mockup-browser .dots i:nth-child(3) { background: #27C93F; }
.url-bar { background: #fff; flex: 1; padding: 8px 15px; border-radius: 4px; font-size: 0.8rem; color: #9CA3AF; text-align: center; }
.mockup-content { background: #FAFAFA; padding: 40px; }
.mockup-hero { text-align: center; margin-bottom: 40px; }
.mockup-h1 { height: 24px; width: 80%; background: #1F2937; margin: 0 auto 15px; border-radius: 4px; }
.mockup-p { height: 12px; width: 60%; background: #9CA3AF; margin: 0 auto 30px; border-radius: 4px; }
.mockup-btn { height: 40px; width: 140px; background: var(--color-copper); margin: 0 auto; border-radius: 4px; }
.mockup-body { display: grid; gap: 20px; }
.mockup-card { height: 80px; background: #fff; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); border: 1px solid #F3F4F6; }
/* Strategy Image */
.strategy-image-container { width: 100%; border-radius: 8px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.05); }
.premium-strategy-img { width: 100%; height: auto; display: block; filter: contrast(1.05) brightness(0.9); transition: transform 0.8s ease; }
.strategy-image-container:hover .premium-strategy-img { transform: scale(1.05); }

.checklist { list-style: none; margin-top: 30px; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 15px; font-weight: 600; font-size: 1.1rem; }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--color-copper); font-size: 1.2rem; }

/* Scene Consultant */
.scene-consultant { background: var(--color-bg-deep); }
.about-consultant { background: var(--color-bg-dark); display: flex; align-items: stretch; border: 1px solid rgba(255,255,255,0.05); }
.consultant-img { flex: 0 0 45%; position: relative; }
.consultant-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; top:0; left:0; filter: contrast(1.1) grayscale(20%); }
.consultant-info { padding: 80px 60px; flex: 1; }
.consultant-info h3 { font-family: 'Inter', sans-serif; font-weight: 500; color: var(--color-copper); font-size: 1.1rem; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 2px; }
.divider { width: 60px; height: 3px; background: var(--color-copper); margin-bottom: 30px; }
.consultant-info p { font-size: 1.1rem; line-height: 1.8; opacity: 0.9; margin-bottom: 20px;}

/* Authority Seal */
.authority-seal {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(210, 136, 74, 0.1); border: 1px solid rgba(210, 136, 74, 0.3);
    padding: 10px 20px; border-radius: 4px; margin-bottom: 30px;
    animation: fadeIn 1s ease forwards; opacity: 0;
}
.seal-text { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--color-copper); }
.seal-icon { font-size: 1.2rem; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Scene Form Primary (Cena 4) */
.iconic-tag { display: inline-block; background: rgba(210, 136, 74, 0.1); color: var(--color-text-dark); padding: 8px 16px; border-radius: 30px; font-weight: 700; font-size: 0.85rem; margin-right: 10px; margin-bottom: 10px; border: 1px solid rgba(210, 136, 74, 0.3); }
.form-wrapper { background: #fff; padding: 50px; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.05); border: 1px solid #EBE6DF; }
.input-row { display: flex; gap: 20px; }
.input-group { margin-bottom: 30px; flex: 1; }
.input-group label { display: block; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; color: var(--color-text-dark); }
.input-group input { 
    width: 100%; border: none; border-bottom: 1px solid #000; padding: 15px 0; 
    font-size: 1.1rem; font-family: 'Inter'; transition: border-color 0.3s;
    background: transparent; border-radius: 0;
}
.input-group input:focus { outline: none; border-color: var(--color-copper); border-bottom-width: 2px;}

/* Form Feedback */
.form-feedback { margin-top: 20px; text-align: center; font-weight: 700; min-height: 24px; padding: 15px; border-radius: 4px; display: none; }
.form-feedback.success { display: block; color: #1B5E20; background: #C8E6C9; border: 1px solid #A5D6A7; }
.form-feedback.error { display: block; color: #B71C1C; background: #FFCDD2; border: 1px solid #EF9A9A; }

/* Scene Newsletter (Secondary Form) */
.scene-newsletter { background: var(--color-bg-dark); padding: 80px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.newsletter-box { display: flex; align-items: center; justify-content: space-between; gap: 60px; background: rgba(0,0,0,0.3); padding: 50px; border-radius: 4px; border: 1px solid rgba(210, 136, 74, 0.15); }
.nl-text { flex: 1; }
.nl-text h2 { font-size: 2rem; margin-bottom: 15px; }
.nl-text p { font-size: 1rem; opacity: 0.8; }
.nl-form-container { flex: 1; min-width: 400px; }
.nl-form { display: flex; gap: 15px; flex-direction: column; }
.nl-form input { padding: 18px 25px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: white; font-size: 1rem; font-family: 'Inter'; width: 100%; }
.nl-form input:focus { outline: none; border-color: var(--color-copper); }
.nl-form button { width: 100%; }

/* Scene Warranty (Garantia) */
.scene-warranty { background-color: var(--color-bg-deep); padding: 100px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.warranty-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
.warranty-item { background: rgba(210, 136, 74, 0.03); border: 1px solid rgba(210, 136, 74, 0.1); padding: 35px 25px; border-radius: 4px; transition: transform 0.3s ease; }
.warranty-item:hover { transform: translateY(-5px); border-color: var(--color-copper); }
.warranty-item .icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.warranty-item h4 { font-size: 1.2rem; margin-bottom: 15px; color: var(--color-text-light); }
.warranty-item p { font-size: 0.95rem; opacity: 0.7; line-height: 1.6; }

/* Anti-Mentoria Block */
.anti-mentoria-block {
    background: rgba(210, 136, 74, 0.05); border: 1px solid rgba(210, 136, 74, 0.2);
    padding: 40px; border-radius: 4px; margin-top: 50px; position: relative;
}
.anti-mentoria-block h4 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 15px; color: var(--color-copper); }
.anti-mentoria-block p { font-size: 1rem; opacity: 0.9; line-height: 1.7; margin: 0;}

/* Footer */
.footer { background: #0A0705; padding: 80px 0 40px; border-top: 1px solid rgba(255,255,255,0.03); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
.footer-logo { height: 110px; margin-bottom: 25px; }
.footer-brand p { color: var(--color-text-muted); max-width: 350px; }
.footer-links a { display: block; color: var(--color-text-light); text-decoration: none; margin-bottom: 20px; opacity: 0.6; transition: 0.3s; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; font-weight: 600;}
.footer-links a:hover { opacity: 1; color: var(--color-copper); }
.footer-contact p { color: var(--color-text-light); opacity: 0.8; margin-bottom: 10px; }
.rights { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.3 !important; margin-top: 30px !important; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    /* Layout Enforcers (Impede quebra de tela lateral) */
    .container { width: 90% !important; overflow-x: hidden !important; }
    .split-layout > div, .nl-form-container, .input-group, .consultant-info, .consultant-img { min-width: 100% !important; width: 100% !important; box-sizing: border-box !important; }
    
    /* Forçar Empilhamento Vertical */
    .split-layout, .split-layout.reverse, .about-consultant, .pillars, .input-row, .footer-grid { 
        display: flex !important; 
        flex-direction: column !important; 
        gap: 40px !important; 
    }
    
    /* Header Constraints - Evita espremer botões */
    .nav-content { flex-direction: column !important; justify-content: center !important; gap: 15px !important; padding: 15px 0 !important; }
    .nav-actions { display: flex !important; flex-direction: column !important; width: 100% !important; align-items: center !important; gap: 15px !important; }
    .nav-actions .nav-link { display: none !important; } /* Esconde link do whats para poupar espaco (tem balao flutuante) */
    .nav-actions .btn-primary { width: 100% !important; text-align: center !important; font-size: 0.8rem !important; padding: 15px !important; }
    .logo img, .navbar.scrolled .logo img { height: auto !important; width: 120px !important; max-width: 120px !important; margin-bottom: 0px; filter: drop-shadow(0px 0px 8px rgba(210, 160, 60, 0.45)) brightness(1.15) !important; }
    .navbar { position: fixed !important; padding: 15px 0 !important; }
    .warranty-grid { grid-template-columns: 1fr !important; }

    /* Footer Logo Invert (Contraste branco) */
    .footer-logo { filter: brightness(0) invert(1) !important; height: auto !important; width: 140px !important; }

    /* Forçar Visibilidade sobre o GSAP (Resolve Hero bug de foto vazia) */
    .hero-title, .hero-subtitle, .cta-group { opacity: 1 !important; visibility: visible !important; transform: none !important; }
    
    .hero-title { font-size: 2.2rem !important; margin-top: 50px !important; }
    .hero-subtitle { font-size: 1.1rem !important; margin-bottom: 30px !important; }
    
    /* Box Spacing */
    .scene { padding: 80px 0 !important; min-height: auto !important; }
    .pillar { padding: 30px !important; width: 100% !important; box-sizing: border-box !important; }
    .pillar-rank { font-size: 3rem !important; top: 10px !important; }
    .section-title, h2 { font-size: 2rem !important; }
    
    .newsletter-box { padding: 30px !important; flex-direction: column !important; }
}
