/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais - baseadas na página principal */
    --primary-color: #9c27b0;
    --primary-dark: #6a1b6a;
    --secondary-color: rgb(156, 39, 176);
    --accent-color: #ff00ff;
    
    /* Gradientes - tema dark neon roxo-rosa */
    --gradient-primary: linear-gradient(135deg, #9c27b0 0%, rgb(130, 0, 170) 100%);
    --gradient-dark: linear-gradient(to bottom, rgb(130, 0, 170), rgb(19, 0, 20));
    --gradient-card: linear-gradient(135deg, rgba(30, 0, 40, 0.8) 0%, rgba(19, 0, 20, 0.9) 100%);
    --gradient-hero: linear-gradient(to bottom, rgba(130, 0, 170, 0.158), rgb(19, 0, 20));
    
    /* Cores de texto */
    --text-primary: #FFFFFF;
    --text-secondary: #D1D5DB;
    --text-muted: #9CA3AF;
    
    /* Cores de fundo - seguindo a página principal */
    --bg-primary: rgb(19, 0, 20);
    --bg-secondary: #180024;
    --bg-card: rgba(30, 0, 40, 0.8);
    --bg-surface: rgba(25, 0, 30, 0.9);
    
    /* Neon effects */
    --neon-purple: rgba(156, 39, 176, 0.6);
    --neon-pink: rgba(255, 0, 255, 0.4);
    --grid-color: rgba(108, 0, 138, 0.15);
    
    /* Espaçamentos */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --card-padding: 40px;
    
    /* Bordas e sombras */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 32px var(--neon-purple);
    --shadow-glow-intense: 0 0 50px rgba(156, 39, 176, 0.8);
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-secondary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Tipografia específica para títulos da seção de vídeo */
.video-section .section-header h2,
.video-section .section-header p {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

/* Utilitários */
.highlight {
    background: #ff00ff;
    /*text-shadow: 0 0 10px #D1D5DB;*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(19, 0, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--grid-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--neon-purple));
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a.cta-btn {
    background: linear-gradient(135deg, rgba(168, 34, 245, 0.15) 0%, rgba(218, 18, 248, 0.05) 100%);
    border: 1px solid rgba(218, 18, 248, 0.3) !important;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 600;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 
                inset 0 1px 1px rgba(255, 255, 255, 0.15),
                0 0 10px rgba(218, 18, 248, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav a.cta-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(168, 34, 245, 0.3) 0%, rgba(218, 18, 248, 0.1) 100%);
    border-color: rgba(218, 18, 248, 0.7) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 
                inset 0 1px 1px rgba(255, 255, 255, 0.25),
                0 0 20px rgba(218, 18, 248, 0.35);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    
    /* Grid pattern da página principal */
    background-image:
        linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
    background-size: 60px 60px;
    background-repeat: repeat;
    background-position: 0 0;
    background-blend-mode: soft-light;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, var(--neon-purple) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--neon-pink) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(156, 39, 176, 0.3) 0%, transparent 50%);
    opacity: 0.72;
    z-index: 1;
}

.hero-matrix {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.48;
    mix-blend-mode: lighten;
    filter: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 3;
    padding-top: 80px;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.feature .icon {
    font-size: 1.5rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(168, 34, 245, 0.35) 0%, rgba(218, 18, 248, 0.15) 100%);
    border: 1.5px solid rgba(218, 18, 248, 0.75) !important;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px 40px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                inset 0 1px 1px rgba(255, 255, 255, 0.25),
                0 0 20px rgba(218, 18, 248, 0.45);
    text-align: center;
    max-width: fit-content;
}

.btn-primary:hover {
    transform: translateY(-3px) !important;
    background: linear-gradient(135deg, rgba(168, 34, 245, 0.55) 0%, rgba(218, 18, 248, 0.25) 100%);
    border-color: rgba(218, 18, 248, 0.95) !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 
                inset 0 1px 1px rgba(255, 255, 255, 0.35),
                0 0 35px rgba(218, 18, 248, 0.75) !important;
}

.btn-primary.large {
    font-size: 1.2rem;
    padding: 24px 48px;
}

