/* 89k bet - Tema Verde/Dourado */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --verde-principal: #228B22;
    --verde-claro: #32CD32;
    --dourado: #FFD700;
    --verde-escuro: #006400;
    --fundo-escuro: #0a0a0a;
    --fundo-card: #1a1a1a;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a3a1a 100%);
    color: #fff;
    line-height: 1.6;
}

/* Header */
.cabecalho {
    background: rgba(0,0,0,0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--verde-principal);
}

.container-cabecalho {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo { height: 50px; }

.menu-principal a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    transition: color 0.3s;
}

.menu-principal a:hover { color: var(--dourado); }

.btn-entrar, .btn-cadastrar {
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 10px;
    transition: all 0.3s;
}

.btn-entrar {
    background: transparent;
    border: 2px solid var(--verde-principal);
    color: var(--verde-principal);
}

.btn-cadastrar {
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-claro));
    color: #fff;
}

.btn-cadastrar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--verde-principal);
}

/* Banner Hero */
.banner-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(34,139,34,0.1), rgba(50,205,50,0.1));
    border-radius: 20px;
}

.conteudo-hero h1 {
    font-size: 3.5em;
    color: var(--dourado);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.destaque-hero {
    font-size: 2em;
    color: var(--verde-claro);
    margin-bottom: 15px;
}

.subtitulo-hero {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ccc;
}

.btn-hero {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-claro));
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.3em;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(34,139,34,0.4);
    transition: all 0.3s;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(34,139,34,0.6);
}

.badges-hero {
    margin-top: 25px;
}

.badges-hero span {
    display: inline-block;
    background: rgba(255,215,0,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 0.9em;
    border: 1px solid var(--dourado);
}

.img-hero {
    max-width: 45%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Banners Promocionais */
.banners-promocionais {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.container-banners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.banner-promo {
    background: var(--fundo-card);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 2px solid var(--verde-principal);
    transition: all 0.3s;
}

.banner-promo:hover {
    transform: translateY(-5px);
    border-color: var(--dourado);
    box-shadow: 0 10px 30px rgba(34,139,34,0.3);
}

.banner-promo img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.banner-promo h3 {
    color: var(--dourado);
    margin-bottom: 10px;
}

/* Banner Jackpot */
.banner-jackpot {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--verde-escuro), var(--verde-principal));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.conteudo-jackpot {
    text-align: center;
    flex: 1;
}

.conteudo-jackpot h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.valor-jackpot {
    font-size: 3.5em;
    color: var(--dourado);
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    animation: pulse 2s infinite;
}

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

.btn-jackpot {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: var(--dourado);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-jackpot:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--dourado);
}

.img-jackpot {
    max-width: 40%;
    border-radius: 15px;
}

/* Provedores */
.provedores {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    text-align: center;
}

.provedores h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--dourado);
}

.grid-provedores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.logo-provedor {
    background: var(--fundo-card);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid rgba(34,139,34,0.3);
    transition: all 0.3s;
}

.logo-provedor:hover {
    border-color: var(--verde-principal);
    transform: scale(1.05);
}

.logo-provedor img {
    width: 100%;
    height: auto;
    filter: brightness(0.9);
}

/* Jogos Populares */
.jogos-populares {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
}

.jogos-populares h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dourado);
}

.grade-jogos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.card-jogo {
    background: var(--fundo-card);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(34,139,34,0.3);
    transition: all 0.3s;
}

.card-jogo:hover {
    transform: translateY(-5px);
    border-color: var(--verde-principal);
    box-shadow: 0 10px 30px rgba(34,139,34,0.4);
}

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

.card-jogo h4 {
    padding: 15px;
    color: var(--dourado);
}

.card-jogo a {
    display: block;
    padding: 12px;
    background: var(--verde-principal);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.card-jogo a:hover {
    background: var(--verde-claro);
}

/* Carrossel */
.carrossel-categoria {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
}

.carrossel-categoria h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dourado);
}

.carrossel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
}

.item-carrossel {
    min-width: 250px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--verde-principal);
}

.item-carrossel img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Benefícios */
.beneficios {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
}

.beneficios h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dourado);
}

.grid-beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.card-beneficio {
    background: var(--fundo-card);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(34,139,34,0.3);
    transition: all 0.3s;
}

.card-beneficio:hover {
    border-color: var(--verde-principal);
    transform: translateY(-5px);
}

.card-beneficio .icone {
    font-size: 3em;
    display: block;
    margin-bottom: 15px;
}

.card-beneficio h3 {
    color: var(--dourado);
    margin-bottom: 10px;
}

/* FAQ */
.faq {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px 20px;
}

.faq h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dourado);
}

.item-faq {
    background: var(--fundo-card);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid var(--verde-principal);
}

.item-faq h4 {
    color: var(--verde-claro);
    margin-bottom: 10px;
    font-size: 1.2em;
}

/* Avaliações */
.avaliacoes {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
}

.avaliacoes h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dourado);
}

.grid-avaliacoes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card-avaliacao {
    background: var(--fundo-card);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(34,139,34,0.3);
}

.estrelas {
    color: var(--dourado);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.autor {
    margin-top: 15px;
    color: var(--verde-claro);
    font-style: italic;
}

/* Menu Inferior Mobile */
.menu-inferior-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    padding: 10px 0;
    justify-content: space-around;
    border-top: 2px solid var(--verde-principal);
    z-index: 1000;
}

.menu-inferior-mobile a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
    text-align: center;
}

/* Footer */
.rodape {
    background: #000;
    padding: 40px 20px 20px;
    margin-top: 60px;
    border-top: 3px solid var(--verde-principal);
}

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

.coluna-rodape h4 {
    color: var(--dourado);
    margin-bottom: 15px;
}

.coluna-rodape a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.coluna-rodape a:hover {
    color: var(--verde-claro);
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .img-hero {
        max-width: 100%;
        margin-top: 30px;
    }
    
    .conteudo-hero h1 {
        font-size: 2.5em;
    }
    
    .menu-principal {
        display: none;
    }
    
    .menu-inferior-mobile {
        display: flex;
    }
    
    .banner-jackpot {
        flex-direction: column;
    }
    
    .img-jackpot {
        max-width: 100%;
        margin-top: 20px;
    }
}
