/* IMPORTAÇÃO DA FONTE RAJDHANI (ESTILO TECNOLÓGICO) */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700;800&display=swap');

:root {
    --primary-neon: #00f3ff; /* Azul Ciano Neon */
    --secondary-neon: #bc13fe; /* Roxo Neon */
    --bg-dark: #0a0e14; /* Preto Profundo */
    --bg-panel: rgba(20, 30, 40, 0.6);
    --glass-border: 1px solid rgba(0, 243, 255, 0.1);
    --text-main: #ffffff;
}

/* --- CONFIGURAÇÃO GLOBAL DE UX --- */
* {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
    box-sizing: border-box;
}

/* FORÇAR MÃOZINHA EM ELEMENTOS INTERATIVOS */
a, button, .btn-neon, .nav-item, label, .switch, 
i, .player-card, .news-card, .step-item,
[onclick], [role="button"], 
.topbar-right, .btn-mini-text, .btn-action-icon,
.btn-share-pix, .btn-pag {
    cursor: pointer !important;
}

[onclick] *, .btn-neon *, button *, a * { cursor: pointer !important; }

input, textarea {
    user-select: text !important;
    -webkit-user-select: text !important;
    cursor: text !important;
}

body {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 50% 0%, #112233 0%, var(--bg-dark) 80%);
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif;
    margin: 0;
    padding: 0;
    padding-bottom: 100px;
    min-height: 100vh;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

/* --- SISTEMA DE TRANSIÇÃO DE CENAS --- */
#main-content {
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0) scale(1);
    width: 100%;
}

.scene-exit {
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
    pointer-events: none;
}

/* --- CONTAINER RESPONSIVO --- */
.container {
    padding: 20px;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
}

@media (min-width: 768px) {
    .container { max-width: 1200px; padding: 30px; }
    .news-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .steps-container { flex-direction: row !important; gap: 20px; }
    .step-item { flex: 1; flex-direction: column; text-align: center; justify-content: flex-start; padding: 30px !important; }
    .step-icon { margin: 0 auto 15px auto !important; width: 60px !important; height: 60px !important; font-size: 1.8rem !important; }
    .hero-section { max-width: 800px; margin: 30px auto !important; padding: 50px !important; }
    .hero-title { font-size: 3.5rem !important; }
    .match-sheet-grid { height: 70vh !important; }
}

/* --- FOOTOP --- */
#footop-container nav, .footop-nav {
    position: fixed; 
    bottom: 20px; 
    left: 50%; 
    transform: translateX(-50%);
    width: 90%; 
    max-width: 500px;
    background: rgba(15, 15, 15, 0.85); 
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    display: flex; 
    justify-content: space-around; 
    align-items: center;
    padding: 12px 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: bottom 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease !important;
}

.footop-hidden { bottom: -150px !important; opacity: 0 !important; pointer-events: none !important; }

