/* --- CONFIGURAÇÕES GLOBAIS E VARIÁVEIS --- */
:root {
    --color-black: #050505;
    --color-dark: #111;
    --color-red: #ff003c;
    --color-white: #f5f5f5;
    --color-grey: #aaa;
    --color-green-status: #28a745; 
    --font-main: 'Bai Jamjuree', sans-serif;
    --glow-shadow: 0 0 5px var(--color-red), 0 0 10px rgba(255, 0, 60, 0.5);
    --scroll-duration-normal: 50s;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* --- PRELOADER TECNOLÓGICO PROFISSIONAL --- */
#preloader {
    position: fixed;
    inset: 0;
    background-color: var(--color-black);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    transform: translateY(0);
}
.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 90%;
    max-width: 400px;
    opacity: 1;
    transition: opacity 0.4s ease;
}
.preloader-logo-new {
    width: 100px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInLogo 1s ease 0.5s forwards;
}
@keyframes fadeInLogo {
    to { opacity: 1; transform: translateY(0); }
}
.preloader-status {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-grey);
    font-size: 1rem;
    font-family: var(--font-main);
    font-weight: 600;
}
#preloader-percentage {
    color: var(--color-white);
}
.progress-bar-container {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.4);
}
.progress-bar-inner {
    width: 0%;
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #b00029, var(--color-red));
    position: relative;
    overflow: hidden;
    transition: width 0.05s linear;
}
.progress-bar-inner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg, 
        transparent 40%, 
        rgba(255, 255, 255, 0.35) 48%, 
        rgba(255, 255, 255, 0.35) 52%, 
        transparent 60%
    );
    animation: shine 1.5s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-75%) translateY(-25%) rotate(-30deg); }
    100% { transform: translateX(25%) translateY(25%) rotate(-30deg); }
}

.progress-bar-inner.glowing {
    animation: pulse-glow-bar 1s infinite alternate;
}

@keyframes pulse-glow-bar {
    from {
        box-shadow: 0 0 8px var(--color-red), 0 0 12px var(--color-red);
    }
    to {
        box-shadow: 0 0 16px #ff4d6d, 0 0 25px #ff4d6d;
    }
}

#preloader.loading-finished .preloader-content {
    opacity: 0;
}
#preloader.loaded {
    transform: translateY(-100%);
}

/* --- FUNDO GLOBAL --- */
body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    cursor: none;
    position: relative;
    background-image: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(100, 10, 30, 0.3), transparent);
    background-repeat: no-repeat;
    background-attachment: fixed;
}
body.nav-open { overflow: hidden; }

#particle-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; opacity: 0.5; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
a { text-decoration: none; color: inherit; }
li { list-style: none; }

/* --- CURSOR PERSONALIZADO --- */
.cursor-dot, .cursor-outline { pointer-events: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; z-index: 9999; opacity: 0; transition: opacity 0.3s ease, transform 0.2s ease; }
.cursor-dot { width: 8px; height: 8px; background-color: var(--color-red); }
.cursor-outline { width: 40px; height: 40px; border: 2px solid var(--color-red); }
body:hover .cursor-dot, body:hover .cursor-outline { opacity: 1; }

