/* ============================================
   ROAD-MAP.CSS - Página Road-map Cyber-Soul
   Design: Afrofuturismo + Cyberpunk + Glassmorphism
   ============================================ */

/* ==================== EMOJIS GERAIS ==================== */

/* Garantir que todos os emojis apareçam brancos e brilhantes */
.roadmap-section emoji,
.roadmap-section .emoji,
.hero-roadmap emoji,
.hero-roadmap .emoji,
.available-now-section emoji,
.available-now-section .emoji {
    color: #ffffff !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8) !important;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)) !important;
}

/* ==================== HERO SECTION ==================== */

.hero-roadmap {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0014 0%, #1a0a2e 50%, #0a0014 100%);
}

/* Canvas de Partículas */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Gradiente Overlay Animado */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: radial-gradient(
        ellipse at 20% 30%,
        rgba(255, 0, 255, 0.15) 0%,
        transparent 50%
    ),
    radial-gradient(
        ellipse at 80% 70%,
        rgba(139, 0, 255, 0.15) 0%,
        transparent 50%
    );
    animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Conteúdo do Hero */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-lg);
    margin-top: 80px; /* Espaço para o header fixo */
}

/* Badge de Status */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 50px;
    margin-bottom: var(--spacing-lg);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
    }
}

.badge-icon {
    font-size: 16px;
    animation: bounce 2s ease-in-out infinite;
}

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

.badge-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

/* Título do Hero */
.hero-title {
    font-family: var(--font-heading);
    margin: 0 0 var(--spacing-lg);
}

.title-line {
    display: block;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.title-highlight {
    display: block;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #ff00ff 50%, #8b00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: titleGradient 3s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(255, 0, 255, 0.5);
}

@keyframes titleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Subtítulo */
.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.hero-subtitle strong {
    color: #00ffff;
    font-weight: 700;
}

/* ==================== HERO PHASES BADGES (NOVO) ==================== */

.hero-phases {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
}

.phase-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    min-width: 120px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.phase-badge.phase-complete {
    border-color: rgba(0, 255, 0, 0.4);
    background: rgba(0, 255, 0, 0.05);
}

.phase-badge.phase-complete:hover {
    border-color: rgba(0, 255, 0, 0.6);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.phase-badge.phase-progress {
    border-color: rgba(255, 165, 0, 0.4);
    background: rgba(255, 165, 0, 0.05);
}

.phase-badge.phase-progress:hover {
    border-color: rgba(255, 165, 0, 0.6);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
}

.phase-badge.phase-planned {
    border-color: rgba(150, 150, 150, 0.3);
    background: rgba(150, 150, 150, 0.05);
}

.phase-badge.phase-planned:hover {
    border-color: rgba(150, 150, 150, 0.5);
    box-shadow: 0 0 20px rgba(150, 150, 150, 0.2);
}

.phase-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.phase-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    line-height: 1.4;
}

.phase-text small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
}

.phase-badge:hover {
    transform: translateY(-4px);
}

/* ==================== HERO CTAs ==================== */

.hero-ctas {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ff00ff, #8b00ff);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 0, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 0, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 0, 255, 0.5);
    transform: translateY(-4px);
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-hero:hover .btn-icon {
    transform: translateX(4px);
}

/* Indicador de Scroll */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    font-size: 24px;
}

/* ==================== SEÇÕES GERAIS ==================== */

.roadmap-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.roadmap-section:nth-child(even) {
    background: var(--bg-darker);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
}

.section-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 900;
    color: rgba(255, 0, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.section-title .emoji {
    font-size: 1.2em;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== DISPONÍVEL AGORA ==================== */

.available-now-section {
    background: linear-gradient(180deg, #1a0a2e 0%, #0a0014 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.available-now-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.status-badge.live {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    animation: livePulse 2s ease-in-out infinite;
}

.status-badge.live * {
    color: #00ff00 !important;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8) !important;
}

@keyframes livePulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
    }
}

.available-now-section .section-title {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.available-now-section .section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.available-now-section .grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.available-now-section .feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.available-now-section .feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 255, 0, 0.1);
}

.available-now-section .feature-card.highlight {
    border-color: rgba(255, 0, 255, 0.3);
    background: rgba(255, 0, 255, 0.05);
}

.available-now-section .feature-card.highlight:hover {
    border-color: rgba(255, 0, 255, 0.5);
    box-shadow: 0 8px 32px rgba(255, 0, 255, 0.2);
}

.available-now-section .feature-icon {
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.5));
}

.available-now-section .feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-md);
}

.available-now-section .feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 var(--spacing-md);
}