.nav-item { color: #888; font-size: 1.5rem; text-decoration: none; transition: 0.3s; display: flex; flex-direction: column; align-items: center; }
.nav-item span { font-size: 0.7rem; margin-top: 4px; }
.nav-item:hover { color: #fff; transform: translateY(-5px); }
.nav-item.active { color: #fff; transform: translateY(-15px); }
.nav-item.active i { color: var(--primary-neon); filter: drop-shadow(0 0 8px var(--primary-neon)); background: rgba(255,255,255,0.1); border-radius: 50%; padding: 12px; box-shadow: 0 0 15px var(--primary-neon); font-size: 1.6rem; }

/* --- COMPONENTES VISUAIS --- */
.glass-panel { background: var(--bg-panel); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: var(--glass-border); border-radius: 16px; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); margin-bottom: 20px; }

.btn-neon { background: transparent; border: 2px solid var(--primary-neon); color: var(--primary-neon); padding: 15px; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; border-radius: 8px; width: 100%; cursor: pointer; box-shadow: 0 0 10px rgba(0, 243, 255, 0.1); transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-neon:hover { background: var(--primary-neon); color: #000; box-shadow: 0 0 25px var(--primary-neon); transform: scale(1.02); }
.btn-neon:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; transform: none; }
.btn-neon.secondary { border-color: var(--secondary-neon); color: var(--secondary-neon); box-shadow: 0 0 10px rgba(188, 19, 254, 0.1); }
.btn-neon.secondary:hover { background: var(--secondary-neon); color: #fff; box-shadow: 0 0 25px var(--secondary-neon); }

/* --- TOPBAR --- */
.topbar.branding-style { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 15px 30px; background: #1a0025; background-image: linear-gradient(90deg, #1a0025 0%, #3e0a52 100%); border-bottom: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); position: sticky; top: 0; z-index: 9999; }
.topbar-left { display: flex; align-items: center; gap: 15px; }
.brand-icon { font-size: 2.5rem; color: #fff; filter: drop-shadow(0 0 5px rgba(255,255,255,0.3)); }
.brand-text { display: flex; flex-direction: column; justify-content: center; line-height: 0.9; font-family: 'Rajdhani', sans-serif; font-weight: 700; color: white; }
.txt-mini { font-size: 0.7rem; opacity: 0.7; letter-spacing: 2px; }
.txt-main { font-size: 1.2rem; text-transform: uppercase; }
.txt-highlight { font-size: 1.3rem; color: #00f3ff; text-transform: uppercase; text-shadow: 0 0 8px rgba(0, 243, 255, 0.5); font-weight: 800; }
.topbar-right { display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: #fff; cursor: pointer; padding: 5px; border-radius: 50%; transition: transform 0.2s ease; }
.topbar-right:active { transform: scale(0.9); }

/* --- CARROSSEL --- */
.bg-carousel-container { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: -1; overflow: hidden; }
.bg-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.5s ease-in-out; filter: contrast(1.1) brightness(0.8); }
.bg-slide.active { opacity: 1; transform: scale(1.05); transition: opacity 1.5s ease-in-out, transform 6s linear; }
.overlay-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(10, 14, 20, 0.8) 0%, rgba(10, 14, 20, 0.5) 40%, rgba(10, 14, 20, 0.95) 90%); z-index: 2; }

/* --- HOME --- */
.home-content { padding: 15px; }
.fade-in-up { animation: fadeInUp 0.8s ease-out; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.hero-section { text-align: center; padding: 30px 20px; margin-top: 20px; border: 1px solid rgba(0, 243, 255, 0.3); }
.hero-title { font-size: 2.2rem; line-height: 1; margin-bottom: 10px; font-weight: 800; }
.highlight-neon { color: var(--primary-neon); text-shadow: 0 0 15px rgba(0, 243, 255, 0.6); }
.hero-subtitle { color: #ccc; font-size: 1rem; margin-bottom: 20px; }
.section-title { color: #fff; margin-top: 40px; margin-bottom: 20px; font-size: 1.3rem; border-left: 4px solid var(--primary-neon); padding-left: 15px; text-transform: uppercase; font-weight: 800; }

.news-card { padding: 20px; border-left: 2px solid var(--primary-neon); position: relative; margin-bottom: 15px; transition: transform 0.2s, background 0.2s; }
.news-card:hover { background: rgba(255,255,255,0.08); transform: translateX(5px); }
.news-card:active { transform: scale(0.98); }
.news-badge { background: var(--primary-neon); color: #000; font-size: 0.7rem; padding: 3px 10px; border-radius: 4px; font-weight: bold; display: inline-block; margin-bottom: 8px; }
.news-badge.finance { background: var(--secondary-neon); color: #fff; }
.news-card h4 { margin: 5px 0; color: #fff; font-size: 1.2rem; }
.news-card p { font-size: 0.9rem; color: #aaa; margin: 0; line-height: 1.4; }

.steps-container { display: flex; flex-direction: column; gap: 15px; }
.step-item { display: flex; align-items: center; background: rgba(255, 255, 255, 0.05); padding: 15px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.05); transition: 0.3s; }
.step-item:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); }
.step-icon { width: 50px; height: 50px; background: rgba(0, 243, 255, 0.1); border: 1px solid var(--primary-neon); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary-neon); margin-right: 15px; box-shadow: 0 0 10px rgba(0, 243, 255, 0.2); flex-shrink: 0; }
.step-icon.neon-purple { border-color: var(--secondary-neon); color: var(--secondary-neon); background: rgba(188, 19, 254, 0.1); box-shadow: 0 0 10px rgba(188, 19, 254, 0.2); }
.step-info h4 { margin: 0; font-size: 1rem; color: #fff; text-transform: uppercase; }
.step-info p { margin: 3px 0 0 0; font-size: 0.8rem; color: #aaa; }

/* --- INPUTS --- */
.input-group-glass { text-align: left; flex-grow: 1; }
.input-group-glass label { display: block; color: var(--primary-neon); font-size: 0.75rem; font-weight: bold; margin-bottom: 8px; letter-spacing: 1.5px; text-transform: uppercase; }
.input-group-glass input { width: 100%; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(5px); border: none; border-bottom: 2px solid rgba(255, 255, 255, 0.2); color: #fff; padding: 12px 15px; font-size: 1.1rem; font-family: 'Rajdhani', sans-serif; font-weight: 600; border-radius: 8px 8px 0 0; outline: none; transition: all 0.3s ease; box-sizing: border-box; }
.input-group-glass input:focus { background: rgba(0, 243, 255, 0.1); border-bottom-color: var(--primary-neon); box-shadow: 0 5px 10px -5px rgba(0, 243, 255, 0.5); letter-spacing: 1px; }
.input-group-glass input::placeholder { color: rgba(255, 255, 255, 0.3); font-weight: normal; }

/* --- AJUSTE QUALIDADE AVATAR (CORRIGIDO) --- */
.card-avatar { 
    width: 100%; height: 100%; border-radius: 50%; margin: 0; 
    border: 2px solid var(--primary-neon); 
    object-fit: cover; 
    background: #222; /* Fundo cinza escuro para evitar borda branca */
    /* REMOVIDO: image-rendering que causava ruído */
}