.btn-arrow {
    transition: var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.guarantee {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.hero-video {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-card);
}

.video-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

/* Seção de vídeo - layout e neon */
.video-section {
    padding: 60px 0;
}

.video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-card {
    margin: 12px; /* pequeno espaçamento externo para evitar colisão com outras seções */
}

.video-card {
    max-width: 900px;
    width: 100%;
    border-radius: 16px;
    padding: 0; /* remove padding para que a borda acompanhe exatamente */
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.video-embed {
    position: relative;
    overflow: visible; /* permitir glow fora do iframe */
    border-radius: 12px;
    background: transparent;
    aspect-ratio: 16 / 9; /* garante proporção 16:9 */
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    border-radius: 12px; /* combinar com o contêiner */
    background: #000;
}

/* Neon border effect */
.neon-border {
    position: relative;
}

.neon-border::before,
.neon-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    pointer-events: none;
}

.neon-border::before {
    box-shadow: 0 0 30px rgba(156,39,176,0.9), 0 0 80px rgba(255,0,255,0.5);
    filter: blur(6px);
    opacity: 1;
}

.neon-border::after {
    border: 2px solid rgba(156,39,176,0.35);
    box-shadow: 0 0 18px rgba(156,39,176,0.25) inset;
    background: linear-gradient(90deg, rgba(156,39,176,0.06), rgba(255,0,255,0.04));
    mix-blend-mode: screen;
    animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
    0% { box-shadow: 0 0 12px rgba(156,39,176,0.25); }
    50% { box-shadow: 0 0 30px rgba(156,39,176,0.6); }
    100% { box-shadow: 0 0 12px rgba(156,39,176,0.25); }
}

/* Responsivo: ajustar altura do iframe em telas pequenas */
@media (max-width: 768px) {
    .video-embed iframe {
        height: 320px;
    }
    .video-card {
        margin: 8px 16px;
    }
}

/* Ajustes apenas para mobile: esconder barra preta do player e manter o glow */
@media (max-width: 480px) {
    .video-card {
        position: relative; /* necessário para o pseudo-elemento de máscara */
        border-radius: 18px;
        overflow: visible; /* permitir glow, a máscara vai esconder a faixa preta */
    }

    .video-embed {
        aspect-ratio: 16 / 9;
        border-radius: 12px;
        overflow: hidden; /* garante cantos arredondados do vídeo */
    }

    /* Ajuste: reduzir levemente o vídeo para caber no frame neon existente e centralizar */
    .video-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .video-embed {
        padding: 8px; /* espaço interno para o neon 'encaixar' */
        box-sizing: border-box;
    }

    .video-embed iframe {
        transform: scale(0.98) translateY(-10%);
        transform-origin: center center;
        transition: transform 0.25s ease;
        max-width: 96%;
        margin: 0 auto;
    }

    /* Máscara degradê no rodapé para disfarçar qualquer faixa escura do player */
    .video-card::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 12%; /* reduzir máscara para não cortar tanto a imagem */
        pointer-events: none;
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(19,0,20,0.85) 100%);
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
    }

    /* Diminuir um pouco o blur do neon no mobile para não ficar exagerado */
    .neon-border::before {
        filter: blur(8px);
        opacity: 0.95;
    }

    .neon-border::after {
        box-shadow: 0 0 12px rgba(156,39,176,0.25) inset;
    }
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 16px;
    box-shadow: var(--shadow-glow);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}



.section-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------------------------------- */

.section-footer {
    text-align: center;
    margin-top: 60px;
}

.section-footer h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-footer p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}


/* About Section */
.about {
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.about-card {
    background: rgba(255, 255, 255, 0.007);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--card-padding);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.034) 0%, rgba(255, 255, 255, 0.01) 100%);
    opacity: 0;
    transition: 0.3s ease-in-out;
    z-index: 0;
    pointer-events: none;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.068);
    background: rgba(255, 255, 255, 0);
    border: 0.5px solid #ffffff31;
    box-shadow: 0 0px 60px rgba(255, 0, 234, 0.1);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card > * {
    position: relative;
    z-index: 1;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Curriculum Section */
.curriculum {
    background: linear-gradient(180deg, rgba(19, 0, 20, 0.95) 0%, rgba(24, 0, 36, 1) 100%);
}

.curriculum-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.summary-chip {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(156, 39, 176, 0.35);
    border-radius: 14px;
    padding: 18px 20px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.summary-chip strong {
    display: block;
    color: var(--accent-color);
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.summary-chip span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.module-card {
    background: linear-gradient(160deg, rgba(45, 0, 58, 0.48) 0%, rgba(20, 2, 24, 0.94) 100%);
    border: 1px solid rgba(156, 39, 176, 0.25);
    border-radius: 14px;
    padding: 22px;
    transition: var(--transition-smooth);
}

.module-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 0, 255, 0.55);
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.22);
}

