/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
:root {
            --bg: #0f1115;
            --surface: #16191f;
            --text: #e0e0e0;
            --gold: #d4af37;
            --gold-dim: #8a702a;
            --border: rgba(255,255,255,0.05);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .serif {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
        }

        /* Utility */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
        .section-padding { padding: 120px 0; }
        .text-gold { color: var(--gold); }
        .text-center { text-align: center; }
        .flex-center { display: flex; align-items: center; justify-content: center; }
        
        /* Buttons */
        .btn-gold {
            display: inline-block;
            padding: 18px 40px;
            background: transparent;
            color: var(--gold);
            border: 1px solid var(--gold);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            transition: 0.4s;
            position: relative;
            overflow: hidden;
        }
        .btn-gold:hover {
            background: var(--gold);
            color: var(--bg);
        }

        /* Header */
        header {
            position: fixed;
            top: 0; width: 100%;
            padding: 30px 0;
            z-index: 100;
            background: rgba(15, 17, 21, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
        }
        .nav-flex { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 1.5rem; letter-spacing: 3px; color: white; text-transform: uppercase; text-decoration: none; }
        .logo span { color: var(--gold); }

        /* Hero */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: url('../images/d5beab4ba774592dc5620421b8059d2a.jpg') center/cover;
        }
        .hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(90deg, #0f1115 30%, rgba(15,17,21,0.8) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            padding-left: 10%;
        }
        .hero-subtitle {
            text-transform: uppercase;
            letter-spacing: 4px;
            font-size: 0.8rem;
            color: var(--gold);
            margin-bottom: 20px;
            display: block;
        }
        .hero h1 {
            font-size: 4.5rem;
            line-height: 1.1;
            margin-bottom: 40px;
            color: white;
        }
        .hero p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 50px;
            border-left: 1px solid var(--gold);
            padding-left: 20px;
        }

        /* Philosophy */
        .philosophy { background: var(--surface); }
        .phil-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .phil-text h2 { font-size: 3rem; margin-bottom: 30px; }
        .phil-text p { margin-bottom: 20px; color: #999; }
        .signature {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: 2rem;
            color: var(--gold);
            margin-top: 30px;
        }

        /* Expertise Grid */
        .expertise { background: var(--bg); }
        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        .expertise-card {
            padding: 40px;
            border: 1px solid var(--border);
            transition: 0.3s;
            position: relative;
        }
        .expertise-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
        }
        .expertise-icon {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 25px;
        }
        .expertise-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
        }
        .expertise-card p {
            font-size: 0.9rem;
            color: #888;
            line-height: 1.6;
        }

        /* Authority / Profile */
        .authority { background: var(--surface); }
        .auth-grid {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 80px;
            align-items: center;
        }
        .auth-img {
            position: relative;
        }
        .auth-img img {
            width: 100%;
            filter: grayscale(100%);
            border: 1px solid var(--border);
        }
        .auth-img::after {
            content: '';
            position: absolute;
            top: 20px; left: 20px;
            width: 100%; height: 100%;
            border: 1px solid var(--gold);
            z-index: -1;
        }
        .auth-content h2 { font-size: 3rem; margin-bottom: 10px; }
        .auth-role { color: var(--gold); text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; display: block; margin-bottom: 30px; }
        .auth-bio { color: #999; margin-bottom: 30px; }
        .credentials {
            display: flex;
            gap: 40px;
            border-top: 1px solid var(--border);
            padding-top: 30px;
        }
        .cred-item span { display: block; font-size: 2rem; color: white; font-family: 'Cormorant Garamond', serif; }
        .cred-item label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #666; }

        /* FAQ Accordion */
        .faq-section { background: var(--bg); }
        .faq-container { max-width: 800px; margin: 0 auto; }
        .faq-item { border-bottom: 1px solid var(--border); }
        .faq-question {
            padding: 30px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2rem;
            font-family: 'Cormorant Garamond', serif;
            transition: 0.3s;
        }
        .faq-question:hover { color: var(--gold); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            color: #888;
            font-size: 0.95rem;
            line-height: 1.8;
        }
        .faq-item.active .faq-answer { max-height: 200px; padding-bottom: 30px; }
        .faq-icon { transition: 0.3s; font-size: 0.8rem; }
        .faq-item.active .faq-icon { transform: rotate(45deg); color: var(--gold); }

        /* Interactive Assessment (The Pro Feature) */
        .assessment { background: var(--bg); position: relative; overflow: hidden; }
        .assessment-container {
            max-width: 900px;
            margin: 0 auto;
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 60px;
            position: relative;
            z-index: 2;
        }
        .step-indicator {
            display: flex;
            gap: 10px;
            margin-bottom: 40px;
        }
        .step-dot {
            height: 2px;
            flex: 1;
            background: var(--border);
            transition: 0.3s;
        }
        .step-dot.active { background: var(--gold); }
        
        .form-step { display: none; animation: fadeIn 0.5s; }
        .form-step.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        .question { font-size: 2rem; margin-bottom: 40px; font-family: 'Cormorant Garamond', serif; }
        .options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .option-card {
            padding: 30px;
            border: 1px solid var(--border);
            cursor: pointer;
            transition: 0.3s;
            text-align: center;
        }
        .option-card:hover { border-color: var(--gold); background: rgba(212, 175, 55, 0.05); }
        .option-card i { font-size: 2rem; color: var(--gold); margin-bottom: 15px; }
        .option-card h4 { font-size: 1.2rem; margin-bottom: 10px; font-family: 'Montserrat', sans-serif; }
        .option-card p { font-size: 0.8rem; color: #888; }

        /* Result Box */
        .result-box {
            text-align: center;
            display: none;
        }
        .result-box.active { display: block; animation: fadeIn 0.5s; }
        .result-icon { font-size: 4rem; color: var(--gold); margin-bottom: 20px; }

        /* Timeline */
        .timeline-section { background: var(--surface); }
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 60px auto 0;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%; top: 0; bottom: 0;
            width: 1px;
            background: var(--border);
            transform: translateX(-50%);
        }
        .timeline-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 60px;
            position: relative;
        }
        .timeline-item:nth-child(even) { flex-direction: row-reverse; }
        .timeline-content { width: 45%; }
        .timeline-dot {
            position: absolute;
            left: 50%; top: 0;
            width: 12px; height: 12px;
            background: var(--gold);
            border-radius: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.2);
        }
        .timeline-year {
            font-size: 0.8rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 10px; display: block; text-transform: uppercase;
        }
        .timeline-title { font-size: 1.5rem; margin-bottom: 10px; }

        /* Footer */
        footer {
            border-top: 1px solid var(--border);
            padding: 80px 0;
            text-align: center;
            font-size: 0.9rem;
            color: #666;
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 3rem; }
            .hero-content { padding-left: 20px; padding-right: 20px; }
            .phil-grid { grid-template-columns: 1fr; }
            .options-grid { grid-template-columns: 1fr; }
            .timeline::before { left: 20px; }
            .timeline-item { flex-direction: column; padding-left: 50px; }
            .timeline-item:nth-child(even) { flex-direction: column; }
            .timeline-content { width: 100%; }
            .timeline-dot { left: 20px; }
        }