/* 567win Brasil - CSS Principal */
/* Configurações Globais e Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-primaria: #6B21A8;
    --cor-secundaria: #D4AF37;
    --cor-fundo: #0F0A1A;
    --cor-fundo-card: #1A1025;
    --cor-texto: #F5F5F5;
    --cor-texto-secundario: #B8B8B8;
    --cor-destaque: #9333EA;
    --cor-sucesso: #22C55E;
    --cor-alerta: #EAB308;
    --gradiente-principal: linear-gradient(135deg, #6B21A8 0%, #9333EA 50%, #D4AF37 100%);
    --gradiente-botao: linear-gradient(90deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    --sombra-card: 0 8px 32px rgba(107, 33, 168, 0.3);
    --fonte-principal: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --fonte-destaque: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--fonte-principal);
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    line-height: 1.7;
    overflow-x: hidden;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

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

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

a:hover {
    color: #F4D03F;
}

/* Container Principal */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Cabeçalho */
.cabecalho {
    background: linear-gradient(180deg, rgba(15, 10, 26, 0.98) 0%, rgba(15, 10, 26, 0.95) 100%);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.cabecalho-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.logo-texto {
    font-family: var(--fonte-destaque);
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradiente-botao);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navegação */
.navegacao {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navegacao-lista {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.navegacao-lista a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--cor-texto);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navegacao-lista a:hover {
    background: rgba(147, 51, 234, 0.2);
    color: var(--cor-secundaria);
}

/* Botão CTA */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: var(--gradiente-botao);
    color: var(--cor-fundo);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

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

/* Menu Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--cor-secundaria);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-banner.webp') center/cover no-repeat;
    opacity: 0.4;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 10, 26, 0.9) 0%, rgba(107, 33, 168, 0.5) 50%, rgba(15, 10, 26, 0.9) 100%);
    z-index: -1;
}

.hero-conteudo {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(147, 51, 234, 0.3);
    border: 1px solid var(--cor-destaque);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--cor-secundaria);
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero h1 span {
    background: var(--gradiente-botao);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-descricao {
    font-size: 1.125rem;
    color: var(--cor-texto);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-botoes {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secundario {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--cor-texto);
    font-weight: 600;
    border: 2px solid var(--cor-destaque);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secundario:hover {
    background: var(--cor-destaque);
    color: white;
}

/* Seções */
.secao {
    padding: 5rem 0;
}

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

.secao-titulo h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.secao-titulo h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradiente-botao);
    border-radius: 2px;
}

.secao-subtitulo {
    color: var(--cor-texto-secundario);
    max-width: 700px;
    margin: 0 auto;
}

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

.jogo-card {
    background: var(--cor-fundo-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

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

.jogo-card-imagem {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.jogo-card-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.jogo-card:hover .jogo-card-imagem img {
    transform: scale(1.1);
}

.jogo-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.75rem;
    background: var(--cor-destaque);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

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

.jogo-card-conteudo h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.jogo-card-conteudo p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.jogo-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cor-secundaria);
    font-weight: 600;
    font-size: 0.9rem;
}

.jogo-card-link:hover {
    gap: 0.75rem;
}

/* Seção de Bônus */
.bonus-secao {
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.2) 0%, rgba(15, 10, 26, 1) 50%, rgba(212, 175, 55, 0.1) 100%);
}

.bonus-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.bonus-imagem img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--sombra-card);
}

.bonus-lista {
    list-style: none;
    margin: 1.5rem 0;
}

.bonus-lista li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.bonus-lista li:last-child {
    border-bottom: none;
}

.bonus-icone {
    width: 40px;
    height: 40px;
    background: var(--gradiente-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

/* Pagamentos */
.pagamentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.pagamento-card {
    background: var(--cor-fundo-card);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: all 0.3s ease;
}

.pagamento-card:hover {
    border-color: var(--cor-secundaria);
    transform: translateY(-4px);
}

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

.pagamento-card h4 {
    margin-bottom: 0.5rem;
}

.pagamento-destaque {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, var(--cor-fundo-card) 100%);
    border-color: var(--cor-sucesso);
}

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

.avaliacao-card {
    background: var(--cor-fundo-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

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

.avaliacao-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradiente-principal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.avaliacao-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

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

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

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

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

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

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

.faq-pergunta {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--cor-texto);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-pergunta:hover {
    color: var(--cor-secundaria);
}

.faq-pergunta::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--cor-destaque);
    transition: transform 0.3s ease;
}

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

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.ativo .faq-resposta {
    max-height: 500px;
}

.faq-resposta-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--cor-texto-secundario);
    line-height: 1.7;
}

