/* * © 2025 LUSONIX ESPORTS - OFFICIAL WEBSITE 
 * DEVELOPED BY IZÁN ALVAREZ
 * SECURITY LAYER ACTIVE: UNAUTHORIZED COPYING WILL BE TRACKED.
 */

:root {
    --primary: #9b0000; /* Vermelho Oficial Lusonix */
    --bg-light: #ffffff;
    --panel-light: #fdfdfd;
    --text-dark: #1a1a1a;
    --text-muted: #444444;
    --font-main: 'Orbitron', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- BASE --- */
body { 
    background-color: var(--bg-light); 
    color: var(--text-dark); 
    margin: 0; 
    font-family: var(--font-main);
    line-height: 1.8; /* Melhoria na leitura */
}

.nav-logo-area img { 
    height: 70px; /* Aumenta aqui o tamanho (ex: de 24px para 45px) */
    width: auto; 
    display: block;
    transition: var(--transition);
    position: relative;
    /* Se o logo for muito alto, este ajuste evita que a barra preta cresça: */
    margin: -5px 0; 

}

.nav-logo-area a {
    display: inline-block;
    text-decoration: none;
}

.nav-logo-area img:hover {
    transform: scale(1.05); /* Pequeno efeito ao passar o rato para feedback visual */
}


/* --- HEADER --- */
/* --- AJUSTE DE ESPAÇAMENTO DO TOPO --- */
.top-promo-bar { 
    background-color: var(--primary); 
    color: white; 
    text-align: center; 
    padding: 15px 0 40px 0; /* Espaço reduzido para aproximar o cabeçalho */
    font-size: 11px; 
    letter-spacing: 2px;
    font-weight: 700;
}

.header-container { 
max-width: 1300px; 
    margin: -25px auto 0 auto; /* Aproxima a barra preta do texto superior */
    padding: 0 20px;
    position: relative;
    z-index: 100;
}

.navbar-floating { 
background-color: #0d0d0d; 
    border-radius: 12px; 
    height: 70px; /* Altura fixa para a barra não crescer */
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary);
}

/* Links de Navegação */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

