:root {
    --bg-dark: #0b0b0d;
    --power-blue-base: #051024;
    --power-blue-border: #1a3c70;
    --power-blue-glow: #2a75d3;
    --text-main: #e2e2e2;
    --text-muted: #888890;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- SEÇÃO 1: HERO & CRISTAL --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(5,16,36,0.5) 0%, rgba(11,11,13,1) 60%);
}

.crystal-text {
    font-weight: 900;
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    
    /* Efeito de prisma/cristal */
    background: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.8) 10%,
        rgba(100, 200, 255, 0.5) 20%,
        rgba(255, 255, 255, 0.9) 30%,
        rgba(200, 100, 255, 0.3) 40%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(150, 255, 150, 0.4) 60%,
        rgba(255, 255, 255, 0.9) 70%,
        rgba(255, 255, 255, 0.4) 80%,
        rgba(255, 255, 255, 0.8) 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: refraction 6s linear infinite;
    text-shadow: 0 0 30px rgba(255,255,255,0.05);
}

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

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: 10px;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

/* Botões com toque metálico e Power Blue */
.btn {
    text-decoration: none;
    padding: 15px 40px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: linear-gradient(145deg, var(--power-blue-base), #0a1b38);
    border: 1px solid var(--power-blue-border);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    box-shadow: 0 0 25px rgba(42, 117, 211, 0.4);
    border-color: var(--power-blue-glow);
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

/* --- SEÇÕES GENÉRICAS --- */
section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- SEÇÃO 2: SOBRE --- */
.about p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* --- SEÇÃO 3: CATÁLOGO (GRID) --- */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background-color: #111115;
    border: 1px solid var(--power-blue-base);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--power-blue-glow);
    box-shadow: 0 5px 20px rgba(42, 117, 211, 0.15);
    transform: translateY(-5px);
}

.card-image {
    height: 180px;
    background: #1a1a20; /* Placeholder escuro */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 2rem;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

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

/* --- SEÇÃO 4: ASSINATURA --- */
.subscription {
    text-align: center;
}

.pass-card {
    background: linear-gradient(180deg, #111115 0%, var(--power-blue-base) 100%);
    border: 1px solid var(--power-blue-border);
    max-width: 500px;
    margin: 40px auto 0;
    padding: 50px 30px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.pass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--power-blue-glow), transparent);
}

.pass-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.pass-price {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--power-blue-glow);
    margin-bottom: 40px;
}

/* --- RODAPÉ --- */
footer {
    border-top: 1px solid #1a1a20;
    padding: 40px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-right: 20px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.lang-selector select {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid #333;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
}

.lang-selector select:focus {
    outline: none;
    border-color: var(--power-blue-border);
}