.module-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.module-top h3 {
    font-size: 1.08rem;
    line-height: 1.35;
    color: #f3e8ff;
}

.module-badge {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.14);
    color: #c7ffd5;
}

.module-badge-building {
    border-color: rgba(251, 191, 36, 0.6);
    background: rgba(251, 191, 36, 0.16);
    color: #fde68a;
}

.module-badge-hot {
    border-color: rgba(249, 115, 22, 0.7);
    background: rgba(249, 115, 22, 0.2);
    color: #fed7aa;
}

.module-card-building {
    border-style: dashed;
    border-color: rgba(251, 191, 36, 0.55);
}

.module-card-featured {
    border-color: rgba(249, 115, 22, 0.65);
    box-shadow: 0 10px 28px rgba(249, 115, 22, 0.18);
    background: linear-gradient(160deg, rgba(72, 20, 8, 0.7) 0%, rgba(28, 8, 12, 0.95) 100%);
}

.module-card-featured:hover {
    border-color: rgba(251, 146, 60, 0.9);
    box-shadow: 0 14px 34px rgba(249, 115, 22, 0.26);
}

.module-card ul {
    list-style: none;
}

.module-card li {
    position: relative;
    color: var(--text-secondary);
    padding-left: 18px;
    margin-bottom: 8px;
    line-height: 1.55;
}

.module-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
}

.module-spotlight-cta {
    margin-top: 28px;
    border: 1px solid rgba(249, 115, 22, 0.45);
    border-radius: 14px;
    padding: 22px;
    background: linear-gradient(120deg, rgba(96, 24, 0, 0.3) 0%, rgba(30, 8, 20, 0.95) 100%);
}

.module-spotlight-cta p {
    color: #ffe7d2;
    margin-bottom: 14px;
}

.module-spotlight-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-module-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffd6b0;
    border: 1px solid rgba(251, 146, 60, 0.7);
    padding: 11px 16px;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-module-link:hover {
    background: rgba(251, 146, 60, 0.14);
    border-color: rgba(251, 146, 60, 0.95);
}

/* Bonus Section */
.bonus {
    background: var(--bg-primary);
}

.bonus-note-top {
    max-width: 900px;
    margin: 0 auto 18px auto;
    padding: 12px 20px;
    background: linear-gradient(90deg, rgba(34,197,94,0.06), rgba(156,39,176,0.03));
    border: 1px solid rgba(34,197,94,0.14);
    color: #e9ffe9;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.included-badge {
    display: inline-block;
    background: linear-gradient(90deg,#22C55E,#10B981);
    color: white;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 8px;
    box-shadow: 0 6px 18px rgba(16,185,129,0.12);
}

/* Ajuste para garantir que o badge não quebre o layout nos cards */
.bonus-card .bonus-value + .included-badge,
.bonus-highlight .bonus-value + .included-badge {
    display: inline-block;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.bonus-card {
    background: var(--gradient-card);
    padding: var(--card-padding);
    margin-bottom: -40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 0, 255, 0.2);
    transition: var(--transition-smooth);
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-color);
}

.bonus-value {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-primary);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.bonus-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.bonus-highlight {
    background: var(--gradient-card);
    padding: var(--card-padding);
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
    border: 1px solid #5a1566;
    transition: var(--transition-smooth);
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.144);
}

.bonus-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.6), 0 0 80px rgba(255, 0, 255, 0.3);
    border-color: rgba(255, 0, 255, 0.9);
}

.bonus-highlight .bonus-value {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-primary);
    font-weight: 700;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    font-size: 1.3rem;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.5);
}

.bonus-highlight h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.bonus-highlight p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.bonus-total {
    text-align: center;
    padding: 40px;
    background: var(--gradient-card);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.total-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.bonus-note {
    color: #e342ff;
    font-weight: 600;
    margin-top: 8px;
}

/* Instructor Section */
.instructor-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.instructor-image {
    text-align: center;
}

.instructor-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.instructor-info h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 8px;
}

