/* ========================================
   PARDAL — Design System & Global Styles
   ======================================== */

/* CSS Custom Properties */
:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    
    --text-primary: #f0f0f5;
    --text-secondary: #9898a8;
    --text-muted: #5e5e70;
    
    --accent-blue: #2563eb;
    --accent-blue-light: #3b82f6;
    --accent-blue-glow: rgba(37, 99, 235, 0.4);
    
    --accent-orange: #f97316;
    --accent-orange-light: #fb923c;
    --accent-orange-glow: rgba(249, 115, 22, 0.4);
    
    --accent-purple: #8b5cf6;
    --accent-purple-light: #a78bfa;
    --accent-purple-glow: rgba(139, 92, 246, 0.4);
    
    --accent-green: #22c55e;
    --accent-green-glow: rgba(34, 197, 94, 0.3);
    
    --gradient-primary: linear-gradient(135deg, #3b82f6, #8b5cf6);
    --gradient-mojak: linear-gradient(135deg, #f97316, #ef4444);
    
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    
    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1200px;
    --border-radius: 16px;
    --border-radius-sm: 10px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ========================================
   Container
   ======================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

/* ========================================
   Animations
   ======================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-base);
}

.nav-logo:hover {
    filter: brightness(1.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: var(--transition-base);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
    z-index: 0;
    animation: float 15s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-blue-light);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    letter-spacing: 8px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0b0 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.hero-title-sub {
    display: block;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px var(--accent-blue-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-blue-glow);
}

.btn-glow::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: var(--transition-slow);
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--accent-blue);
    animation: scroll-line 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-size: 0.625rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

/* ========================================
   Section Headers
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-blue-light);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   About / Quem é Pardal Section
   ======================================== */

.about-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    position: relative;
}

.about-glow-left {
    position: absolute;
    top: 0;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.about-glow-right {
    position: absolute;
    bottom: -100px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* Top row: Image + Text */
.about-top {
    display: flex;
    align-items: center;
    gap: 64px;
    position: relative;
    z-index: 1;
}

/* Image Side */
.about-image-side {
    flex-shrink: 0;
}

.about-image-wrapper {
    position: relative;
    width: 320px;
    height: 400px;
}

.about-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 360px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

.about-image-border {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 20px;
    background: var(--gradient-primary);
    opacity: 0.6;
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
    display: block;
}

/* Text Side */
.about-text-side {
    flex: 1;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 28px;
    line-height: 1.1;
}

.about-question {
    color: var(--accent-blue-light);
    font-size: 1.1em;
}

.about-bio {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-bio strong {
    color: var(--text-primary);
    font-weight: 700;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-blue-light);
}

.about-highlight svg {
    flex-shrink: 0;
    color: var(--accent-orange);
}

/* Stats Row (below image + text) */
.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

.about-stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.about-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.25);
    background: rgba(37, 99, 235, 0.05);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
}

.about-stat-card:nth-child(2):hover {
    border-color: rgba(249, 115, 22, 0.25);
    background: rgba(249, 115, 22, 0.05);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.1);
}

.about-stat-card:nth-child(3):hover {
    border-color: rgba(139, 92, 246, 0.25);
    background: rgba(139, 92, 246, 0.05);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.1);
}

.about-stat-card:nth-child(4):hover {
    border-color: rgba(34, 197, 94, 0.25);
    background: rgba(34, 197, 94, 0.05);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.1);
}

.about-stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    color: var(--accent-blue-light);
    opacity: 0.8;
}

.about-stat-icon.icon-tokens { color: var(--accent-orange-light); }
.about-stat-icon.icon-world { color: var(--accent-purple-light); }
.about-stat-icon.icon-coach { color: var(--accent-green); }

.about-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 4px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-card:nth-child(2) .about-stat-value {
    background: var(--gradient-mojak);
    -webkit-background-clip: text;
    background-clip: text;
}

.about-stat-card:nth-child(3) .about-stat-value {
    background: linear-gradient(135deg, #8b5cf6, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
}

.about-stat-card:nth-child(4) .about-stat-value {
    background: linear-gradient(135deg, #22c55e, #4ade80);
    -webkit-background-clip: text;
    background-clip: text;
}

.about-stat-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

/* ========================================
   Melhores Tops Section
   ======================================== */

.tops-section {
    background: var(--bg-secondary);
    position: relative;
}

.tops-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.tops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.top-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.top-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.top-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: rgba(234, 179, 8, 0.2);
    border: 1px solid rgba(234, 179, 8, 0.4);
    color: #facc15;
    backdrop-filter: blur(8px);
}

.trophy-icon {
    width: 14px;
    height: 14px;
}

.badge-silver {
    background: rgba(148, 163, 184, 0.2);
    border-color: rgba(148, 163, 184, 0.4);
    color: #cbd5e1;
}

.badge-bronze {
    background: rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.4);
    color: #fb923c;
}