/* Sobre / Autor */
.sobre-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.autor-card {
    background: var(--cor-fundo-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.autor-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--cor-destaque);
}

.autor-card h3 {
    margin-bottom: 0.5rem;
}

.autor-card .cargo {
    color: var(--cor-secundaria);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Licença */
.licenca-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--cor-fundo-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.licenca-badge {
    flex-shrink: 0;
}

.licenca-badge img {
    width: 150px;
    height: auto;
}

/* Suporte */
.suporte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.suporte-card {
    background: var(--cor-fundo-card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: all 0.3s ease;
}

.suporte-card:hover {
    border-color: var(--cor-secundaria);
    transform: translateY(-4px);
}

.suporte-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

/* Jogo Responsável */
.responsavel-container {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, var(--cor-fundo-card) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.responsavel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.responsavel-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.responsavel-icone {
    width: 50px;
    height: 50px;
    background: var(--cor-sucesso);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.responsavel-icone img {
    width: 30px;
    height: 30px;
}

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

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

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

.breadcrumb-lista li:last-child::after {
    display: none;
}

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

.breadcrumb-lista a:hover {
    color: var(--cor-secundaria);
}

/* Rodapé */
.rodape {
    background: linear-gradient(180deg, var(--cor-fundo) 0%, #080510 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(147, 51, 234, 0.2);
}

.rodape-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.rodape-marca p {
    margin: 1rem 0;
    font-size: 0.9rem;
}

.rodape-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.rodape-social a {
    width: 40px;
    height: 40px;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.rodape-social a:hover {
    background: var(--cor-destaque);
}

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

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

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

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

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

.rodape-pagamentos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.rodape-pagamentos img {
    height: 30px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.rodape-pagamentos img:hover {
    opacity: 1;
}

.rodape-inferior {
    padding-top: 2rem;
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.rodape-inferior p {
    font-size: 0.85rem;
    color: var(--cor-texto-secundario);
    margin: 0;
}

.rodape-badges {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.rodape-badges img {
    height: 40px;
}

.idade-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #DC2626;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
}

/* Páginas Internas */
.pagina-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.3) 0%, var(--cor-fundo) 100%);
}

.pagina-conteudo {
    padding: 3rem 0 5rem;
}

.conteudo-principal {
    max-width: 900px;
    margin: 0 auto;
}

.conteudo-principal h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--cor-secundaria);
}

.conteudo-principal h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.conteudo-principal ul, .conteudo-principal ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--cor-texto-secundario);
}

.conteudo-principal li {
    margin-bottom: 0.5rem;
}

.conteudo-imagem {
    margin: 2rem 0;
    border-radius: 16px;
    overflow: hidden;
}

.conteudo-imagem img {
    width: 100%;
    height: auto;
}

.info-box {
    background: var(--cor-fundo-card);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--cor-destaque);
    margin: 1.5rem 0;
}

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

.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(147, 51, 234, 0.2);
}

.tabela-info th {
    background: var(--cor-fundo-card);
    color: var(--cor-secundaria);
    font-weight: 600;
}

.tabela-info tr:hover {
    background: rgba(147, 51, 234, 0.1);
}

/* Responsivo */
@media (max-width: 1024px) {
    .bonus-container {
        grid-template-columns: 1fr;
    }
    
    .sobre-container {
        grid-template-columns: 1fr;
    }
    
    .rodape-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .navegacao {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--cor-fundo);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid rgba(147, 51, 234, 0.3);
    }
    
    .navegacao.ativo {
        right: 0;
    }
    
    .navegacao-lista {
        flex-direction: column;
        width: 100%;
    }
    
    .navegacao-lista a {
        padding: 1rem;
        border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    }
    
    .hero {
        min-height: 70vh;
        text-align: center;
    }
    
    .hero-botoes {
        justify-content: center;
    }
    
    .licenca-container {
        flex-direction: column;
        text-align: center;
    }
    
    .rodape-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .rodape-social {
        justify-content: center;
    }
    
    .rodape-inferior {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .secao {
        padding: 3rem 0;
    }
    
    .btn-cta {
        width: 100%;
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Overlay do Menu Mobile */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.menu-overlay.ativo {
    opacity: 1;
    visibility: visible;
}

/* Lazy Loading Placeholder */
.img-lazy {
    background: var(--cor-fundo-card);
    min-height: 200px;
}