/* --- NAVEGAÇÃO LATERAL AFINADA --- */
.legal-wrapper { max-width: 1200px; margin: 60px auto; padding: 0 20px; display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
.legal-nav-item { 
    background: #f4f4f4; 
    border-radius: 8px; 
    transition: var(--transition); 
    border: 1px solid #eee; 
    margin-bottom: 12px; 
    list-style: none; 
}

.legal-nav-item:hover:not(.active) {
    transform: translateX(8px); /* Efeito de deslize */
    background: #fff;
    border-color: var(--primary);
}

.legal-nav-item a { color: #555; display: flex; align-items: center; padding: 18px 25px; text-decoration: none; font-size: 11px; font-weight: 700; text-transform: uppercase; gap: 15px; }

.legal-nav-item.active { background: var(--primary); border-color: var(--primary); box-shadow: 0 4px 15px rgba(155, 0, 0, 0.3); }
.legal-nav-item.active a, .legal-nav-item.active i { color: #ffffff !important; }

/* --- PAINEL DE CONTEÚDO COM PROFUNDIDADE --- */
.legal-content-panel { 
    background: var(--panel-light); 
    padding: 50px; 
    border-radius: 12px; 
    border: 1px solid #f0f0f0; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.04); /* Sombra suave para destacar do branco */
}

.legal-header { border-bottom: 1px solid #eee; padding-bottom: 25px; margin-bottom: 35px; }

.title-with-icon { display: flex; align-items: center; gap: 15px; }
.title-with-icon i { color: var(--primary); font-size: 26px; }
.title-with-icon h1 { font-size: 30px; margin: 0; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dark); }

.legal-header-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.legal-header-meta i { color: var(--primary); font-size: 16px; }
.legal-header-meta span { color: #4a9eff; font-size: 13px; font-weight: 600; }

.legal-section h2 { 
    color: var(--primary); 
    font-size: 18px; 
    margin-bottom: 15px; 
    border-left: 4px solid var(--primary); 
    padding-left: 15px; 
}

.legal-section p { color: var(--text-muted); font-size: 15px; text-align: justify; }

/* --- NOTA IMPORTANTE --- */
.important-note { background: #fff8f8; border: 1px solid #ff00002b; border-radius: 8px; padding: 25px; margin-top: 40px; display: flex; align-items: center; gap: 20px; }
.important-note-icon { background: var(--primary); width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.important-note-icon i { color: white; font-size: 18px; }

/* --- RODAPÉ FIEL À IMAGEM --- */
.legal-footer {
background-color: var(--primary);
    /* Diminuímos o padding: 40px no topo e 30px na base (antes era 80px/50px) */
    padding: 35px 0 20px 0;
    margin-top: 60px; /* Reduzi também a distância para o conteúdo acima */
    color: #ffffff;
    font-family: var(--font-main);
}



.footer-container {
    max-width: 1300px; /* Um pouco mais largo para dar ar de site profissional */
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Três colunas com larguras desiguais */
    gap: 20px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Títulos das Colunas */
.footer-column h4 {
color: #ffffff; 
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 35px;
    text-transform: uppercase;
}

/* Estilo da Coluna GET IN TOUCH */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 18px;
    margin-top: 4px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text strong {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.contact-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 12px;
}

/* Estilo EXPLORAR - ALINHADO À ESQUERDA */
.simple-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple-nav li {
    margin-bottom: 20px;
}

.simple-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
}

/* Redes Sociais */
.social-flex {
    display: flex;
    gap: 25px;
}

.social-flex a {
    color: #ffffff;
    font-size: 24px;
    transition: 0.3s;
}

/* Copyright à ESQUERDA */
.footer-bottom-info {
    padding-top: 30px;
    text-align: left; /* Garante que o texto fica à esquerda e não no centro */
}

.footer-bottom-info p {
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 700;
}

.powered-by {
    font-size: 10px;
    opacity: 0.6;
    margin-top: 8px !important;
}

/* ANIMAÇÃO DE CONTEÚDO */
.content-section { display: none; }
.content-section.active { display: block; animation: sectionFade 0.5s ease forwards; }
@keyframes sectionFade {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Títulos e Texto Geral */
.titulo-reembolso {
    color: #ff0000 !important;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.texto-preto {
    color: #000000 !important;
    line-height: 1.6;
}

/* Organização dentro do Quadrado (Important-Note) */
.passos-devolucao {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaço entre os passos */
}

.passo-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Linha divisória subtil */
}

.passo-item:last-child {
    border-bottom: none;
}

.passo-num {
    background: #ff0000;
    color: #fff !important;
    min-width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
}

/* Garante que o texto dentro do quadrado também seja preto */
.passo-item p {
    color: #000000 !important;
    margin: 0;
    font-size: 0.95rem;
}

/* Estilo idêntico ao apartado Reembolsos */
.titulo-vermelho {
    color: #ff0000 !important; /* Vermelho Lusonix */
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    font-size: 1.15rem;
    margin-bottom: 15px;
    margin-top: 25px;
    letter-spacing: 1px;
}

.texto-preto {
    color: #000000 !important; /* Preto Puro */
    line-height: 1.7;
    margin-bottom: 12px;
}

.texto-preto strong {
    color: #000000 !important;
    font-weight: 800;
}

/* Marcadores Geométricos em Vermelho */
.lista-preta {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.lista-preta li {
    color: #000000 !important;
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.lista-preta li::before {
    content: "◢"; /* O triângulo que usaste nos Reembolsos */
    color: #ff0000;
    position: absolute;
    left: 0;
    font-size: 11px;
    top: 3px;
}

/* Espaçamento entre blocos */
.seccao-legal {
    margin-bottom: 35px;
}