/* --- HEADER E NOVO LOGO --- */
.main-header { 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    padding: 2.5rem 5%;
    transition: background-color 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.main-header.scrolled {
    background-color: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    padding: 1rem 5%; 
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 1rem; }
.logo-image { 
    height: 60px;
    transition: height 0.4s ease;
}
.main-header.scrolled .logo-image {
    height: 45px;
}
.logo-text-new { font-family: var(--font-main); font-size: 2.5rem; line-height: 1; font-weight: 700; color: var(--color-white); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-link { font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; padding-bottom: 5px; position: relative; transition: color 0.3s; }
.nav-link:hover { color: var(--color-red); }
.nav-cta { font-weight: 600; padding: 0.75rem 1.5rem; border: 2px solid var(--color-red); color: var(--color-white); transition: all 0.3s ease; font-size: 0.9rem; }
.nav-cta:hover { background-color: var(--color-red); color: var(--color-black); box-shadow: 0 0 15px var(--color-red); }

.mobile-nav-socials-wrapper { display: none; }
.mobile-nav-toggle { display: none; }

/* --- HERO SECTION --- */
.hero { display: flex; align-items: center; justify-content: center; padding: 12rem 5% 6rem; min-height: 100vh; position: relative; text-align: center; }
.hero-content { flex-basis: 100%; max-width: 800px; }

.hero-content > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
body.site-loaded .hero-content > * {
    opacity: 1;
    transform: translateY(0);
}
body.site-loaded .hero-content h1 { transition-delay: 0.8s; }
body.site-loaded .hero-content p { transition-delay: 0.9s; }
body.site-loaded .hero-content .hero-buttons-container { transition-delay: 1s; }

.hero-content h1 { font-family: var(--font-main); font-weight: 700; font-size: clamp(2.5rem, 7vw, 6rem); line-height: 1; color: var(--color-white); margin-bottom: 1.5rem; text-transform: uppercase; min-height: auto; }
.hero-content p { font-size: 1.1rem; max-width: 600px; color: var(--color-grey); margin: 0 auto 2rem auto; line-height: 1.6; }
.hero-buttons-container { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.cta-button { display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; background-color: var(--color-red); color: var(--color-white); padding: 1.2rem 2.5rem; font-weight: 600; transition: all 0.3s ease; font-size: 1rem; border: 2px solid var(--color-red); }
.cta-button:hover { filter: brightness(1.2); transform: translateY(-5px); box-shadow: var(--glow-shadow); }
.cta-button i { transition: transform 0.3s ease; }
.cta-button:hover i { transform: translateX(5px); }
.cta-button-secondary { display: inline-block; padding: 1.2rem 2.5rem; font-weight: 600; font-size: 1rem; color: var(--color-white); background-color: transparent; border: 2px solid var(--color-grey); transition: all 0.3s ease; }
.cta-button-secondary:hover { background-color: var(--color-white); border-color: var(--color-white); color: var(--color-black); transform: translateY(-5px); box-shadow: 0 0 15px rgba(255,255,255,0.5); }

.typed-cursor { color: var(--color-red); font-weight: 100; }

.scroll-down-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); width: 24px; height: 40px; border: 2px solid var(--color-grey); border-radius: 20px; cursor: pointer; }
.scroll-down-indicator .arrow {
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        top: 8px;
    }
    40% {
        top: 16px;
    }
    60% {
        top: 12px;
    }
}

/* --- SEÇÕES GERAIS --- */
section { padding: 6rem 0; position: relative; }
.section-title { font-family: var(--font-main); font-weight: 700; font-size: clamp(2.5rem, 6vw, 4rem); text-align: center; margin-bottom: 4rem; color: var(--color-white); text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.how-it-works-section { background-color: var(--color-black); padding: 6rem 0; }
.how-it-works-container { display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; gap: 5rem; }
.how-it-works-content h3 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--color-red); }
.how-it-works-content p { color: var(--color-grey); line-height: 1.7; margin-bottom: 2rem; }
.how-it-works-content ul { list-style: none; padding: 0; }
.how-it-works-content ul li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; color: var(--color-white); }
.how-it-works-content ul li i { color: var(--color-red); font-size: 1.2rem; margin-top: 5px; }
.how-it-works-script-image { width: 100%; height: auto; border-radius: 10px; transition: transform 0.4s ease; }
.how-it-works-script-image:hover { transform: scale(1.03); }

