/* sssbet - Cassino Serpente de Prata do Brasil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #001f3f 0%, #003d7a 50%, #001f3f 100%);
    color: #ffffff;
    line-height: 1.8;
}

/* Cabeçalho */
.cabecalho-sssbet {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

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

.logo-sssbet img {
    height: 70px;
    width: auto;
}

.nav-sssbet {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-sssbet a {
    color: #001f3f;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-sssbet a:hover {
    color: #00ff00;
    transform: scale(1.1);
}

.btn-jogar-sssbet {
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    color: #001f3f !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.5);
    animation: pulse-btn 2s infinite;
}

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

/* Hero Banner */
.hero-sssbet {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.9), rgba(255, 215, 0, 0.8)), url('images/1.jpg') center/cover;
    padding: 5rem 2rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.hero-sssbet h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    color: #FFD700;
    font-weight: 900;
}

.hero-sssbet p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Seções */
.secao-sssbet {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

.secao-sssbet h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.secao-sssbet h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #FFA500;
    text-transform: uppercase;
}

.secao-sssbet p, .secao-sssbet li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.9;
}

/* Grid de Jogos */
.grid-jogos-sssbet {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
}

.card-jogo-sssbet {
    background: linear-gradient(135deg, #0077b6 0%, #005f8a 100%);
    border-radius: 15px;
    overflow: hidden;
    width: 280px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.card-jogo-sssbet:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.5);
}

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

.card-jogo-sssbet h3 {
    padding: 1rem;
    font-size: 1.3rem;
    color: #FFD700;
    text-align: center;
}

.card-jogo-sssbet p {
    padding: 0 1rem 1.5rem;
    font-size: 0.95rem;
    text-align: center;
    color: #e0e0e0;
}

/* Avaliações */
.avaliacoes-sssbet {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avaliacao-item {
    background: linear-gradient(135deg, #003d7a 0%, #0077b6 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.avaliacao-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.avaliacao-autor {
    font-weight: 700;
    color: #FFD700;
    font-size: 1.1rem;
}

.avaliacao-estrelas {
    color: #FFD700;
    font-size: 1.2rem;
}

.avaliacao-texto {
    font-size: 1rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.avaliacao-data {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 0.5rem;
}

/* FAQ */
.faq-sssbet {
    margin: 2rem 0;
}

.faq-item {
    background: linear-gradient(135deg, #003d7a 0%, #0077b6 100%);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid #00ff00;
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.2);
}

.faq-item h4 {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #e0e0e0;
    line-height: 1.8;
}

/* Rodapé */
.rodape-sssbet {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    color: #001f3f;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.container-rodape {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.coluna-rodape {
    flex: 1;
    min-width: 200px;
}

.coluna-rodape h3 {
    color: #001f3f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

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

.coluna-rodape a {
    color: #001f3f;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.coluna-rodape a:hover {
    color: #00ff00;
}

.copyright-sssbet {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #001f3f;
    font-weight: 600;
    color: #001f3f;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-sssbet h1 {
        font-size: 2.2rem;
    }
    
    .nav-sssbet {
        flex-direction: column;
        gap: 1rem;
    }
    
    .grid-jogos-sssbet {
        flex-direction: column;
        align-items: center;
    }
    
    .card-jogo-sssbet {
        width: 100%;
        max-width: 350px;
    }
}
