/*
Theme Name: GamaPro Cyberpunk
Theme URI: https://vulp.design
Author: Vulp
Author URI: https://vulp.design
Description: Tema WordPress one-page no estilo cyberpunk/psicodélico para landing pages de cursos e infoprodutos. Convertido a partir de template HTML estático, com carrossel coverflow, seção de módulos em abas, FAQ em acordeão e CTAs animados em neon.
Version: 1.0.0
Requires at least: 5.9
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gamapro
Tags: one-page, dark, custom-menu, featured-images, translation-ready
*/

        /* ==========================================
           VARIÁVEIS - TEMA CYBERPUNK / PSICODÉLICO
           ========================================== */
        :root {
            --bg-base: #05020a;
            --bg-surface: #0a0512;
            --neon-green: #00ffa3;
            --neon-pink: #ff00ff;
            --neon-purple: #8a2be2;
            --text-main: #ffffff;
            --text-muted: #888888;
            --font-display: 'Orbitron', sans-serif;
            --font-body: 'Space Grotesk', sans-serif;
            --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            background-color: var(--bg-base); 
            color: var(--text-main); 
            font-family: var(--font-body); 
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
        }

        .container { max-width: 1300px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
        
        /* CORREÇÃO DO AVISO: Adicionado background-clip padrão */
        .text-gradient { background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
        .text-outline { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.8); }

        /* BOTOES GERAIS */
        .btn-neon-green {
            background: var(--neon-green);
            color: #000;
            padding: 15px 30px;
            font-family: var(--font-body);
            font-weight: 900;
            text-transform: uppercase;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            box-shadow: 0 0 20px rgba(0, 255, 163, 0.4);
            transition: var(--transition-smooth);
            text-decoration: none;
            display: inline-block;
        }
        .btn-neon-green:hover { box-shadow: 0 0 40px rgba(0, 255, 163, 0.8); transform: translateY(-3px); }

        /* ==========================================
           NAVEGAÇÃO E BACKGROUND BLOBS
           ========================================== */
        .ambient-blob { position: absolute; filter: blur(120px); opacity: 0.5; z-index: 0; border-radius: 50%; animation: float 20s infinite alternate ease-in-out; }
        .blob-1 { top: -10%; left: -10%; width: 600px; height: 600px; background: var(--neon-purple); animation-delay: 0s; }
        .blob-2 { top: 40%; right: -10%; width: 500px; height: 500px; background: var(--neon-pink); animation-delay: -5s; }
        @keyframes float { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(100px, 150px) scale(1.2); } }

        header { padding: 30px 0; position: absolute; width: 100%; z-index: 100; }
        .nav-container { display: flex; justify-content: center; align-items: center; }
        .nav-links { display: flex; gap: 40px; background: rgba(255,255,255,0.03); padding: 15px 40px; border-radius: 50px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.05); }
        .nav-links a { color: var(--text-main); text-decoration: none; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; transition: 0.3s; letter-spacing: 1px; }
        .nav-links a:hover { color: var(--neon-green); text-shadow: 0 0 10px var(--neon-green); }

        /* ==========================================
           1. HERO SECTION
           ========================================== */
        .hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 80px; }
        .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
        .hero-content h1 { font-family: var(--font-display); font-size: 4.5rem; font-weight: 900; line-height: 1; text-transform: uppercase; margin-bottom: 20px; }
        .hero-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; max-width: 450px; line-height: 1.8; }
        .hero-visual { position: relative; height: 600px; display: flex; justify-content: center; align-items: center; }
        
        .cyber-circle {
            position: absolute; width: 450px; height: 450px; border-radius: 50%;
            border: 2px dashed var(--neon-purple); animation: spin 30s linear infinite;
            box-shadow: 0 0 60px rgba(138,43,226,0.2), inset 0 0 60px rgba(138,43,226,0.2);
        }
        @keyframes spin { 100% { transform: rotate(360deg); } }
        .hero-image { position: relative; z-index: 2; width: 100%; max-width: 500px; filter: drop-shadow(0 0 30px rgba(0, 255, 163, 0.2)); }

        /* ==========================================
           2. SESSÃO BRUTALISTA FATIADA (NOVO EFEITO)
           ========================================== */
        .cyber-bar-section { padding: 150px 0; }
        .bar-container { display: flex; align-items: center; justify-content: center; gap: 80px; }
        
        /* Container das fatias */
        .sliced-images { display: flex; gap: 8px; height: 450px; width: 350px; }
        
        /* Cada fatia da imagem */
        .slice {
            flex: 1;
            background-size: 350px 450px; /* Tamanho total da área para alinhar a imagem perfeitamente */
            background-repeat: no-repeat;
            border-radius: 6px;
            box-shadow: 0 0 15px rgba(138,43,226,0.2);
            transition: var(--transition-smooth);
            filter: grayscale(30%) contrast(120%);
            border: 1px solid rgba(255,0,255,0.3);
        }
        .slice:hover { filter: grayscale(0%) contrast(150%); transform: translateY(-15px); box-shadow: 0 0 30px var(--neon-pink); border-color: var(--neon-pink); }
        
        /* Posições exatas de cada fatia para formar a imagem completa */
        .slice:nth-child(1) { background-position: 0% 50%; height: 80%; align-self: flex-end; }
        .slice:nth-child(2) { background-position: 25% 50%; height: 100%; }
        .slice:nth-child(3) { background-position: 50% 50%; height: 65%; align-self: center; }
        .slice:nth-child(4) { background-position: 75% 50%; height: 90%; align-self: flex-start; }
        .slice:nth-child(5) { background-position: 100% 50%; height: 75%; align-self: flex-end; }

        .bar-text h2 { font-family: var(--font-display); font-size: 5.5rem; line-height: 0.9; text-transform: uppercase; letter-spacing: -2px; }
        .bar-text p { margin-top: 30px; color: var(--text-muted); max-width: 450px; font-size: 1.1rem; line-height: 1.6; }

        /* ==========================================
           3. COMO FUNCIONA (FEATURES)
           ========================================== */
        .features-section { padding: 100px 0; background: var(--bg-surface); border-top: 1px solid rgba(255,255,255,0.05); }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h2 { font-family: var(--font-display); font-size: 3rem; text-transform: uppercase; }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .feature-card {
            background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
            padding: 40px 30px; border-radius: 16px; transition: var(--transition-smooth);
            position: relative; overflow: hidden;
        }
        .feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--neon-green); transition: 0.4s ease; }
        .feature-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.05); border-color: rgba(0,255,163,0.3); }
        .feature-card:hover::before { height: 100%; }
        .feature-icon { font-size: 2.5rem; margin-bottom: 20px; display: inline-block; color: var(--neon-pink); }
        .feature-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 15px; }
        .feature-card p { color: var(--text-muted); font-size: 0.95rem; }

        /* ==========================================
           4. COVERFLOW CAROUSEL (PORTFÓLIO)
           ========================================== */
        .carousel-section { padding: 80px 0; position: relative; z-index: 5; background: radial-gradient(circle at center, var(--bg-surface) 0%, var(--bg-base) 100%); }
        .coverflow-container { display: flex; justify-content: center; align-items: center; height: 450px; perspective: 1500px; position: relative; }
        .coverflow-card {
            position: absolute; width: 280px; height: 380px; background: #080310;
            border-radius: 16px; border: 2px solid var(--neon-purple); overflow: hidden;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
            display: flex; flex-direction: column; cursor: pointer; box-shadow: 0 20px 50px rgba(0,0,0,0.8);
        }
        .coverflow-card img { width: 100%; height: 75%; object-fit: cover; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .card-info { padding: 15px; text-align: center; }
        .card-info h3 { font-family: var(--font-display); font-size: 1rem; color: var(--text-main); }
        .card-info .tag { color: var(--neon-green); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }

        .cf-active { transform: translateX(0) scale(1) translateZ(0); z-index: 10; border-color: var(--neon-green); box-shadow: 0 0 30px rgba(0,255,163,0.3); opacity: 1; }
        .cf-prev-1 { transform: translateX(-60%) scale(0.85) translateZ(-100px) rotateY(15deg); z-index: 9; opacity: 0.8; border-color: rgba(138,43,226,0.5); }
        .cf-next-1 { transform: translateX(60%) scale(0.85) translateZ(-100px) rotateY(-15deg); z-index: 9; opacity: 0.8; border-color: rgba(255,0,255,0.5); }
        .cf-prev-2 { transform: translateX(-110%) scale(0.7) translateZ(-250px) rotateY(25deg); z-index: 8; opacity: 0.4; }
        .cf-next-2 { transform: translateX(110%) scale(0.7) translateZ(-250px) rotateY(-25deg); z-index: 8; opacity: 0.4; }
        .cf-hidden { transform: scale(0.5) translateZ(-400px); opacity: 0; z-index: 1; pointer-events: none; }

        /* ==========================================
           5. TABS & GRID SECTION (MÓDULOS DO CURSO)
           ========================================== */
        .modules-section { padding: 100px 0; }
        .tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; flex-wrap: wrap; }
        .tab-btn {
            background: transparent; border: 1px solid rgba(255,255,255,0.2);
            color: var(--text-main); padding: 12px 30px; border-radius: 50px;
            cursor: pointer; font-family: var(--font-body); font-weight: 700; transition: 0.3s;
        }
        .tab-btn.active, .tab-btn:hover { background: var(--neon-pink); border-color: var(--neon-pink); box-shadow: 0 0 20px rgba(255,0,255,0.5); }
        
        .tab-content { display: none; animation: fadeIn 0.5s; }
        .tab-content.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        .market-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .market-card {
            background: var(--bg-surface); border: 2px solid rgba(255,0,255,0.2);
            border-radius: 20px; padding: 15px; transition: var(--transition-smooth);
        }
        .market-card:hover { transform: translateY(-10px); border-color: var(--neon-purple); box-shadow: 0 15px 30px rgba(138,43,226,0.3); }
        .market-card img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; margin-bottom: 15px; }
        .market-card-info h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 5px; }
        .market-card-info p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 15px; }
        .market-card .btn-neon-green { width: 100%; padding: 12px; font-size: 0.85rem; }

        /* ==========================================
           6. BÔNUS EXCLUSIVOS
           ========================================== */
        .bonus-section { padding: 100px 0; background: linear-gradient(180deg, var(--bg-base), var(--bg-surface)); }
        .bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
        .bonus-item {
            background: rgba(0,0,0,0.5); border: 1px dashed var(--neon-green);
            padding: 40px; border-radius: 16px; display: flex; align-items: center; gap: 30px;
        }
        .bonus-item img { width: 120px; height: 120px; border-radius: 10px; border: 2px solid #333; }
        .bonus-details h3 { font-family: var(--font-display); color: var(--neon-green); margin-bottom: 10px; }
        .price-strike { text-decoration: line-through; color: var(--text-muted); font-size: 1rem; display: block; margin-bottom: 5px; }
        .price-free { color: var(--text-main); font-size: 1.5rem; font-weight: 900; }

        /* ==========================================
           7. FAQ
           ========================================== */
        .faq-section { padding: 100px 0; }
        .faq-container { max-width: 800px; margin: 0 auto; }
        .faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 10px; }
        .faq-question {
            width: 100%; text-align: left; background: transparent; border: none;
            color: var(--text-main); font-family: var(--font-display); font-size: 1.1rem;
            padding: 25px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
        }
        .faq-question:hover { color: var(--neon-pink); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--text-muted); line-height: 1.6; }
        .faq-answer p { padding-bottom: 25px; }
        .faq-icon { color: var(--neon-pink); font-size: 1.5rem; transition: 0.3s; }
        .faq-item.active .faq-icon { transform: rotate(45deg); }

        /* ==========================================
           8. FINAL CTA & FOOTER
           ========================================== */
        .cta-section { padding: 120px 0; text-align: center; background: radial-gradient(circle, rgba(0,255,163,0.1) 0%, var(--bg-base) 60%); }
        .cta-section h2 { font-family: var(--font-display); font-size: 3.5rem; margin-bottom: 20px; text-transform: uppercase; }
        .cta-section p { color: var(--text-muted); margin-bottom: 40px; font-size: 1.2rem; }

        footer { padding: 40px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
        .footer-text { font-family: var(--font-display); font-size: 0.9rem; color: var(--text-muted); letter-spacing: 2px; }

        /* Responsividade */
        @media (max-width: 992px) {
            .hero-grid, .bar-container, .bonus-grid { grid-template-columns: 1fr; flex-direction: column; text-align: center; }
            .features-grid { grid-template-columns: 1fr; }
            .hero-content h1 { font-size: 3.5rem; }
            .bar-text h2 { font-size: 4rem; }
            .sliced-images { margin: 0 auto 50px auto; }
            .bonus-item { flex-direction: column; text-align: center; }
        }
    