.top-card-img-wrapper {
    position: relative;
    height: 220px;
    cursor: pointer;
    overflow: hidden;
}

.top-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.top-card-img-wrapper:hover .top-card-img {
    transform: scale(1.08);
}

.top-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity var(--transition-base);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
}

.top-card-img-wrapper:hover .top-card-overlay {
    opacity: 1;
}

.top-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.top-prize-tag {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.prize-orange {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
    color: #fb923c;
}

.prize-purple {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
    color: #c084fc;
}

.top-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    margin-top: 4px;
}

.top-card-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   Image Lightbox Modal
   ======================================== */

.img-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.img-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.img-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    border: 1px solid var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.img-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.img-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.img-modal-caption {
    margin-top: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
}

/* ========================================
   Cursos Section
   ======================================== */

.cursos-section {
    background: var(--bg-secondary);
    position: relative;
}

.cursos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* Curso Card */
.curso-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-slow);
}

.curso-card:hover {
    transform: translateY(-8px);
}

.curso-card-inner {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.curso-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    transition: var(--transition-slow);
}

.curso-card-content {
    position: relative;
    z-index: 1;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.curso-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.curso-img-wrapper {
    position: relative;
    width: 100%;
    /* Keep aspect ratio square since image is square (1080x1080) */
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.curso-top-badge {
    position: relative;
    padding: 24px 0 12px;
    text-align: center;
    z-index: 10;
}

.curso-details {
    padding: 24px 28px 16px;
    text-align: center;
}

.curso-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.curso-price-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.price-old-inline {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-new-inline {
    font-size: 1.8rem;
    font-weight: 900;
    color: #4ade80; /* bright green */
}

.placeholder-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a1a24;
}

.placeholder-text {
    color: rgba(255,255,255,0.3);
    font-weight: 600;
    letter-spacing: 1px;
}

.curso-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
    transition: transform var(--transition-slow);
}

.curso-card:hover .curso-img {
    transform: scale(1.05);
}

.curso-cta-wrapper {
    padding: 24px 28px;
    background: rgba(0, 0, 0, 0.2);
}

.curso-badge {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
}

.curso-price {
    display: flex;
    align-items: flex-start;
    line-height: 1;
}

.price-currency {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 4px;
    margin-right: 2px;
}

.price-value {
    font-size: 2.75rem;
    font-weight: 900;
}

.price-cents {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 4px;
}

/* Curso Features */
.curso-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.feature-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Curso Button */
.btn-curso {
    width: 100%;
    justify-content: center;
    padding: 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-top: auto;
}

/* Iniciante Card */
.curso-iniciante .curso-card-inner {
    background: linear-gradient(180deg, #1a2744 0%, #0f1a2e 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.curso-iniciante:hover .curso-card-inner {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

.curso-iniciante .curso-badge {
    background: rgba(37, 99, 235, 0.2);
    color: var(--accent-blue-light);
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.curso-iniciante .feature-icon {
    color: var(--accent-blue-light);
}

.btn-iniciante {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-iniciante:hover {
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

/* Avançado Card */
.curso-avancado .curso-card-inner {
    background: linear-gradient(180deg, #2d1d0e 0%, #1a1208 100%);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.curso-avancado:hover .curso-card-inner {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.15);
}

.curso-avancado .curso-badge {
    background: rgba(249, 115, 22, 0.2);
    color: var(--accent-orange-light);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.curso-avancado .feature-icon {
    color: var(--accent-orange-light);
}

.btn-avancado {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-avancado:hover {
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

/* Popular badge */
.curso-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 24px;
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.featured {
    transform: scale(1.03);
}

.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

/* Pro Card */
.curso-pro .curso-card-inner {
    background: linear-gradient(180deg, #1a1a22 0%, #0e0e14 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.curso-pro:hover .curso-card-inner {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.05);
}

.curso-pro .curso-badge {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.curso-pro .feature-icon {
    color: #fff;
}

.btn-pro {
    background: linear-gradient(135deg, #fff, #e0e0e0);
    color: #0a0a0f;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.btn-pro:hover {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Standalone App Banner */
.app-standalone-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(29, 21, 51, 0.9), rgba(16, 16, 21, 0.9));
    border: 1px solid rgba(122, 66, 244, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(122, 66, 244, 0.15);
    position: relative;
    overflow: hidden;
}

.app-standalone-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 100% 50%, rgba(122, 66, 244, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.app-banner-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 60%;
}

.app-banner-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
}

.app-banner-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.app-banner-buy {
    display: flex;
    flex-direction: column;
    min-width: 280px;
}

.btn-app {
    background: linear-gradient(135deg, #7a42f4, #5a2ab3);
    color: white;
    box-shadow: 0 4px 15px rgba(122, 66, 244, 0.3);
}

.btn-app:hover {
    box-shadow: 0 8px 25px rgba(122, 66, 244, 0.4);
    transform: translateY(-2px);
}

/* ========================================
   MojakHub Section
   ======================================== */

.mojakhub-section {
    background: var(--bg-primary);
    overflow: hidden;
}

.mojak-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.06), rgba(239, 68, 68, 0.04));
    border: 1px solid rgba(249, 115, 22, 0.15);
    padding: 64px;
}

.mojak-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.mojak-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.mojak-text {
    flex: 1;
}

.mojak-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.gradient-text-mojak {
    background: var(--gradient-mojak);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mojak-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 440px;
}

.mojak-coupon-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.coupon-card {
    background: rgba(249, 115, 22, 0.08);
    border: 2px dashed rgba(249, 115, 22, 0.3);
    border-radius: var(--border-radius);
    padding: 28px 40px;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
}

.coupon-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
    background: rgba(249, 115, 22, 0.12);
}

.coupon-label {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 12px;
}

.coupon-code-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.coupon-code {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    background: var(--gradient-mojak);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coupon-copy-btn {
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--accent-orange);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.coupon-copy-btn:hover {
    background: rgba(249, 115, 22, 0.25);
    transform: scale(1.05);
}

.coupon-copy-btn.copied .copy-icon { display: none; }
.coupon-copy-btn.copied .check-icon { display: block !important; color: var(--accent-green); }

.coupon-copied-msg {
    font-size: 0.75rem;
    color: var(--accent-green);
    margin-top: 8px;
    opacity: 0;
    transform: translateY(-5px);
    transition: var(--transition-base);
}

.coupon-copied-msg.show {
    opacity: 1;
    transform: translateY(0);
}

.btn-mojak {
    background: var(--gradient-mojak);
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
    border: none;
    font-family: 'Outfit', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-mojak:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

/* ========================================
   Mapas Section
   ======================================== */

.mapas-section {
    background: var(--bg-secondary);
    position: relative;
}

.mapas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.mapas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mapa-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 0 0 32px 0;
    text-align: center;
    transition: all var(--transition-slow);
    overflow: hidden;
}

.mapa-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
}

.mapa-card-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.mapa-card:hover .mapa-card-glow {
    opacity: 1;
}

.mapa-glow-blue {
    background: radial-gradient(circle, var(--accent-blue-glow), transparent 70%);
}

.mapa-glow-orange {
    background: radial-gradient(circle, var(--accent-orange-glow), transparent 70%);
}

.mapa-glow-purple {
    background: radial-gradient(circle, var(--accent-purple-glow), transparent 70%);
}

.mapa-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 24px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.mapa-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.mapa-card:hover .mapa-img {
    transform: scale(1.05);
}

.mapa-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 8px;
    padding: 0 24px;
}

.mapa-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding: 0 24px;
}

.mapa-code-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    border-radius: var(--border-radius-base);
    transition: var(--transition-base);
    margin: 0 24px;
}

.mapa-card:hover .mapa-code-wrapper {
    border-color: var(--border-hover);
}

.mapa-code {
    font-family: 'Outfit', monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.mapa-copy-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mapa-copy-btn:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

.mapa-copy-btn.copied .copy-icon { display: none; }
.mapa-copy-btn.copied .check-icon { display: block !important; color: var(--accent-green); }

/* ========================================
   Twitch Banner
   ======================================== */

.twitch-banner {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(145, 70, 255, 0.08), rgba(100, 65, 165, 0.04));
    border: 1px solid rgba(145, 70, 255, 0.2);
    margin-bottom: 56px;
    transition: all var(--transition-base);
}

.twitch-banner:hover {
    border-color: rgba(145, 70, 255, 0.35);
    box-shadow: 0 8px 40px rgba(145, 70, 255, 0.1);
}

.twitch-banner-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(145, 70, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.twitch-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 48px;
    gap: 32px;
}

.twitch-banner-left {
    flex: 1;
}

.twitch-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(145, 70, 255, 0.15);
    border: 1px solid rgba(145, 70, 255, 0.3);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #bf94ff;
    margin-bottom: 16px;
}

.twitch-live-dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(255, 68, 68, 0); }
}

.twitch-banner-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.twitch-banner-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.btn-twitch {
    background: linear-gradient(135deg, #9146ff, #772ce8);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(145, 70, 255, 0.3);
    border: none;
    font-family: 'Outfit', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-twitch:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(145, 70, 255, 0.4);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--bg-primary);
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 6px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.footer-social-title {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-youtube:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.3);
    color: #ff0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
}

.social-instagram:hover {
    background: rgba(225, 48, 108, 0.15);
    border-color: rgba(225, 48, 108, 0.3);
    color: #e1306c;
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.2);
}

.social-tiktok:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.social-twitter:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.social-twitch:hover {
    background: rgba(145, 70, 255, 0.15);
    border-color: rgba(145, 70, 255, 0.3);
    color: #9146ff;
    box-shadow: 0 8px 25px rgba(145, 70, 255, 0.2);
}

.social-discord:hover {
    background: rgba(88, 101, 242, 0.15);
    border-color: rgba(88, 101, 242, 0.3);
    color: #5865F2;
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   Achievement Cards (About Section)
   ======================================== */

.about-achievements {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.achievement-card {
    flex: 1;
    min-width: 120px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    padding: 18px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all var(--transition-base);
}

.achievement-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.achievement-icon {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.achievement-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.achievement-suffix {
    font-size: 1.4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.achievement-label {
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.faq-item.active {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.05);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question span {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-blue-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========================================
   Toast
   ======================================== */

.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(22, 22, 31, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-hover);
    border-radius: 12px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-green);
    z-index: 9999;
    transition: transform var(--transition-spring);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .about-top {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .about-image-wrapper {
        width: 260px;
        height: 340px;
        margin: 0 auto;
    }
    
    .about-highlight {
        justify-content: center;
    }
    
    .about-stats-row {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cursos-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
    
    .featured {
        transform: none;
    }
    
    .featured:hover {
        transform: translateY(-8px);
    }
    
    .mapas-grid,
    .tops-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
    
    .mojak-content {
        flex-direction: column;
        text-align: center;
    }
    
    .mojak-desc {
        margin: 0 auto;
    }
    
    .mojak-wrapper {
        padding: 48px 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .app-standalone-banner {
        flex-direction: column !important;
        text-align: center;
        padding: 30px 20px;
        gap: 25px !important;
    }

    .app-banner-image-wrapper {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto;
    }

    .app-banner-content {
        align-items: center;
    }

    .app-banner-buy {
        width: 100%;
        min-width: unset;
        align-items: center;
    }

    .about-achievements {
        justify-content: center;
    }

    .faq-question {
        padding: 16px 18px;
    }

    .faq-question span {
        font-size: 0.88rem;
    }

    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 0.85rem;
    }
    
    .twitch-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .twitch-live-badge {
        margin: 0 auto 16px;
    }
    
    .btn-twitch {
        width: 100%;
        justify-content: center;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right var(--transition-base);
        border-left: 1px solid var(--border-color);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .mojak-wrapper {
        padding: 36px 24px;
    }
    
    .coupon-code {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .curso-card-content {
        padding: 28px 20px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .app-standalone-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }

    .app-banner-content {
        max-width: 100%;
        align-items: center;
    }

    .app-banner-buy {
        width: 100%;
        min-width: unset;
        align-items: center;
    }
}



/* NEW SECTIONS: BONUS, GUARANTEE, FAQ */

/* Bonus Box */
.bonus-box {
    background: linear-gradient(135deg, rgba(30,41,59,0.8), rgba(15,23,42,0.9));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px -10px rgba(168, 85, 247, 0.2);
    position: relative;
    overflow: hidden;
}

.bonus-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.bonus-badge {
    display: inline-block;
    background: rgba(168, 85, 247, 0.2);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(168, 85, 247, 0.4);
}

.bonus-list {
    list-style: none;
    margin-top: 20px;
}

.bonus-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-gray);
    font-weight: 600;
}

/* Guarantee Section */
.section-guarantee {
    background: linear-gradient(to bottom, #111827, #0f172a);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0;
}

.guarantee-container {
    text-align: center;
    max-width: 700px;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    color: #10b981; /* Emerald green */
    margin-bottom: 20px;
}

.guarantee-container h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.guarantee-container p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s, border-color 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.5);
}

.faq-item h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.faq-accordion-item {
    background: #0f172a; /* Dark sleek background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-btn {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-accordion-btn:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
    color: var(--primary); /* Purple plus icon */
    transition: transform 0.3s ease;
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #111827; /* Slightly different shade for content */
}

.faq-accordion-content p {
    padding: 0 25px 25px 25px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Active State */
.faq-accordion-item.active {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(45deg);
    color: #fff;
}

/* Override Guarantee Section */
.section-guarantee {
    background: transparent !important;
    border-top: none !important;
    border-bottom: none !important;
    padding: 30px 0 !important;
}

.guarantee-container p {
    font-size: 0.95rem !important;
}

.guarantee-container h2 {
    font-size: 1.5rem !important;
}