.features-section { background-color: rgba(17, 17, 17, 0.5); backdrop-filter: blur(5px); }
.features-grid-condensed { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.feature-card { background: var(--color-black); padding: 2.5rem; text-align: center; border: 1px solid rgba(255, 255, 255, 0.1); position: relative; overflow: hidden; transition: transform 0.3s ease; display: flex; flex-direction: column; border-radius: 10px; }
.feature-card:hover, .feature-card.is-in-view { transform: translateY(-10px); }
.feature-card:hover::before, .feature-card.is-in-view::before { opacity: 1; }
.feature-card::before { content: ''; position: absolute; top: 50%; left: 50%; width: 300%; height: 300%; background: conic-gradient(transparent, var(--color-red), transparent 30%); transform: translate(-50%, -50%); animation: rotate-glow 4s linear infinite; opacity: 0; transition: opacity 0.4s ease; }
.feature-card::after { content: ''; position: absolute; inset: 1px; background: var(--color-black); z-index: 1; border-radius: 9px; }
.feature-card > * { z-index: 2; position: relative; }
@keyframes rotate-glow { to { transform: translate(-50%, -50%) rotate(300deg); } }
.feature-icon { font-size: 2.5rem; color: var(--color-red); margin-bottom: 1.5rem; text-shadow: var(--glow-shadow); }
.feature-card h3 { font-family: var(--font-main); font-weight: 700; font-size: 1.8rem; margin-bottom: 1rem; flex-shrink: 0; text-transform: uppercase; }
.feature-card p { color: var(--color-grey); font-size: 0.9rem; line-height: 1.6; }

.showcase-section { padding: 6rem 0; background-color: var(--color-black); }
.showcase-container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 5rem; }
.showcase-video-wrapper { position: relative; }
.showcase-video { width: 100%; border-radius: 10px; }
.showcase-title-custom { text-align: left; margin-bottom: 2.5rem; font-size: clamp(2.5rem, 5vw, 4rem) !important; line-height: 1.1; }
.showcase-content ul { list-style: none; padding: 0; margin: 0 0 2.5rem 0; display: flex; flex-direction: column; gap: 2rem; }
.showcase-content ul li { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: flex-start; color: var(--color-grey); line-height: 1.6; }
.showcase-content ul li i { font-size: 1.8rem; color: var(--color-red); margin-top: 5px; }
.showcase-content ul li strong { display: block; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--color-white); }

.testimonials-section { padding: 6rem 0; background: var(--color-black); position: relative; }
.testimonials-carousel { display: flex; flex-direction: column; gap: 2rem; }
.scroller { max-width: 100%; overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent); mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent); }
.scroller__inner { display: flex; flex-wrap: nowrap; gap: 2rem; width: max-content; animation: scroll var(--scroll-duration-normal) linear infinite; }
.scroller[data-direction="right"] .scroller__inner { animation-direction: reverse; }
.scroller:hover .scroller__inner { animation-play-state: paused; }
@keyframes scroll { to { transform: translate(calc(-50% - 1rem)); } }
.testimonial-card { flex: 0 0 auto; width: 380px; background: var(--color-dark); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 10px; padding: 2rem; display: flex; flex-direction: column; gap: 1rem; transition: transform 0.3s ease; }
.testimonial-card:hover { transform: scale(1.05); }
.testimonial-card .stars { color: var(--color-red); font-size: 1.1rem; text-shadow: 0 0 8px var(--color-red); }
.testimonial-card p { color: var(--color-grey); font-size: 1rem; line-height: 1.6; margin: 0; }
.testimonial-card h4 { font-family: var(--font-main); font-weight: 600; color: var(--color-white); margin-top: auto; }

