/* --- 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; }

        /* --- CONTEÚDO LEGAL (COM EFEITO DE SOBREPOSIÇÃO) --- */
        .section-legal {
            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;
        }
        
        .legal-document {
            background: white;
            padding: 40px; /* Padding interno */
            /* Removed shadow and border radius here to blend better, or keep for card look inside section */
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            max-width: 900px;
            margin: 0 auto;
            border: 1px solid #eee;
        }

        .legal-text h2 { font-size: 1.8rem; color: var(--dark); margin-top: 30px; margin-bottom: 15px; }
        .legal-text h2:first-child { margin-top: 0; }
        .legal-text p { color: #555; line-height: 1.8; margin-bottom: 15px; font-size: 1rem; }
        .legal-text ul { padding-left: 20px; margin-bottom: 20px; color: #555; }
        .legal-text li { margin-bottom: 10px; line-height: 1.6; }
        .last-update { display: block; font-size: 0.9rem; color: #999; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #eee; }

        /* 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 WhatsApp */
        .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; align-items: center; }
        .modal-header h4 { margin: 0; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
        .close-modal { background: none; border: none; color: white; font-size: 1.2rem; cursor: pointer; }
        .modal-body { padding: 25px; }
        .form-group { margin-bottom: 15px; }
        .form-group label { display: block; margin-bottom: 5px; font-size: 0.9rem; font-weight: 600; color: #555; }
        .form-group input, .form-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-family: 'Inter', sans-serif; outline: none; }
        .btn-whatsapp-submit { width: 100%; background: #25D366; color: white; border: none; padding: 12px; border-radius: 8px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; }

        @keyframes pulse-green {
            0% { transform: scale(1); text-shadow: 0 0 0 rgba(37, 211, 102, 0.7); }
            50% { transform: scale(1.1); text-shadow: 0 0 20px rgba(37, 211, 102, 0.7); }
            100% { transform: scale(1); text-shadow: 0 0 0 rgba(37, 211, 102, 0.7); }
        }

        /* MOBILE */
        @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-legal { margin-top: -80px; } /* Mantém efeito no mobile */
            
            .legal-document { padding: 30px; }
            
            .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; }
            
            .float-btn-left { bottom: 20px; left: 20px; }
            .float-btn-right { bottom: 20px; right: 20px; }
            .whatsapp-btn { width: 50px; height: 50px; font-size: 1.5rem; }
            .back-to-top { width: 45px; height: 45px; }
            .logo-icon-img { height: 35px; }
        }

        @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }