/* leaobet - Estilo Porco Dourado 2026 */
:root {
    --cor-ouro: #D4AF37;
    --cor-ouro-claro: #F5D76E;
    --cor-vermelho: #8B0000;
    --cor-vermelho-escuro: #5C0000;
    --cor-fundo: #1A0A0A;
    --cor-fundo-card: #2A1515;
    --cor-texto: #F5F5F5;
    --cor-texto-secundario: #CCCCCC;
    --sombra-ouro: 0 4px 20px rgba(212, 175, 55, 0.3);
    --gradiente-ouro: linear-gradient(135deg, #D4AF37 0%, #F5D76E 50%, #D4AF37 100%);
    --gradiente-vermelho: linear-gradient(180deg, #8B0000 0%, #5C0000 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--cor-fundo);
    color: var(--cor-texto);
    line-height: 1.7;
    font-size: 16px;
}

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

a:hover {
    color: var(--cor-ouro-claro);
}

img {
    max-width: 100%;
    height: auto;
}

/* Cabeçalho */
.cabecalho {
    background: var(--gradiente-vermelho);
    padding: 1rem 0;
    border-bottom: 3px solid var(--cor-ouro);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--cor-ouro);
}

.logo-texto {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradiente-ouro);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navegação */
.navegacao-principal {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

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

.navegacao-principal a:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--cor-ouro);
}

.btn-jogar {
    background: var(--gradiente-ouro) !important;
    color: var(--cor-vermelho-escuro) !important;
    font-weight: 700 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px !important;
    box-shadow: var(--sombra-ouro);
    animation: pulsar 2s infinite;
}

@keyframes pulsar {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Banner */
.secao-hero {
    position: relative;
    min-height: 500px;
    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.7;
}

.hero-conteudo {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-titulo {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradiente-ouro);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitulo {
    font-size: 1.25rem;
    color: var(--cor-texto);
    margin-bottom: 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26,10,10,0.3) 0%, rgba(26,10,10,0.8) 100%);
    z-index: 1;
}

/* Seções */
.secao {
    padding: 4rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.secao-titulo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cor-ouro);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.secao-titulo::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gradiente-ouro);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

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

.cartao-jogo {
    background: var(--cor-fundo-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.cartao-jogo:hover {
    transform: translateY(-8px);
    border-color: var(--cor-ouro);
    box-shadow: var(--sombra-ouro);
}

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

.cartao-jogo-conteudo {
    padding: 1.25rem;
}

.cartao-jogo-titulo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cor-ouro);
    margin-bottom: 0.5rem;
}

.cartao-jogo-descricao {
    color: var(--cor-texto-secundario);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.cartao-jogo-btn {
    display: inline-block;
    background: var(--gradiente-ouro);
    color: var(--cor-vermelho-escuro);
    padding: 0.6rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cartao-jogo-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--sombra-ouro);
}

/* Seção de Bônus */
.secao-bonus {
    background: var(--gradiente-vermelho);
    padding: 4rem 1.5rem;
    text-align: center;
    border-top: 3px solid var(--cor-ouro);
    border-bottom: 3px solid var(--cor-ouro);
}

.bonus-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.bonus-item {
    background: rgba(0,0,0,0.3);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.bonus-valor {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradiente-ouro);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-descricao {
    color: var(--cor-texto);
    margin-top: 0.5rem;
}

/* Autor E-E-A-T */
.autor-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--cor-fundo-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin: 2rem 0;
}

.autor-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--cor-ouro);
    object-fit: cover;
}

.autor-info h4 {
    color: var(--cor-ouro);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

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

/* Avaliações */
.avaliacoes-grade {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.avaliacao-cartao {
    background: var(--cor-fundo-card);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.avaliacao-estrelas {
    color: var(--cor-ouro);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.avaliacao-texto {
    color: var(--cor-texto);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.avaliacao-autor {
    display: flex;
    justify-content: space-between;
    color: var(--cor-texto-secundario);
    font-size: 0.85rem;
}

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

.faq-item {
    background: var(--cor-fundo-card);
    margin-bottom: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

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

.faq-pergunta::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.ativo .faq-pergunta::after {
    transform: rotate(45deg);
}

.faq-resposta {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--cor-texto-secundario);
}

.faq-item.ativo .faq-resposta {
    padding: 0 1.25rem 1.25rem;
    max-height: 500px;
}

/* Pagamentos */
.pagamentos-grade {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.pagamento-item {
    text-align: center;
}

.pagamento-icone {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

/* Licença */
.licenca-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: var(--cor-fundo-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    flex-wrap: wrap;
    text-align: center;
}

.licenca-badge {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.licenca-info h4 {
    color: var(--cor-ouro);
    margin-bottom: 0.5rem;
}

/* Suporte */
.suporte-grade {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.suporte-item {
    background: var(--cor-fundo-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.suporte-icone {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.suporte-titulo {
    color: var(--cor-ouro);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Jogo Responsável */
.responsavel-box {
    background: var(--cor-fundo-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.responsavel-box h3 {
    color: var(--cor-ouro);
    margin-bottom: 1rem;
}

.responsavel-box ul {
    list-style: none;
    padding-left: 0;
}

.responsavel-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--cor-texto-secundario);
}

.responsavel-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cor-ouro);
}

/* Rodapé */
.rodape {
    background: var(--gradiente-vermelho);
    padding: 3rem 1.5rem 1.5rem;
    border-top: 3px solid var(--cor-ouro);
}

.rodape-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.rodape-coluna h4 {
    color: var(--cor-ouro);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.rodape-coluna a {
    color: var(--cor-texto-secundario);
    transition: color 0.3s ease;
}

.rodape-coluna a:hover {
    color: var(--cor-ouro);
}

.rodape-inferior {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.idade-badge {
    width: 50px;
    height: 50px;
}

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

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb-lista {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-lista li::after {
    content: '>';
    margin-left: 0.5rem;
    color: var(--cor-texto-secundario);
}

.breadcrumb-lista li:last-child::after {
    content: '';
}

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

.breadcrumb-lista li:last-child {
    color: var(--cor-ouro);
}

/* Conteúdo de Texto */
.conteudo-texto {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.conteudo-texto h2 {
    color: var(--cor-ouro);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.conteudo-texto h3 {
    color: var(--cor-ouro-claro);
    margin: 1.5rem 0 0.75rem;
    font-size: 1.25rem;
}

.conteudo-texto p {
    margin-bottom: 1rem;
    color: var(--cor-texto);
}

.conteudo-texto ul, .conteudo-texto ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.conteudo-texto li {
    margin-bottom: 0.5rem;
    color: var(--cor-texto-secundario);
}

/* Tabelas */
.tabela-info {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.tabela-info th, .tabela-info td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.tabela-info th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--cor-ouro);
}

.tabela-info tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

/* Responsivo */
@media (max-width: 768px) {
    .cabecalho-container {
        flex-direction: column;
        text-align: center;
    }
    
    .navegacao-principal {
        justify-content: center;
    }
    
    .hero-titulo {
        font-size: 2rem;
    }
    
    .hero-subtitulo {
        font-size: 1rem;
    }
    
    .secao {
        padding: 2.5rem 1rem;
    }
    
    .secao-titulo {
        font-size: 1.5rem;
    }
    
    .autor-box {
        flex-direction: column;
        text-align: center;
    }
    
    .licenca-box {
        flex-direction: column;
    }
    
    .rodape-inferior {
        flex-direction: column;
        text-align: center;
    }
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cor-ouro);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }
    
    .navegacao-principal {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding-top: 1rem;
    }
    
    .navegacao-principal.ativo {
        display: flex;
    }
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animar {
    animation: fadeIn 0.6s ease forwards;
}

/* Sitemap Page */
.sitemap-lista {
    list-style: none;
    padding: 0;
}

.sitemap-lista li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.sitemap-lista a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sitemap-lista a::before {
    content: '→';
    color: var(--cor-ouro);
}