.feature-update {
    display: block;
    font-size: 12px;
    color: #00ff00;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 0, 0.5);
    color: #00ff00;
    transform: translateY(-2px);
}

/* ==================== INTRODUÇÃO ==================== */

.intro-section {
    background: linear-gradient(180deg, #0a0014 0%, #1a0a2e 100%);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0 0 var(--spacing-lg);
}

.intro-text.lead {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
}

.intro-text.explanation {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(255, 0, 255, 0.05);
    border-left: 3px solid rgba(255, 0, 255, 0.3);
    border-radius: var(--radius-sm);
    font-style: italic;
}

.highlight-gradient {
    background: linear-gradient(135deg, #ff00ff, #8b00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.highlight-neon {
    color: #00ffff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* ==================== GLASS CARDS ==================== */

.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

/* Border Gradient Animado */
.card-border-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, #ff00ff, #8b00ff, #00ffff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.glass-card:hover .card-border-gradient {
    opacity: 1;
}

/* Hover 3D Transform */
.glass-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(255, 0, 255, 0.3);
    border-color: rgba(255, 0, 255, 0.3);
}

/* ==================== CONCEPT CARDS ==================== */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.concept-card .card-content {
    position: relative;
    z-index: 2;
}

.card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-emoji {
    font-size: 48px;
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

.card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px;
    text-align: center;
}

.card-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
}

/* ==================== ATRIBUTOS RPG ==================== */

.attributes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-lg);
}

.attribute-card {
    text-align: center;
    padding: var(--spacing-lg);
}

.attr-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
}

.attr-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.attr-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 16px;
}

/* Barra de Atributo */
.attr-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.attr-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff00ff, #8b00ff);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    animation: fillBar 1.5s ease-out;
}

@keyframes fillBar {
    from { width: 0; }
}

/* ==================== SISTEMA DE RARIDADE ==================== */

.rarity-section {
    background: radial-gradient(ellipse at center, rgba(255, 0, 255, 0.05) 0%, transparent 70%);
}

.rarity-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
}

.rarity-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Cores por Raridade */
.rarity-card[data-rarity="comum"] {
    border: 2px solid rgba(200, 200, 200, 0.3);
}

.rarity-card[data-rarity="raro"] {
    border: 2px solid rgba(0, 123, 255, 0.5);
}

.rarity-card[data-rarity="epico"] {
    border: 2px solid rgba(138, 43, 226, 0.5);
}

.rarity-card[data-rarity="lendario"] {
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.rarity-card[data-rarity="mitico"] {
    border: 2px solid rgba(255, 0, 0, 0.6);
}

/* Glow de Raridade */
.rarity-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.rarity-card[data-rarity="comum"] .rarity-glow {
    background: radial-gradient(circle, rgba(200, 200, 200, 0.2) 0%, transparent 70%);
}

.rarity-card[data-rarity="raro"] .rarity-glow {
    background: radial-gradient(circle, rgba(0, 123, 255, 0.3) 0%, transparent 70%);
}

.rarity-card[data-rarity="epico"] .rarity-glow {
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, transparent 70%);
}

.rarity-card[data-rarity="lendario"] .rarity-glow {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
}

.rarity-card[data-rarity="mitico"] .rarity-glow {
    background: radial-gradient(circle, rgba(255, 0, 0, 0.4) 0%, transparent 70%);
}

