/* --- ESTILOS GERAIS (PADRÃO GOLD UNIFICADO) --- */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #F8F9FA;
            color: #212529;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .btn { font-family: 'Space Grotesk', sans-serif; }

        /* HEADER FLUTUANTE */
        header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background-color: transparent !important;
            z-index: 1000;
            padding-top: 20px;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            color: #FFFFFF !important;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            letter-spacing: -1px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 1001;
        }
        
        .logo-icon-img {
            height: 40px; 
            width: auto;
            object-fit: contain; 
            display: block; 
        }

        /* MENU DESKTOP */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-list {
            display: flex;
            gap: 25px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item { position: relative; height: 100%; }

        .nav-link {
            color: #FFFFFF !important;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            opacity: 0.9;
            text-decoration: none;
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .nav-link:hover { color: var(--primary) !important; opacity: 1; }
        .nav-link i { font-size: 0.7rem; transition: transform 0.3s; margin-top: 2px; }
        .nav-item:hover .nav-link i { transform: rotate(180deg); }

        /* SUBMENU */
        .submenu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(15px);
            background-color: #FFFFFF !important;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            padding: 10px 0;
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            margin-top: 10px;
            border-top: 3px solid var(--primary);
            z-index: 1100;
        }

        .submenu::before { content: ''; position: absolute; top: -20px; left: 0; width: 100%; height: 20px; background: transparent; }
        
        @media (min-width: 993px) {
            .nav-item:hover .submenu {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) translateY(0);
            }
        }

        .submenu::after {
            content: '';
            position: absolute;
            top: -6px;
            left: 50%;
            margin-left: -6px;
            border-width: 0 6px 6px 6px;
            border-style: solid;
            border-color: transparent transparent var(--primary) transparent;
        }

        .submenu-link {
            color: #333333 !important;
            padding: 12px 25px;
            font-size: 0.9rem;
            font-weight: 500;
            display: block;
            text-decoration: none;
            transition: all 0.2s;
            border-left: 3px solid transparent;
        }

        .submenu-link:hover {
            background-color: #f8f9fa;
            color: var(--primary) !important;
            border-left-color: var(--primary);
            padding-left: 30px;
        }

        .nav-buttons { display: flex; gap: 15px; align-items: center; }
        
        .btn-glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .btn-glow {
            background: var(--primary);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 0 15px rgba(211, 47, 47, 0.4);
        }

        .mobile-toggle {
            display: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1002;
        }

        /* --- HERO LEGAL (PADRÃO GOLD - ALTO E RETO) --- */
        .hero-premium {
            position: relative;
            height: 70vh; /* Altura padronizada */
            min-height: 550px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 30, 0.8) 100%), url('../../../img/hero.png'); 
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            text-align: center;
            padding-top: 60px;
            /* Sem border-radius aqui */
        }

        .hero-content { z-index: 2; max-width: 800px; padding: 0 20px; animation: fadeUp 1s ease-out; }
        .hero-title { font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
        .hero-subtitle { font-size: 1.1rem; color: #d1d5db; max-width: 600px; margin: 0 auto; line-height: 1.6; }
        
        /* --- GRID DE AJUDA (COM EFEITO DE SOBREPOSIÇÃO) --- */
        .section-help { 
            padding: 80px 0; 
            background-color: white;
            
            /* O Segredo do Efeito "Eventos.html": */
            margin-top: -80px; 
            position: relative; 
            z-index: 10;
            border-radius: 30px 30px 0 0;
        }

        .help-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
            gap: 30px; 
            max-width: 1000px; 
            margin: 0 auto; 
        }
        
        /* Card Padronizado com outras páginas */
        .help-card { 
            background: #F8F9FA; 
            padding: 40px 30px; 
            border-radius: 16px; 
            border-bottom: 4px solid var(--primary); /* Identidade visual */
            text-align: center; 
            transition: 0.3s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .help-card:hover { 
            transform: translateY(-10px); 
            box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
        }

        .help-icon { 
            font-size: 2.5rem; 
            color: var(--primary); 
            margin-bottom: 20px; 
            background: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .help-card h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 10px; }
        .help-card p { color: #666; font-size: 0.95rem; margin-bottom: 20px; line-height: 1.6; }
        
        .help-link { 
            color: var(--primary); 
            font-weight: 700; 
            text-decoration: none; 
            border: 2px solid var(--primary); 
            padding: 10px 25px; 
            border-radius: 50px; 
            display: inline-block; 
            transition: 0.3s; 
        }
        .help-link:hover { background: var(--primary); color: white; }

        /* FAQ */
        .section-faq-list { padding: 40px 0 80px 0; background: white; }
        
        .section-header-left { margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; text-align: center; }
        .section-header-left h2 { font-size: 2.2rem; color: var(--dark); margin-bottom: 10px; }
        
        .faq-item { 
            background: #fff; 
            border: 1px solid #eee; 
            border-radius: 12px; 
            padding: 25px; 
            margin-bottom: 15px; 
            max-width: 800px; 
            margin-left: auto; 
            margin-right: auto; 
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }
        .faq-question { font-weight: 700; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { display: none; margin-top: 15px; color: #666; line-height: 1.6; border-top: 1px solid #eee; padding-top: 15px; }
        .faq-item.active .faq-answer { display: block; }
        .faq-item.active .faq-question i { transform: rotate(180deg); }

        /* FOOTER & FLUTUANTES (PADRÃO GOLD) */
        footer { background-color: #111; color: #b0b0b0; padding-top: 60px; }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; }
        .footer-logo h3 { color: white; font-size: 1.8rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
        .footer-links h4 { color: white; font-size: 1.1rem; margin-bottom: 20px; }
        .footer-links ul { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: #aaa; text-decoration: none; transition: 0.3s; }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }
        .footer-bottom { padding: 30px 0; text-align: center; font-size: 0.9rem; }

        .float-btn-left { position: fixed; bottom: 30px; left: 30px; z-index: 9990; transition: 0.3s; }
        .whatsapp-btn { width: 60px; height: 60px; background-color: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); text-decoration: none; }
        .whatsapp-btn:hover { transform: scale(1.1); background-color: #128C7E; }
        
        .float-btn-right { position: fixed; bottom: 30px; right: 30px; z-index: 9990; opacity: 0; visibility: hidden; transform: translateY(20px); transition: 0.3s; }
        .float-btn-right.visible { opacity: 1; visibility: visible; transform: translateY(0); }
        .back-to-top { width: 50px; height: 50px; background-color: var(--dark); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; border: none; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
        .back-to-top:hover { background-color: var(--primary); transform: translateY(-5px); }

        /* Modal e Mobile */
        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.3s; }
        .modal-overlay.active { opacity: 1; visibility: visible; }
        .whatsapp-modal { background: white; width: 90%; max-width: 400px; border-radius: 16px; overflow: hidden; transform: scale(0.8); transition: 0.3s; }
        .modal-overlay.active .whatsapp-modal { transform: scale(1); }
        .modal-header { background: #075E54; color: white; padding: 20px; display: flex; justify-content: space-between; }
        .modal-body { padding: 25px; }
        .form-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 0.9rem; }
        .form-group input, .form-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 15px; }
        .btn-whatsapp-submit { width: 100%; background: #25D366; color: white; border: none; padding: 12px; border-radius: 8px; font-weight: 700; cursor: pointer; }

        @media (max-width: 992px) {
            header { padding-top: 15px; background-color: transparent; }
            .mobile-toggle { display: block; }
            .nav-menu { position: fixed; top: 0; right: -100%; width: 85%; height: 100vh; background-color: #111; flex-direction: column; align-items: flex-start; padding: 80px 30px; transition: 0.4s; z-index: 1000; overflow-y: auto; }
            .nav-menu.active { right: 0; }
            .nav-list { flex-direction: column; width: 100%; gap: 0; }
            .nav-item { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); display: block; height: auto; }
            .nav-link { color: #fff !important; font-size: 1.1rem; padding: 15px 0; justify-content: space-between; width: 100%; }
            .nav-buttons { flex-direction: column; width: 100%; margin-left: 0 !important; margin-top: 30px; gap: 15px; }
            .submenu { position: static; opacity: 1; visibility: visible; transform: none; background-color: #1a1a1a !important; box-shadow: none; width: 100%; padding: 0; margin: 0; display: none; min-width: unset; z-index: 1; border-top: none; border-radius: 0; }
            .nav-item.active .submenu { display: block; animation: slideDown 0.3s ease; }
            .nav-item.active .nav-link i { transform: rotate(180deg); color: var(--primary); }
            .submenu::before, .submenu::after { display: none; }
            .submenu-link { color: #ccc !important; padding: 12px 20px; border-left: 2px solid #333; }

            .hero-premium { height: auto; min-height: 400px; padding: 100px 0 100px 0; }
            .hero-title { font-size: 2.2rem; }
            .section-help { margin-top: -80px; } 
            
            .help-grid { grid-template-columns: 1fr; }
            
            .footer-grid { grid-template-columns: 1fr !important; text-align: center; gap: 40px; }
            .footer-logo, .footer-links { align-items: center; }
            .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
            .developer-badge { align-items: center !important; }
            .logo-icon-img { height: 35px; }
            .float-btn-left { bottom: 20px; left: 20px; }
            .float-btn-right { bottom: 20px; right: 20px; }
        }
        @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }