/* --- Reset Básico e Variáveis de Cor --- */
:root {
    --black: #0a0a0a;
    --purple: #8A2BE2;
    --neon-blue: #00BFFF;
    --dark-bg: #120c18;
    --text-color: #f0f0f0;
    --gradient: linear-gradient(45deg, var(--purple), var(--neon-blue));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Orbitron', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid var(--purple);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: var(--text-color);
    text-shadow: 0 0 5px var(--neon-blue);
}

.header nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.header nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.header nav a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

/* --- Seção Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark-bg) url('https://source.unsplash.com/random/1600x900?abstract,neon') no-repeat center center/cover;
    position: relative;
    padding-top: 80px; /* Para não ficar atrás do header */
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 12, 24, 0.7);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'Press Start 2P', cursive;
    text-shadow: 0 0 15px var(--purple);
}

.hero-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* --- Botão CTA com Efeito Neon --- */
.cta-button {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-decoration: none;
    font-size: 1.2rem;
    overflow: hidden;
    transition: 0.5s;
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
    border: 1px solid var(--neon-blue);
    border-radius: 5px;
}

.cta-button:hover {
    background: var(--neon-blue);
    color: #050801;
    box-shadow: 0 0 5px var(--neon-blue),
                0 0 25px var(--neon-blue),
                0 0 50px var(--neon-blue),
                0 0 200px var(--neon-blue);
}

.cta-button span {
    position: absolute;
    display: block;
}

.cta-button span:nth-child(1) { top: 0; left: -100%; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--neon-blue)); animation: animate1 1s linear infinite; }
@keyframes animate1 { 0% { left: -100%; } 50%, 100% { left: 100%; } }
.cta-button span:nth-child(2) { top: -100%; right: 0; width: 2px; height: 100%; background: linear-gradient(180deg, transparent, var(--neon-blue)); animation: animate2 1s linear infinite; animation-delay: 0.25s; }
@keyframes animate2 { 0% { top: -100%; } 50%, 100% { top: 100%; } }
.cta-button span:nth-child(3) { bottom: 0; right: -100%; width: 100%; height: 2px; background: linear-gradient(270deg, transparent, var(--neon-blue)); animation: animate3 1s linear infinite; animation-delay: 0.5s; }
@keyframes animate3 { 0% { right: -100%; } 50%, 100% { right: 100%; } }
.cta-button span:nth-child(4) { bottom: -100%; left: 0; width: 2px; height: 100%; background: linear-gradient(360deg, transparent, var(--neon-blue)); animation: animate4 1s linear infinite; animation-delay: 0.75s; }
@keyframes animate4 { 0% { bottom: -100%; } 50%, 100% { bottom: 100%; } }


/* --- Seções Padrão --- */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: 'Press Start 2P', cursive;
    color: var(--text-color);
}

/* --- Seção de Benefícios --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--purple);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px var(--purple);
}

.benefit-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* --- Seção de Galeria --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 220px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease, background-color 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
}

.gallery-item:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-blue);
}

.gallery-item .game-title {
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .game-title {
    opacity: 1;
}


/* --- Seção de Depoimentos --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--gradient);
    padding: 2rem;
    border-radius: 10px;
    color: var(--black);
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.testimonial-card h4 {
    text-align: right;
    font-weight: bold;
}

/* --- SEÇÃO VIP --- */
.vip {
    background-color: var(--black);
}

.vip-description {
    text-align: center;
    max-width: 600px;
    margin: -2rem auto 3rem;
    font-size: 1.1rem;
    color: #ccc;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start; /* Alinha os cards no topo */
}

.vip-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--purple);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vip-card.featured {
    border-color: var(--neon-blue);
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.5);
}

.vip-card.featured:hover {
    transform: scale(1.1) translateY(-10px);
}

.featured-tag {
    position: absolute;
    top: 15px;
    right: -45px;
    background: var(--neon-blue);
    color: var(--black);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.9rem;
}

.vip-card:hover {
    transform: translateY(-10px);
}

.vip-header {
    text-align: center;
    border-bottom: 1px solid var(--purple);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.vip-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--neon-blue);
}

.price span {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: normal;
}

.vip-benefits {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1; /* Faz a lista crescer para alinhar os botões */
}

.vip-benefits li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.vip-benefits i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.fa-check-circle { color: #28a745; }
.fa-times-circle { color: #dc3545; }

.vip-button {
    display: block;
    text-align: center;
    text-decoration: none;
    background: var(--gradient);
    color: var(--text-color);
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vip-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--purple);
}


/* --- Rodapé --- */
.footer {
    background: var(--black);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--purple);
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.social-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

/* --- Animação de Scroll --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsividade --- */
@media (max-width: 992px) {
    .vip-card.featured {
        transform: scale(1); /* Remove o destaque de tamanho em telas menores para não quebrar o layout */
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .header nav ul {
        gap: 1rem;
        padding: 0;
    }
}