.rarity-card:hover .rarity-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Border Animado de Raridade */
.rarity-border {
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.rarity-card[data-rarity="comum"] .rarity-border {
    background: linear-gradient(135deg, #c8c8c8, #888888);
}

.rarity-card[data-rarity="raro"] .rarity-border {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.rarity-card[data-rarity="epico"] .rarity-border {
    background: linear-gradient(135deg, #8a2be2, #5e307c);
}

.rarity-card[data-rarity="lendario"] .rarity-border {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.rarity-card[data-rarity="mitico"] .rarity-border {
    background: linear-gradient(135deg, #ff0000, #8b0000);
}

.rarity-card:hover .rarity-border {
    opacity: 1;
}

.rarity-card:hover {
    transform: translateY(-8px) scale(1.05);
}

/* Conteúdo da Raridade */
.rarity-content {
    position: relative;
    z-index: 2;
}

.rarity-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
}

.rarity-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rarity-range {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

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

.range-value {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Barra de Raridade */
.rarity-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.rarity-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.rarity-card[data-rarity="comum"] .rarity-fill {
    background: linear-gradient(90deg, #c8c8c8, #888888);
}

.rarity-card[data-rarity="raro"] .rarity-fill {
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.rarity-card[data-rarity="epico"] .rarity-fill {
    background: linear-gradient(90deg, #8a2be2, #5e307c);
}

.rarity-card[data-rarity="lendario"] .rarity-fill {
    background: linear-gradient(90deg, #ffd700, #ff8c00);
}

.rarity-card[data-rarity="mitico"] .rarity-fill {
    background: linear-gradient(90deg, #ff0000, #8b0000);
}

/* ==================== FEATURES ==================== */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card,
.available-card {
    position: relative;
}

.feature-content,
.available-content {
    position: relative;
    z-index: 2;
}

.feature-icon,
.available-icon {
    font-size: 56px;
    margin-bottom: var(--spacing-md);
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.6));
}

.feature-title,
.available-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px;
}

.feature-description,
.available-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.available-description {
    margin-bottom: var(--spacing-lg);
}

/* ==================== BOTÕES NEON (CTAs) ==================== */

.btn-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: rgba(255, 0, 255, 0.1);
    border: 2px solid #ff00ff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

/* Border Runner (linha animada) */
.btn-border-runner {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.6), transparent);
    animation: borderRun 2s linear infinite;
}

@keyframes borderRun {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Glow Pulsante */
.btn-glow-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.3) 0%, transparent 70%);
    animation: glowPulseBtn 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulseBtn {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* Conteúdo do Botão */
.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-cta:hover {
    background: rgba(255, 0, 255, 0.2);
    border-color: #ff00ff;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
    transform: translateY(-4px);
}

.btn-cta:hover .btn-icon {
    transform: translateX(4px);
}

.btn-cta:active {
    transform: translateY(-2px);
}

/* Ripple Effect ao Click */
.btn-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta:active::after {
    width: 300px;
    height: 300px;
}

/* ==================== TIMELINE ==================== */

.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Linha Vertical da Timeline */
.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Progresso Animado */
.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, #ff00ff, #8b00ff);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
    animation: timelineProgress 3s ease-out forwards;
}

@keyframes timelineProgress {
    to { height: 100%; }
}

/* Timeline Items */
.timeline {
    padding-left: 100px;
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-2xl);
    opacity: 0;
    transform: translateX(-50px);
}

.timeline-item.animate-in {
    animation: fadeInLeft 0.8s ease-out forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Marcador da Timeline */
.timeline-marker {
    position: absolute;
    left: -100px;
    top: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Anel Pulsante */
.marker-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #ff00ff;
    border-radius: 50%;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

/* Ponto Central */
.marker-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff00ff, #8b00ff);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
}

/* Ícone do Marcador */
.marker-icon {
    position: relative;
    z-index: 2;
    font-size: 28px;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* Item Atual */
.timeline-item.current .marker-ring {
    border-color: #00ffff;
    animation: ringPulseCurrent 1.5s ease-in-out infinite;
}

@keyframes ringPulseCurrent {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    }
}

.timeline-item.current .marker-dot {
    background: linear-gradient(135deg, #00ffff, #00aaff);
    box-shadow: 0 0 30px rgba(0, 255, 255, 1);
}

/* Conteúdo da Timeline */
.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 0, 255, 0.3);
    transform: translateX(8px);
}

.timeline-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 0, 255, 0.2);
    border: 1px solid rgba(255, 0, 255, 0.4);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff00ff;
    margin-bottom: 12px;
}

.timeline-item.current .timeline-badge {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.4);
    color: #00ffff;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.timeline-date {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 16px;
}

.timeline-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* ==================== RESPONSIVIDADE ==================== */

@media (max-width: 768px) {
    /* Hero */
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    /* Phase Badges */
    .hero-phases {
        gap: var(--spacing-sm);
    }
    
    .phase-badge {
        min-width: 100px;
        padding: 12px 16px;
    }
    
    .phase-icon {
        font-size: 24px;
    }
    
    /* Grids */
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .attributes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rarity-cards-grid {
        grid-template-columns: 1fr;
    }
    
    /* Timeline */
    .timeline-line {
        left: 20px;
    }
    
    .timeline {
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: -60px;
        width: 60px;
        height: 60px;
    }
    
    .marker-ring {
        width: 40px;
        height: 40px;
    }
    
    .marker-dot {
        width: 16px;
        height: 16px;
    }
    
    .marker-icon {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .attributes-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        flex-direction: column;
        gap: 8px;
    }
    
    .phase-badge {
        min-width: 90px;
        padding: 10px 12px;
    }
}

/* ==================== ACESSIBILIDADE ==================== */

/* Reduzir animações para usuários sensíveis */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Melhor contraste para texto */
@media (prefers-contrast: high) {
    .hero-subtitle,
    .intro-text,
    .card-description,
    .feature-description,
    .available-description,
    .timeline-description {
        color: #ffffff;
    }
}