/* 78bet - Cassino Online Brasil - Estilos Completos */
/* Design: Luxo Clássico, Verde Esmeralda + Dourado */
/* Fontes: Playfair Display (títulos) + Lato (corpo) */

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

:root {
    --verde-esmeralda: #047857;
    --dourado: #f59e0b;
    --dourado-claro: #fbbf24;
    --verde-escuro: #064e3b;
    --bege-luxo: #fef3c7;
    --texto-escuro: #1f2937;
    --texto-cinza: #6b7280;
    --branco: #ffffff;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    color: var(--texto-escuro);
    background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
    font-size: 17px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--verde-escuro);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--verde-esmeralda);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--verde-esmeralda);
}

p {
    margin-bottom: 1.3rem;
    color: var(--texto-cinza);
    text-align: justify;
}

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

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--verde-esmeralda) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

nav {
    padding: 1.2rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

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

.menu a {
    color: var(--branco);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-cta {
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 100%);
    color: var(--verde-escuro);
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.breadcrumb {
    background: var(--bege-luxo);
    padding: 0.9rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--dourado);
}

.breadcrumb a {
    color: var(--verde-esmeralda);
}

.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(4, 120, 87, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.hero-flex {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    flex: 1.3;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background: #f9fafb;
}

.jogos-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.jogo-box {
    background: var(--branco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.jogo-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(4, 120, 87, 0.2);
    border-color: var(--dourado);
}

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

.jogo-content {
    padding: 2rem;
}

.jogo-content h3 {
    margin-bottom: 1rem;
}

.jogo-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.btn-jogo {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--verde-esmeralda);
    color: var(--branco);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-jogo:hover {
    background: var(--verde-escuro);
    transform: scale(1.05);
}

.sobre-texto {
    max-width: 1000px;
    margin: 0 auto;
}

.sobre-texto p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

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

.pagamento-card {
    background: var(--branco);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 4px solid var(--dourado);
    transition: all 0.3s ease;
}

.pagamento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pagamento-card h3 {
    margin-bottom: 1rem;
}

.licenca-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.licenca-content {
    flex: 2;
}

.licenca-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.licenca-selo {
    flex: 1;
}

.licenca-selo img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.suporte-item {
    background: linear-gradient(135deg, rgba(4, 120, 87, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--dourado);
}

.suporte-item h3 {
    margin-bottom: 1rem;
}

.faq-wrapper {
    max-width: 950px;
    margin: 3rem auto 0;
}

.faq-box {
    background: var(--branco);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid var(--verde-esmeralda);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-box h3 {
    color: var(--verde-esmeralda);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-box p {
    font-size: 1rem;
    line-height: 1.7;
}

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

.avaliacao-box {
    background: var(--branco);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--dourado);
}

.avaliacao-topo {
    margin-bottom: 1.5rem;
}

.avaliacao-topo strong {
    display: block;
    color: var(--verde-escuro);
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

.avaliacao-cidade {
    font-size: 0.9rem;
    color: var(--texto-cinza);
}

.estrelas {
    color: var(--dourado);
    font-size: 1.3rem;
    margin-top: 0.5rem;
}

.avaliacao-conteudo {
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.avaliacao-data {
    font-size: 0.85rem;
    color: var(--texto-cinza);
}

.jogo-responsavel {
    background: linear-gradient(135deg, rgba(4, 120, 87, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-top: 3px solid var(--verde-esmeralda);
    border-bottom: 3px solid var(--verde-esmeralda);
}

.jogo-responsavel ul {
    list-style: none;
    margin: 2rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.jogo-responsavel li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.05rem;
}

.jogo-responsavel li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--verde-esmeralda);
    font-weight: 700;
    font-size: 1.5rem;
}

.autor-container {
    display: flex;
    gap: 2.5rem;
    background: var(--branco);
    padding: 3rem;
    border-radius: 15px;
    max-width: 950px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.autor-foto img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--dourado);
}

.autor-bio h3 {
    margin-bottom: 1rem;
}

.autor-bio p {
    font-size: 1rem;
    line-height: 1.7;
}

.autor-bio strong {
    color: var(--verde-esmeralda);
}

footer {
    background: linear-gradient(180deg, var(--verde-escuro) 0%, #000000 100%);
    color: #d1d5db;
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--dourado);
}

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

.footer-col h4 {
    color: var(--dourado);
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #d1d5db;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--dourado);
}

.idade-aviso {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
    border: 2px solid #dc2626;
    text-align: center;
}

.idade-aviso strong {
    display: block;
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 158, 11, 0.3);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #d1d5db;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-container {
        flex-direction: column;
    }
    
    .menu {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    .hero-flex {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .jogos-container,
    .pagamentos-flex,
    .suporte-flex,
    .avaliacoes-container {
        grid-template-columns: 1fr;
    }
    
    .licenca-container {
        flex-direction: column;
    }
    
    .autor-container {
        flex-direction: column;
        text-align: center;
    }
    
    .autor-foto img {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .btn-cta {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}
