/* tradicionalbet - Estilo Tsukasa Hojo 2026 */
/* Cores principais: Roxo (#6B3FA0) e Dourado (#D4AF37) */

:root {
    --cor-primaria: #6B3FA0;
    --cor-secundaria: #D4AF37;
    --cor-fundo: #1a1a2e;
    --cor-fundo-alt: #16213e;
    --cor-texto: #f5f5f5;
    --cor-texto-secundario: #b8b8b8;
    --cor-destaque: #9b59b6;
    --cor-sucesso: #27ae60;
    --cor-alerta: #f39c12;
    --fonte-principal: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --fonte-titulo: Georgia, 'Times New Roman', Times, serif;
    --sombra-card: 0 8px 32px rgba(107, 63, 160, 0.3);
    --borda-dourada: 2px solid var(--cor-secundaria);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fonte-principal);
    background: linear-gradient(135deg, var(--cor-fundo) 0%, var(--cor-fundo-alt) 100%);
    color: var(--cor-texto);
    line-height: 1.8;
    min-height: 100vh;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--fonte-titulo);
    color: var(--cor-secundaria);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

a {
    color: var(--cor-secundaria);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--cor-destaque);
    text-shadow: 0 0 10px var(--cor-secundaria);
}

/* Navegação */
.navegacao-principal {
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.98) 0%, rgba(22, 33, 62, 0.95) 100%);
    padding: 1rem 0;
    border-bottom: var(--borda-dourada);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-wrapper img {
    height: 60px;
    width: auto;
}

.logo-texto {
    font-family: var(--fonte-titulo);
    font-size: 1.8rem;
    color: var(--cor-secundaria);
    font-weight: bold;
}

.menu-principal {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.menu-principal li a {
    color: var(--cor-texto);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.menu-principal li a:hover {
    background: var(--cor-primaria);
    color: var(--cor-secundaria);
}

.botao-cta {
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, #b8960c 100%);
    color: var(--cor-fundo) !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    display: inline-block;
}

.botao-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: var(--cor-fundo) !important;
}

/* Hero Section */
.secao-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-imagem {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.hero-conteudo {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 3rem;
    background: rgba(26, 26, 46, 0.85);
    border-radius: 20px;
    border: var(--borda-dourada);
    box-shadow: var(--sombra-card);
}

.hero-conteudo h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-conteudo p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Container Principal */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.secao {
    padding: 5rem 0;
}

.secao-alternada {
    background: linear-gradient(180deg, var(--cor-fundo-alt) 0%, var(--cor-fundo) 100%);
}

.titulo-secao {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.titulo-secao::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--cor-secundaria);
    margin: 1rem auto 0;
}

/* Cards de Jogos */
.grade-jogos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card-jogo {
    background: linear-gradient(145deg, rgba(107, 63, 160, 0.2) 0%, rgba(22, 33, 62, 0.9) 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    box-shadow: var(--sombra-card);
}

.card-jogo:hover {
    transform: translateY(-10px);
    border-color: var(--cor-secundaria);
    box-shadow: 0 12px 40px rgba(107, 63, 160, 0.5);
}

.card-jogo-imagem {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-jogo-conteudo {
    padding: 1.5rem;
}

.card-jogo-conteudo h3 {
    margin-bottom: 0.8rem;
}

.card-jogo-conteudo p {
    color: var(--cor-texto-secundario);
    font-size: 0.95rem;
}

/* Seção de Avaliações */
.grade-avaliacoes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.card-avaliacao {
    background: rgba(107, 63, 160, 0.15);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--cor-secundaria);
    position: relative;
}

.avaliacao-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar-usuario {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cor-secundaria);
}

.info-usuario h4 {
    margin-bottom: 0.2rem;
    color: var(--cor-texto);
}

.info-usuario span {
    color: var(--cor-texto-secundario);
    font-size: 0.9rem;
}

.estrelas {
    color: var(--cor-secundaria);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.avaliacao-texto {
    font-style: italic;
    color: var(--cor-texto-secundario);
}

.avaliacao-data {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--cor-texto-secundario);
}

/* FAQ */
.lista-faq {
    max-width: 900px;
    margin: 0 auto;
}

.item-faq {
    background: rgba(107, 63, 160, 0.1);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.pergunta-faq {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--cor-secundaria);
}

.pergunta-faq:hover {
    background: rgba(107, 63, 160, 0.2);
}

.resposta-faq {
    padding: 0 1.5rem 1.5rem;
    color: var(--cor-texto-secundario);
    display: none;
}

.item-faq.ativo .resposta-faq {
    display: block;
}

/* Métodos de Pagamento */
.grade-pagamentos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.metodo-pagamento {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    min-width: 200px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.metodo-pagamento:hover {
    border-color: var(--cor-secundaria);
    transform: scale(1.05);
}

.metodo-pagamento img {
    height: 60px;
    margin-bottom: 1rem;
}

/* Autor */
.secao-autor {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(107, 63, 160, 0.15);
    padding: 3rem;
    border-radius: 20px;
    border: var(--borda-dourada);
}

.autor-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--cor-secundaria);
    flex-shrink: 0;
}

.autor-info h3 {
    color: var(--cor-secundaria);
    margin-bottom: 0.5rem;
}

.autor-titulo {
    color: var(--cor-destaque);
    font-style: italic;
    margin-bottom: 1rem;
}

/* Licença */
.secao-licenca {
    text-align: center;
    background: rgba(39, 174, 96, 0.1);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--cor-sucesso);
}

.licenca-badge {
    max-width: 200px;
    margin-bottom: 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--cor-texto-secundario);
}

.breadcrumb span {
    color: var(--cor-secundaria);
}

/* Footer */
.rodape {
    background: linear-gradient(180deg, var(--cor-fundo-alt) 0%, #0d0d1a 100%);
    padding: 4rem 0 2rem;
    border-top: var(--borda-dourada);
}

.grade-rodape {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.coluna-rodape h4 {
    color: var(--cor-secundaria);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.coluna-rodape ul {
    list-style: none;
}

.coluna-rodape ul li {
    margin-bottom: 0.8rem;
}

.coluna-rodape ul li a {
    color: var(--cor-texto-secundario);
}

.coluna-rodape ul li a:hover {
    color: var(--cor-secundaria);
}

.rodape-inferior {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.aviso-18 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(243, 156, 18, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--cor-alerta);
    font-weight: bold;
    margin-bottom: 1rem;
}

.copyright {
    color: var(--cor-texto-secundario);
    font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .menu-principal {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero-conteudo h1 {
        font-size: 2rem;
    }
    
    .secao-autor {
        flex-direction: column;
        text-align: center;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    
    .grade-jogos,
    .grade-avaliacoes {
        grid-template-columns: 1fr;
    }
}

/* Animações */
@keyframes brilho {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.destaque-animado {
    animation: brilho 2s ease-in-out infinite;
}

/* Utilitários */
.texto-centro { text-align: center; }
.texto-dourado { color: var(--cor-secundaria); }
.margem-topo { margin-top: 2rem; }
.margem-baixo { margin-bottom: 2rem; }

/* Preload e Performance */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.carregado {
    opacity: 1;
}