.instructor-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.instructor-info p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.instructor-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    background: var(--bg-primary);
}

/* Nova seção de preço única */
.pricing-hero {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-spotlight {
    background: var(--gradient-card);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    text-align: center;
    border: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(156, 39, 176, 0.3);
}

.pricing-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--neon-purple) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.pricing-spotlight > * {
    position: relative;
    z-index: 1;
}

.spotlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #ff6b35, #ff0066);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(255, 102, 51, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.fire-icon {
    font-size: 1.1rem;
}

.pricing-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(156, 39, 176, 0.5);
}

.value-proposition {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.normal-price {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-label {
    background: #22C55E;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.main-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.main-price .currency {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.main-price .amount {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 30px rgba(156, 39, 176, 0.6);
}

.main-price .period {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.price-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.features-highlight {
    margin-bottom: 40px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 10px;
    border-radius: 8px;
    background: rgba(156, 39, 176, 0.05);
}

.feature-item .check {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span:last-child {
    color: var(--text-secondary);
    font-size: 1rem;
}

.bonus-highlight-section {
    background: rgba(255, 0, 255, 0.1);
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

.bonus-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.bonus-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.cta-section {
    margin-top: 40px;
}

.btn-mega-cta {
    display: block;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 25px 40px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(156, 39, 176, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-mega-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-mega-cta:hover::before {
    left: 100%;
}

.btn-mega-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(156, 39, 176, 0.6);
}

.btn-pricing-modules {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #f3ddff;
    border: 1px solid rgba(156, 39, 176, 0.6);
    background: rgba(156, 39, 176, 0.08);
    padding: 14px 22px;
    border-radius: 12px;
    margin-bottom: 22px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
}

.btn-pricing-modules:hover {
    border-color: rgba(255, 0, 255, 0.9);
    background: rgba(255, 0, 255, 0.1);
}

.cta-text {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.cta-subtext {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

.urgency-elements {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.timer-mockup, .social-proof {
    flex: 1;
    padding: 15px;
    background: rgba(156, 39, 176, 0.1);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border: 1px solid rgba(156, 39, 176, 0.2);
}

.timer-mockup {
    color: #ff6b35;
    font-weight: 600;
}

.social-proof {
    color: #22C55E;
    font-weight: 600;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
}

.card-header {
    margin-bottom: 32px;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1rem;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.currency {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period, .installments {
    color: var(--text-muted);
    font-size: 1rem;
}

.installments {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.features li {
    padding: 8px 0;
    color: var(--text-secondary);
}

.btn-pricing {
    display: block;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.15) 0%, rgba(218, 18, 248, 0.05) 100%);
    border: 1px solid rgba(218, 18, 248, 0.4) !important;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                inset 0 1px 1px rgba(255, 255, 255, 0.2),
                0 0 15px rgba(218, 18, 248, 0.15);
    text-align: center;
}

.btn-pricing:hover {
    transform: translateY(-2px) !important;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.35) 0%, rgba(218, 18, 248, 0.15) 100%);
    border-color: rgba(218, 18, 248, 0.8) !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 
                inset 0 1px 1px rgba(255, 255, 255, 0.3),
                0 0 30px rgba(218, 18, 248, 0.45) !important;
}

.btn-primary,
.btn-pricing,
.btn-mega-cta,
.btn-pricing-modules {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-primary::after,
.btn-pricing::after,
.btn-mega-cta::after,
.btn-pricing-modules::after {
    content: '';
    position: absolute;
    top: -120%;
    left: -35%;
    width: 42%;
    height: 340%;
    background: linear-gradient(
        115deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.12) 25%,
        rgba(255, 255, 255, 0.45) 48%,
        rgba(255, 255, 255, 0.1) 68%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(-220%) rotate(14deg);
    animation: glassSweep 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.btn-pricing-modules {
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

@keyframes glassSweep {
    0%, 76% {
        transform: translateX(-220%) rotate(14deg);
        opacity: 0;
    }
    80% {
        opacity: 0.9;
    }
    100% {
        transform: translateX(320%) rotate(14deg);
        opacity: 0;
    }
}

.guarantee-section {
    text-align: center;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--gradient-card);
    padding: 24px 40px;
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(34, 197, 94, 0.3);
    max-width: 500px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 2rem;
}

.guarantee-badge strong {
    color: #22C55E;
    font-size: 1.1rem;
}

.guarantee-badge p {
    color: var(--text-secondary);
    margin: 4px 0 0 0;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 20%, rgba(156, 39, 176, 0.2) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.04) 0%, transparent 42%);
    z-index: 0;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq .section-header {
    margin-bottom: 80px; /* Aumenta espaçamento específico para FAQ */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(160deg, rgba(13, 8, 24, 0.96) 0%, rgba(17, 10, 30, 0.9) 100%);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(227, 66, 255, 0.22);
    position: relative;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.26),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 0 16px rgba(156, 39, 176, 0.18);
    animation: faqGlow 5.5s ease-in-out infinite;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30%;
    width: 28%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
    transform: skewX(-16deg);
    animation: faqBorderSweep 7.2s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.faq-item::after {
    display: none;
}

.faq-item:nth-child(2)::before {
    animation-delay: -1.1s;
}

.faq-item:nth-child(3)::before {
    animation-delay: -2.3s;
}

.faq-item:nth-child(4)::before {
    animation-delay: -3.5s;
}

.faq-item:nth-child(5)::before {
    animation-delay: -4.7s;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(156, 39, 176, 0.08);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.faq-answer {
    margin-top: 25px;
    padding: 0 32px 24px 32px;
    display: none;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    text-shadow: 0 0 10px #e342ff;
}

.faq-item[id] {
    scroll-margin-top: 150px;
}

@keyframes faqBorderSweep {
    0%, 82% {
        left: -30%;
        opacity: 0;
    }
    86% {
        opacity: 0.65;
    }
    100% {
        left: 118%;
        opacity: 0;
    }
}

@keyframes faqGlow {
    0%, 100% {
        border-color: rgba(227, 66, 255, 0.2);
        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.26),
            0 0 0 1px rgba(255, 255, 255, 0.02) inset,
            0 0 14px rgba(156, 39, 176, 0.14);
    }
    50% {
        border-color: rgba(227, 66, 255, 0.38);
        box-shadow:
            0 12px 34px rgba(0, 0, 0, 0.29),
            0 0 0 1px rgba(255, 255, 255, 0.03) inset,
            0 0 22px rgba(227, 66, 255, 0.25);
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Final CTA */
.final-cta {
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    
    /* Grid pattern */
    background-image:
        linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
    background-size: 60px 60px;
    background-repeat: repeat;
    background-position: 0 0;
    background-blend-mode: soft-light;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-bottom: 32px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.urgency {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--grid-color);
    padding: 40px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-brand img {
    width: 40px;
    height: 40px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--grid-color);
    color: var(--text-muted);
}

.footer-bottom p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .instructor-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .instructor-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .nav {
        display: none;
    }

    .curriculum-summary {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .curriculum-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .module-card {
        padding: 18px;
    }

    .module-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .module-spotlight-cta {
        padding: 16px;
    }

    .module-spotlight-actions {
        flex-direction: column;
    }

    .btn-module-link,
    .btn-pricing-modules {
        width: 100%;
        text-align: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    /* Responsividade para nova seção de preço */
    .pricing-spotlight {
        padding: 40px 20px;
    }
    
    .main-price .amount {
        font-size: 4rem;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .bonus-items {
        grid-template-columns: 1fr;
    }
    
    .urgency-elements {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-mega-cta {
        padding: 20px 30px;
        font-size: 1.1rem;
    }

    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }


@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-primary {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .btn-primary.large {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
    
    .about-card,
    .bonus-card {
        padding: 24px;
    }
    
    /* Mobile para nova seção de preço */
    .pricing-content h3 {
        font-size: 1.8rem;
    }
    
    .main-price .amount {
        font-size: 3.5rem;
    }
    
    .main-price .currency {
        font-size: 2rem;
    }
    
    .value-proposition {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-mega-cta {
        padding: 18px 25px;
        font-size: 1rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }

    .faq .section-header {
        margin-bottom: 44px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

/* Code Window */
.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.6s both;
}

.code-window {
    background-color: rgba(15, 15, 15, 0.95);
    border-radius: 10px;
    box-shadow: 0 10px 20px #0000006e;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    border: 1px solid #222;
    transform: perspective(1000px) rotateY(-8deg);
    animation: fadeInRight 1s ease-out 0.3s both;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.code-window:hover {
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(156, 39, 176, 0.8);
    */transform: perspective(1000px) rotateY(-8deg) scale(1.1) translateY(-10px);
    }

.code-window-header {
    background-color: rgba(177, 29, 182, 0.9);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #222;
}

.window-controls {
    display: flex;
    gap: 8px;
    order: 2; /* Move para a direita */
}

.window-control {
    width: 8.9px;
    height: 8.9px;
    border-radius: 60%;
}

.window-control.close {
    background-color: #ff5656;
}

.window-control.minimize {
    background-color: #ffbd2e;
}

.window-control.maximize {
    background-color: #27c93f;
}

.window-title {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.9;
    font-weight: 500;
    order: 1; /* Move para a esquerda */
}

.code-content {
    padding: 1.2rem;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    max-height: 450px;
    overflow-y: auto;
    position: relative;
    background-color: rgba(10, 10, 10, 0.8);
    
    /* Ocultar scrollbar mas manter funcionalidade */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE e Edge */
}

/* Ocultar scrollbar no code-content para navegadores Webkit */
.code-content::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.code-line {
    display: flex;
    margin-bottom: 0.5rem;
    position: relative;
}

.line-number {
    color: #ffffff;
    opacity: 0.7;
    width: 30px;
    text-align: right;
    padding-right: 1rem;
    user-select: none;
}

.code-text {
    color: #fff;
    position: relative;
}

.code-comment {
    color: #ffffff;
}

.code-keyword {
    color: #ff79c6;
}

.code-function {
    color: #50fa7b;
}

.code-string {
    color: #f1fa8c;
}

.code-number {
    color: #bd93f9;
}

.code-operator {
    color: #ff79c6;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: perspective(1000px) translateX(50px) rotateY(-8deg);
    }
    to {
        opacity: 1;
        transform: perspective(1000px) translateX(0) rotateY(-8deg);
    }
}

@keyframes pulseGlow {
    0% {
        text-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
    }
}

/* ==================================== */
/* 7. Testimonials/Feedbacks Section - CORREÇÃO DE LAYOUT E ESTILOS */
/* ==================================== */

.testimonials-section {
    background-color: var(--color-dark-bg-2);
    padding: 100px 0;
    overflow: hidden;
}

/* Título da Seção (Mantenha o mesmo) */
.section-header h2 {
    /* ... mantenha a sua estilização de Press Start 2P e neon ... */
    font-size: 2.5em; 
    color: var(--color-primary); 
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--color-primary-transparent-light), 0 0 20px var(--color-primary-transparent-dark); 
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1.1em;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 60px;
}

/* O container do Grid agora usará display: grid para o layout principal */
.testimonials-grid {
    /* Carrossel horizontal: apresenta os depoimentos em cards roláveis em uma única linha. */
    display: flex;
    flex-direction: row;
    gap: 28px;
    padding: 0 20px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    align-items: stretch;
    max-width: 1200px;
}

/* Hint text indicating horizontal scroll */
.carousel-hint {
    max-width: 1200px;
    margin: 0 auto 18px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.carousel-hint .hint-desktop {
    display: inline-block;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.02);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(0,0,0,0.4);
}
.carousel-hint .hint-mobile {
    display: none;
    color: var(--text-secondary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .carousel-hint .hint-desktop { display: none; }
    .carousel-hint .hint-mobile { display: inline-block; }
    .carousel-hint { margin-bottom: 12px; }
}

/* Minimal scrollbar styling for the testimonials carousel (desktop) */
.testimonials-grid {
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: rgba(156,39,176,0.32) transparent;
    -ms-overflow-style: auto; /* Edge/IE */
}

.testimonials-grid::-webkit-scrollbar {
    height: 8px;
}
.testimonials-grid::-webkit-scrollbar-track {
    background: transparent;
    margin: 0 6px;
}
.testimonials-grid::-webkit-scrollbar-thumb {
    background: rgba(156,39,176,0.28);
    border-radius: 999px;
    border: 2px solid transparent; /* creates padding so thumb doesn't touch edges */
    background-clip: padding-box;
}
.testimonials-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(156,39,176,0.45);
}

/* Internal vertical scrollbar for long comments: minimal and subtle */
.comment {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.06) transparent;
}
.comment::-webkit-scrollbar {
    width: 8px;
}
.comment::-webkit-scrollbar-track {
    background: transparent;
}
.comment::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
}
.comment::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.12);
}

/* Accessibility: ensure keyboard users can tab into the carousel */
.testimonials-grid:focus {
    outline: none;
}

/* Removida regra que forçava o 4º card a ocupar toda a linha.
   Se desejar destacar um cartão específico, aplique a classe
   `.highlight-card` diretamente no HTML. */

/* Estilo do Card (Aplicando o estilo de caixa, sombra e hover) */
.testimonial-card {
    background-color: var(--color-dark-bg-3);
    border-radius: 12px;
    padding: 22px;
    border: 1px solid rgb(82, 82, 82);
    background-color: #19042c;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;

    display: flex;
    flex-direction: column;

    /* largura fixa no carrossel (reduzida 5px) e altura aumentada para caber mais conteúdo */
    flex: 0 0 355px;
    height: 380px;

    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
}

.testimonial-card:hover {
    /* Hover effects removed to keep cards estáticos e evitar mudanças de layout */
    transform: none !important;
    box-shadow: none !important;
    border-color: rgb(82, 82, 82) !important;
    z-index: 1 !important;
}

/* Estilos de Header, Avatar, Username e Date (Mantenha como estão) */
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    gap: 15px;
}

.avatar-icon img {
    /* CHAVE 1: Força a imagem a ocupar 100% da caixa circular */
    width: 100%;
    height: 100%;
    
    /* CHAVE 2: Garante o corte. Esta é a regra que fará a imagem
       preencher a caixa 1:1, cortando o que estiver fora do quadrado. */
    object-fit: cover;
    
    /* Garante que a imagem seja circular */
    border-radius: 50%;
    
    /* Garante que a imagem seja totalmente visível, desativando qualquer fade oculto */
    opacity: 1 !important; 
    transition: none !important; /* Anulação de qualquer transição */
}

/* Garante o contêiner fixo (já estava, mas para referência) */
.avatar-icon {
    width: 55px; 
    height: 55px;
    border-radius: 50%;
    overflow: hidden; /* ESSENCIAL: Garante que o que está fora do 55x55 seja cortado */
    /* ... demais estilos ... */
}
/* Estilo do Comentário */
.comment {
    font-size: 1em;
    color: var(--color-text-main);
    line-height: 1.2;
    /* Faz o comentário ocupar o espaço disponível e rolar internamente se necessário */
    flex-grow: 1;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    font-style: italic;
    color: #d5ccd6;
    overflow: auto;
    padding-right: 6px;
}

.user-info{
    display: flex;
    flex-direction: column;
}

.user-info .date{
    color: #5f5b61;
}

/* Estilo do Rodapé/Engajamento */
.engagement {
    font-size: 0.95em;
    color: var(--color-primary);
    /* CHAVE: Garante que o engagement fique no fundo do card, 
       sem margens estranhas. */
    margin-top: auto; 
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

/* Destaque para o feedback (ZEUS) */
.highlight-card {
    border: 3px solid var(--color-primary);
    box-shadow: 0 0 30px var(--color-primary-transparent-dark), 0 0 40px var(--color-primary-transparent-light);
}

.highlight-card:hover {
    /* Mantendo o destaque no hover */
    transform: translateY(-15px) scale(1.05); 
    box-shadow: 0 0 40px var(--color-primary), 0 0 60px var(--color-primary-transparent-light);
}

/* Mídia Query para telas menores */
@media (max-width: 768px) {
    
    /* 1. Reset da Grade para Coluna Única (Essencial!) */
    .testimonials-grid {
        /* Define 1 coluna para que os cards ocupem 100% da largura */
        grid-template-columns: 1fr; 
        gap: 30px; /* Reduz um pouco o espaçamento */
        padding: 0 15px; /* Adiciona padding para afastar das bordas da tela */
    }
    
    /* 2. Desativa a Expansão de Coluna no Mobile */
    .testimonials-grid .testimonial-card:nth-child(4) {
        /* Desfaz a expansão de coluna forçada para o item 'Themitido' */
        grid-column: auto;
        /* Remove a margem extra adicionada para o desktop */
        margin-top: 0;
        margin-bottom: 0;
    }
    
    /* 3. Ajuste do Título da Seção (se usar 'Press Start 2P', o tamanho deve ser fixo) */
    .section-header h2 {
        font-size: 1.8em; /* Garante que o título não seja muito grande */
        letter-spacing: 1px;
    }
    
    .section-header p {
        font-size: 1em;
        margin-bottom: 40px;
    }
    
    /* 4. Ajuste Geral dos Cards para evitar overflow */
    .testimonial-card {
        padding: 20px; /* Padding menor */
    }
    
    .comment {
        font-size: 0.95em;
    }
}

/* Seção Alvos e Ferramentas Estudadas */
.targets-section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(to bottom, transparent, rgba(11, 1, 13, 0.5));
}

.targets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.target-card {
    background: rgba(30, 0, 40, 0.35);
    border: 1px solid rgba(176, 38, 255, 0.18);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.target-card:hover {
    transform: translateY(-8px);
    border-color: rgba(218, 18, 248, 0.65);
    box-shadow: 0 20px 45px rgba(176, 38, 255, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.target-image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-bottom: 1px solid rgba(176, 38, 255, 0.15);
}

.target-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.target-card:hover .target-img {
    transform: scale(1.08);
}

.target-glow-purple, .target-glow-magenta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0.15;
    z-index: 1;
}

.target-glow-purple {
    background: linear-gradient(to top, rgba(168, 34, 245, 0.5) 0%, transparent 60%);
}

.target-glow-magenta {
    background: linear-gradient(to top, rgba(218, 18, 248, 0.5) 0%, transparent 60%);
}

.target-card:hover .target-glow-purple,
.target-card:hover .target-glow-magenta {
    opacity: 0.35;
}

.target-info {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
    z-index: 2;
    position: relative;
}

.target-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ffffff 60%, #c85eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.target-info p {
    font-size: 0.95rem;
    color: #b5a5bb;
    line-height: 1.55;
    margin: 0;
}

/* Custom Cursor inside Landing Page */
#cursor-dot {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.8), 0 0 4px rgba(255, 255, 255, 0.5);
}

#cursor-ring {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(176, 38, 255, 0.45);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.30s, height 0.30s, border-color 0.30s, background-color 0.30s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

#cursor-ring.hover {
    width: 48px;
    height: 48px;
    border-color: #c85eff;
    background-color: rgba(176, 38, 255, 0.08);
}

/* Ocultar cursor padrão em telas de Desktop na Landing Page */
@media (min-width: 769px) {
    body, a, button, input, select, textarea, .cta-btn, .btn-primary, .btn-pricing, .faq-question, .testimonial-card, .target-card, .pillar-card {
        cursor: none !important;
    }
}

/* Seção Sobre a Imersão (id="sobre") */
.about-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(11, 1, 13, 0.5), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
}

.about-text-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-badge {
    font-family: monospace;
    font-size: 0.85rem;
    color: #c85eff;
    letter-spacing: 2px;
    font-weight: 700;
}

.about-text-col h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.25;
    color: #ffffff;
}

.about-lead {
    font-size: 1.15rem;
    color: #ffffff;
    line-height: 1.65;
    font-weight: 500;
}

.about-text-col p {
    font-size: 1rem;
    color: #b5a5bb;
    line-height: 1.65;
    margin: 0;
}

.about-action {
    margin-top: 1.5rem;
}
.about-pillars-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pillar-card {
    background: rgba(15, 3, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover {
    transform: translateX(5px);
    border-color: rgba(176, 38, 255, 0.35);
    background: rgba(30, 0, 40, 0.55);
    box-shadow: 0 5px 20px rgba(176, 38, 255, 0.08);
}

.pillar-icon {
    font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.pillar-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.pillar-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.pillar-info p {
    font-size: 0.88rem;
    color: #a395a7;
    line-height: 1.45;
    margin: 0;
}
/* Responsividade do Sobre */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}
@media (max-width: 768px) {
    .about-text-col h2 {
        font-size: 2rem;
    }
    .pillar-card {
        padding: 1.4rem;
        gap: 1rem;
    }
}