.games-selection-section { padding-top: 4rem; background-color: rgba(17, 17, 17, 0.5); backdrop-filter: blur(5px); }
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.game-card { position: relative; height: 350px; border-radius: 10px; overflow: hidden; cursor: none; border: 3px solid transparent; transition: all 0.4s ease; background-color: #080808; }
.game-card.active, .game-card.is-in-view.active { border-color: var(--color-red); box-shadow: var(--glow-shadow); }
.game-card:hover, .game-card.is-in-view { transform: translateY(-10px); }
.game-card:hover img, .game-card.is-in-view img { transform: scale(1.05); }
.game-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.game-card-title { position: absolute; bottom: 0; left: 0; width: 100%; padding: 1.5rem; font-family: var(--font-main); font-weight: 700; font-size: 1.8rem; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); text-transform: uppercase; z-index: 3; }
.game-card--locked { cursor: not-allowed !important; }
.lock-overlay { position: absolute; inset: 0; background-color: rgba(0, 0, 0, 0.7); z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1rem; opacity: 0; pointer-events: none; transition: opacity 0.3s ease-in-out; }
.game-card--locked:hover .lock-overlay { opacity: 1; }
.lock-overlay i { font-size: 4rem; color: var(--color-white); text-shadow: var(--glow-shadow); }
.lock-overlay span { font-family: var(--font-main); font-weight: 600; font-size: 1.2rem; color: var(--color-white); text-transform: uppercase; letter-spacing: 1px; }
.game-card-status { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.status-dot { width: 10px; height: 10px; background-color: var(--color-green-status); border-radius: 50%; box-shadow: 0 0 8px var(--color-green-status); animation: pulse-glow 2s infinite ease-in-out; }
.status-text { font-family: var(--font-main); font-size: 0.8rem; font-weight: 600; color: var(--color-green-status); letter-spacing: 1px; text-transform: uppercase; }

/* ANIMAÇÃO DA BOLINHA DE STATUS */
@keyframes pulse-glow {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.plans-section { padding-bottom: 6rem; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; align-items: stretch; }
.plan-card { display: flex; flex-direction: column; background: var(--color-black); border: 2px solid #222; border-radius: 10px; padding: 2.5rem; text-align: center; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden; }
.plan-card:hover { transform: translateY(-10px); border-color: #444; box-shadow: 0 10px 30px rgba(0,0,0,0.5), var(--glow-shadow); }
.plan-card.plan-card--popular { border-color: var(--color-red); }
.plan-card.plan-card--popular::before { content: 'Mais Vendido'; position: absolute; top: 20px; right: -35px; background: var(--color-red); color: var(--color-black); padding: 5px 30px; font-size: 0.9rem; font-weight: 700; transform: rotate(45deg); z-index: 3; }
.plan-card h3 { font-family: var(--font-main); font-weight: 700; font-size: clamp(1.5rem, 4vw, 2rem); color: var(--color-white); margin-bottom: 0.5rem; text-transform: uppercase; }
.plan-card .plan-price { font-family: var(--font-main); font-weight: 700; font-size: clamp(2.8rem, 8vw, 3.5rem); color: var(--color-red); line-height: 1; margin-bottom: 0.5rem; }
.plan-duration { font-size: 1.2rem; color: var(--color-grey); }
.plan-old-price { color: var(--color-grey); margin-bottom: 1rem; }
.plan-description { color: var(--color-grey); font-size: 0.9rem; margin: 1rem 0; min-height: 55px; }
.plan-features { list-style: none; margin: 1.5rem 0; text-align: left; }
.plan-features li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; color: var(--color-grey); }
.plan-features li i { color: var(--color-red); }
.beta-tag { background: #ffc107; color: var(--color-black); font-size: 0.7rem; font-weight: 600; padding: 2px 5px; border-radius: 4px; margin-left: auto; }
.plan-buttons { margin-top: auto; display: flex; flex-direction: column; gap: 1rem; z-index: 2; }
.plan-button { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem; text-decoration: none; font-weight: 600; transition: all 0.3s ease; border: 2px solid; position: relative; overflow: hidden; }
.plan-button.hardware { background: var(--color-red); color: var(--color-black); border-color: var(--color-red); }
.plan-button.hardware:hover { filter: brightness(1.2); transform: scale(1.05); }
.plan-button.software--coming-soon { background: transparent; border-color: #444; color: var(--color-grey); cursor: not-allowed; }
.plan-button.software--coming-soon:hover { border-color: #666; }
.plan-button.software--coming-soon .text-default, .plan-button.software--coming-soon .text-hover { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; transition: opacity 0.3s ease, transform 0.3s ease; gap: 0.5rem; }
.plan-button.software--coming-soon .text-hover { position: absolute; top: 0; left: 0; opacity: 0; transform: translateY(15px); }
.plan-button.software--coming-soon:hover .text-default { opacity: 0; transform: translateY(-15px); }
.plan-button.software--coming-soon:hover .text-hover { opacity: 1; transform: translateY(0); }

.corner-bracket { position: absolute; width: 25px; height: 25px; border-color: var(--color-red); border-style: solid; opacity: 0; transition: opacity 0.3s ease, transform 0.3s ease; }
.plan-card:hover .corner-bracket { opacity: 1; }
.plan-card.plan-card--popular .corner-bracket { opacity: 1; }
.corner-bracket.top-left { top: -2px; left: -2px; border-width: 3px 0 0 3px; }
.corner-bracket.top-right { top: -2px; right: -2px; border-width: 3px 3px 0 0; }
.corner-bracket.bottom-left { bottom: -2px; left: -2px; border-width: 0 0 3px 3px; }
.corner-bracket.bottom-right { bottom: -2px; right: -2px; border-width: 0 3px 3px 0; }

#promo-section { padding: 0 0 6rem 0; }
.promo-box { background: linear-gradient(145deg, var(--color-dark), var(--color-black)); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 10px; padding: 3rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.promo-box:hover { transform: translateY(-10px); box-shadow: var(--glow-shadow); }
.promo-icon { font-size: 3rem; color: var(--color-red); text-shadow: var(--glow-shadow); }
.promo-box h3 { font-family: var(--font-main); font-weight: 700; font-size: 2.5rem; text-transform: uppercase; }
.promo-box p { color: var(--color-grey); max-width: 600px; line-height: 1.7; }
.promo-button { font-weight: 600; padding: 1rem 2rem; border: 2px solid var(--color-red); color: var(--color-white); transition: all 0.3s ease; }
.promo-button:hover { background: var(--color-red); color: var(--color-black); }

#faq-section { background-color: var(--color-black); padding-top: 6rem; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.faq-question { width: 100%; background: none; border: none; color: var(--color-white); padding: 2rem 0; display: flex; justify-content: space-between; align-items: center; text-align: left; cursor: pointer; font-size: 1.2rem; font-weight: 600; font-family: var(--font-main); }
.faq-question i { color: var(--color-red); font-size: 1.5rem; transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1); }
.faq-item.active .faq-question i { transform: rotate(135deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.19, 1, 0.22, 1); }
.faq-answer p { padding: 0 1rem 2rem 0; color: var(--color-grey); line-height: 1.7; }
.discord-cta-box { background: var(--color-dark); border: 1px solid rgba(255, 255, 255, 0.1); padding: 2rem; text-align: center; margin-top: 4rem; border-radius: 10px; }
.discord-cta-box h3 { font-family: var(--font-main); font-weight: 700; font-size: 2rem; margin-bottom: 1rem; text-transform: uppercase; }
.discord-cta-box a { display: inline-block; background: var(--color-black); border: 2px solid var(--color-red); color: var(--color-red); padding: 0.75rem 2rem; font-weight: 600; transition: all 0.3s ease; }
.discord-cta-box a:hover { background: var(--color-red); color: var(--color-black); }

.main-footer { padding: 4rem 0 2rem; background-color: var(--color-black); position: relative; }
.footer-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--color-red), transparent); margin-bottom: 4rem; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 3rem; margin-bottom: 4rem; }
.footer-column { flex: 1; min-width: 220px; }
.footer-logo-area { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer-logo-img { height: 35px; }
.footer-logo-text { font-family: var(--font-main); font-weight: 700; font-size: 2rem; color: var(--color-white); line-height: 1; }
.footer-column p { color: var(--color-grey); font-size: 0.9rem; max-width: 250px; }
.footer-column h4 { font-family: var(--font-main); font-weight: 700; font-size: 1.5rem; text-transform: uppercase; color: var(--color-white); margin-bottom: 1.5rem; }
.footer-column ul li { margin-bottom: 1rem; }
.footer-column ul li a { display: flex; align-items: center; gap: 0.75rem; color: var(--color-grey); transition: color 0.3s, transform 0.3s; font-weight: 600; }
.footer-column ul li a:hover { color: var(--color-white); transform: translateX(5px); }
.footer-column ul li a i.fa-angle-right { color: var(--color-red); }
.payment-icons { display: flex; gap: 1.5rem; font-size: 2.5rem; color: var(--color-grey); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.copyright { font-size: 0.9rem; color: #666; }

/* === MEDIA QUERIES PARA RESPONSIVIDADE (COM AJUSTES MOBILE) === */
@media (max-width: 992px) {
    .cursor-dot, .cursor-outline { display: none !important; }
    body { cursor: auto; }
    .nav-links { display: none; }
    
    .nav-cta#open-login-modal { display: none; }
    
    .mobile-nav-toggle { display: flex; flex-direction: column; justify-content: space-around; width: 30px; height: 24px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 1002; }
    .mobile-nav-toggle .line { width: 100%; height: 3px; background: var(--color-white); border-radius: 10px; transition: all 0.3s linear; position: relative; transform-origin: 1px; }
    body.nav-open .mobile-nav-toggle .line1 { transform: rotate(45deg); }
    body.nav-open .mobile-nav-toggle .line2 { transform: rotate(-45deg); margin-top: -10px; }

    body .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: rgba(5, 5, 5, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        padding: 0;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
        z-index: 1001;
        overflow: hidden;
    }

    body.nav-open .nav-links { transform: translateX(0); }
    .mobile-nav-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(4px); z-index: 1000; opacity: 0; visibility: hidden; transition: opacity 0.5s ease, visibility 0.5s ease; }
    body.nav-open .mobile-nav-overlay { opacity: 1; visibility: visible; }
    .nav-links li:not(.mobile-nav-socials-wrapper) { width: auto; opacity: 0; transform: translateX(30px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .nav-links li.fade-in { opacity: 1; transform: translateX(0); }
    
    .nav-links .nav-link {
        display: block;
        font-size: 2rem;
        font-family: var(--font-main);
        font-weight: 700;
        padding: 1rem;
        transition: color 0.2s ease, filter 0.2s ease;
        color: var(--color-red);
        z-index: 1;
    }
    .nav-links .nav-link:hover,
    .nav-links .nav-link:active {
        filter: brightness(1.3);
    }
    .mobile-nav-socials-wrapper { z-index: 1; }

    .mobile-nav-socials-wrapper { display: block; margin-top: 2rem; opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .mobile-nav-socials-wrapper.fade-in { opacity: 1; transform: translateY(0); }
    .mobile-nav-socials { display: flex; gap: 2rem; }
    .mobile-nav-socials a { font-size: 1.8rem; color: var(--color-grey); transition: color 0.3s, transform 0.3s; }
    .mobile-nav-socials a:hover { color: var(--color-white); transform: scale(1.1); }
    
    .hero { padding: 9rem 5% 4rem; }
    .scroll-down-indicator { display: none; }
    
    .how-it-works-container { grid-template-columns: 1fr; }
    .how-it-works-image { order: 1; }
    .how-it-works-content { order: 2; text-align: center; }
    .how-it-works-content ul { text-align: left; }

    .showcase-container { grid-template-columns: 1fr; }
    
    .showcase-content {
        padding: 2rem 0;
        text-align: center;
    }
    .showcase-content ul {
        text-align: left;
        display: inline-block;
        margin-bottom: 2.5rem;
    }
    
    .showcase-title-custom { text-align: center !important; }

    section { padding: 4rem 0; }
    .footer-content { flex-direction: column; align-items: center; text-align: center; }
    
    /* CORREÇÃO PARA CENTRALIZAR O LOGO NO RODAPÉ */
    .footer-logo-area {
        justify-content: center;
    }

    .footer-column p, .footer-column ul { text-align: center; }
    .footer-column p { margin-left: auto; margin-right: auto; }
    .footer-column ul li a, .payment-icons { justify-content: center; }
}

@media (max-width: 480px) {
    body .nav-links { max-width: 100%; }
    .hero-content h1 { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .how-it-works-content h3 { font-size: 2rem; }
    .plan-card { padding: 2rem 1.5rem; }
    .faq-question { font-size: 1rem; }
    .game-card { height: 300px; }
    .testimonial-card { width: calc(100vw - 4rem); }
}

/* --- ESTILOS DO MODAL DE LOGIN E DASHBOARD --- */
.login-modal { position: fixed; inset: 0; z-index: 2000; display: flex; justify-content: center; align-items: center; padding: 1rem; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.login-modal.active { opacity: 1; visibility: visible; }
.login-modal__overlay { position: absolute; inset: 0; background-color: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px); cursor: pointer; }
.login-modal__content { position: relative; background-color: var(--color-dark); padding: 2.5rem; border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.1); width: 100%; max-width: 450px; z-index: 1; transform: scale(0.95); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.login-modal.active .login-modal__content { transform: scale(1); }
.login-modal__close { position: absolute; top: 1rem; right: 1rem; font-size: 1.5rem; color: var(--color-grey); cursor: pointer; transition: color 0.3s, transform 0.3s; }
.login-modal__close:hover { color: var(--color-red); transform: rotate(90deg); }
.login-modal__title { text-align: center; font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--color-white); font-family: var(--font-main); font-weight: 600; }
.login-modal__form { display: flex; flex-direction: column; gap: 1rem; }
.login-modal__input-wrapper { position: relative; }
.login-modal__input { width: 100%; padding: 1rem 3rem 1rem 1rem; background-color: var(--color-black); border: 2px solid #333; border-radius: 5px; color: var(--color-white); font-size: 1rem; font-family: var(--font-main); transition: border-color 0.3s; }
.login-modal__input::placeholder { color: var(--color-grey); }
.login-modal__input:focus { outline: none; border-color: var(--color-red); }
.login-modal__eye-icon { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--color-grey); cursor: pointer; }
.login-modal__actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }
.button.button--verify { background-color: var(--color-red); color: var(--color-white); border: 2px solid var(--color-red); padding: 1rem; font-weight: 600; transition: all 0.3s ease; cursor: pointer; }
.button.button--verify:hover { filter: brightness(1.2); box-shadow: var(--glow-shadow); }
.button.button--outline.button--modal-close { background-color: transparent; border: 2px solid #444; padding: 1rem; font-weight: 600; color: var(--color-grey); transition: all 0.3s ease; cursor: pointer; }
.button.button--outline.button--modal-close:hover { border-color: var(--color-white); color: var(--color-white); }
.login-modal__status--error { background-color: rgba(255, 0, 60, 0.1); border: 1px solid var(--color-red); color: var(--color-white); padding: 0.75rem; border-radius: 5px; font-size: 0.9rem; text-align: center; margin-bottom: 0.5rem; }
.modal-loading-state { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; min-height: 258px; color: var(--color-white); font-size: 1.2rem; font-weight: 600; }
.loader-spinner { width: 50px; height: 50px; border: 5px solid rgba(255, 255, 255, 0.2); border-top-color: var(--color-red); border-radius: 50%; animation: spin 1s linear infinite; }

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-process-body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: var(--color-black); color: var(--color-white); font-family: var(--font-main); overflow: hidden; }
.loading-container { display: flex; flex-direction: column; align-items: center; gap: 3rem; text-align: center; }
.loading-logo { width: 120px; opacity: 0; animation: fadeInLogo 1s ease forwards; }
.loading-steps { display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; width: 300px; transition: opacity 0.5s ease; }
.loading-steps .step { display: flex; align-items: center; gap: 1rem; opacity: 0.4; transition: opacity 0.4s ease; width: 100%; }
.loading-steps .step .spinner { width: 20px; height: 20px; border: 3px solid #555; border-radius: 50%; transition: all 0.4s ease; flex-shrink: 0; }
.loading-steps .step .text { font-size: 1.1rem; font-weight: 600; color: var(--color-grey); transition: color 0.4s ease; white-space: nowrap; }
.loading-steps .step.active { opacity: 1; }
.loading-steps .step.active .spinner { border-top-color: var(--color-red); animation: spin 1s linear infinite; }
.loading-steps .step.active .text { color: var(--color-white); }
.loading-steps .step.done { opacity: 1; }
.loading-steps .step.done .spinner { border-color: var(--color-green-status); background-color: var(--color-green-status); animation: none; position: relative; }
.loading-steps .step.done .spinner::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--color-black); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.8); font-size: 0.8rem; }
.loading-steps .step.done .text { color: var(--color-grey); text-decoration: line-through; }
.loading-steps .step.failed { opacity: 1; }
.loading-steps .step.failed .spinner { border-color: var(--color-red); background-color: var(--color-red); animation: none; position: relative; }
.loading-steps .step.failed .spinner::after { content: '\f00d'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--color-black); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.8); font-size: 0.8rem; }
.loading-steps .step.failed .text { color: var(--color-red); text-decoration: none; }
.loading-status { margin-top: 1rem; font-size: 1.2rem; font-weight: 700; color: var(--color-red); opacity: 0; transition: opacity 0.5s ease; }

.dashboard-body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background-image: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(100, 10, 30, 0.3), transparent); background-repeat: no-repeat; background-attachment: fixed; }
.dashboard-container { width: 90%; max-width: 700px; position: relative; z-index: 10; }
.dashboard-card { background-color: rgba(17, 17, 17, 0.85); backdrop-filter: blur(10px); padding: 2.5rem 3rem; border-radius: 15px; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 15px 40px rgba(0,0,0,0.6); position: relative; overflow: hidden; }
.dashboard-header { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.dashboard-logo { width: 70px; }
.dashboard-title { font-size: 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--color-white); text-shadow: 0 0 10px rgba(255, 255, 255, 0.2); }
.info-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }
.info-block { background: rgba(0,0,0,0.3); padding: 1.25rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
.info-label { display: flex; align-items: center; gap: 0.75rem; font-size: 1rem; color: var(--color-grey); }
.info-value { font-size: 1rem; font-weight: 600; text-align: right; }
.key-value.key-blur-effect { filter: blur(5px); transition: filter 0.3s ease; cursor: pointer; background-color: rgba(255,255,255,0.1); padding: 2px 8px; border-radius: 4px; }
.key-value.key-blur-effect:hover { filter: blur(0); }
.status--activated { color: var(--color-green-status); text-shadow: 0 0 8px var(--color-green-status); }
.status--expired { color: var(--color-red); text-shadow: 0 0 8px var(--color-red); }
.dashboard-actions { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.button.button-dashboard--red, .button.button-dashboard-discord, .button.button-dashboard--disabled { display: flex; align-items: center; justify-content: center; gap: 0.75rem; text-decoration: none; color: var(--color-white); padding: 1rem; font-weight: 600; font-size: 1rem; border-radius: 5px; transition: all 0.3s ease; border: none; text-transform: none; }
.button-dashboard--red { background-color: var(--color-red); }
.button-dashboard--red:hover { filter: brightness(1.2); transform: translateY(-3px); }
.button-dashboard-discord { background-color: #5865F2; }
.button-dashboard-discord:hover { filter: brightness(1.2); transform: translateY(-3px); }
.button-dashboard--disabled { background-color: #333; color: #777; cursor: not-allowed; }
.button-dashboard--disabled i { font-size: 1.2rem; }
.button.button-dashboard--renew { background: #ffc107; color: var(--color-black); font-size: 1.1rem !important; padding: 1.1rem !important; }
.button.button-dashboard--renew:hover { filter: brightness(1.1); }
.logout-link { display: block; text-align: center; margin-top: 2rem; color: var(--color-grey); text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
.logout-link i { margin-right: 0.5rem; }
.logout-link:hover { color: var(--color-red); }
.info-line, .dashboard-card h1 { display: none; }