/* 333bet - Tema Estilo Van Gogh 2026 */
/* Paleta de cores inspirada em Noite Estrelada */

:root {
    --van-gogh-blue-deep: #0a1628;
    --van-gogh-blue-medium: #1a3a5c;
    --van-gogh-blue-light: #2d5a87;
    --van-gogh-gold: #d4a017;
    --van-gogh-gold-light: #f4c430;
    --van-gogh-yellow: #ffd700;
    --van-gogh-cream: #f5e6c8;
    --van-gogh-swirl: #3d7eaa;
    --text-primary: #f5e6c8;
    --text-secondary: #a8c5db;
    --gradient-cosmic: linear-gradient(135deg, #0a1628 0%, #1a3a5c 50%, #2d5a87 100%);
    --shadow-gold: 0 4px 20px rgba(212, 160, 23, 0.3);
    --shadow-blue: 0 4px 20px rgba(45, 90, 135, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: var(--gradient-cosmic);
    color: var(--text-primary);
    line-height: 1.8;
    min-height: 100vh;
    background-attachment: fixed;
}

/* Efeito de pincelada Van Gogh */
.brushstroke-bg {
    background-image: 
        radial-gradient(ellipse at 20% 30%, rgba(61, 126, 170, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 160, 23, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(45, 90, 135, 0.2) 0%, transparent 70%);
}

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

/* Cabeçalho - Não sticky conforme requisito */
header {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(26, 58, 92, 0.95) 100%);
    padding: 15px 0;
    border-bottom: 3px solid var(--van-gogh-gold);
    position: relative;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--van-gogh-gold);
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--van-gogh-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Navegação */
nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(45, 90, 135, 0.3);
    border: 1px solid transparent;
}

nav a:hover {
    background: var(--van-gogh-gold);
    color: var(--van-gogh-blue-deep);
    border-color: var(--van-gogh-gold-light);
    transform: translateY(-2px);
}

/* Botão CTA principal */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--van-gogh-gold) 0%, var(--van-gogh-gold-light) 100%);
    color: var(--van-gogh-blue-deep);
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid var(--van-gogh-gold);
    box-shadow: var(--shadow-gold);
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 3rem;
    color: var(--van-gogh-gold);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Seções */
section {
    padding: 60px 0;
    position: relative;
}

.section-title {
    font-size: 2.2rem;
    color: var(--van-gogh-gold);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--van-gogh-gold), transparent);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Cards de Jogos */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: linear-gradient(145deg, rgba(26, 58, 92, 0.9) 0%, rgba(10, 22, 40, 0.95) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--van-gogh-blue-light);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-blue);
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--van-gogh-gold);
    box-shadow: var(--shadow-gold);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid var(--van-gogh-gold);
}

.game-card-content {
    padding: 25px;
}

.game-card h3 {
    color: var(--van-gogh-gold);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.game-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.game-card .cta-button {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 1rem;
}

/* Seção de Autor - E-E-A-T */
.author-section {
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    border: 2px solid var(--van-gogh-blue-light);
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.author-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--van-gogh-gold);
    object-fit: cover;
}

.author-info h3 {
    color: var(--van-gogh-gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.author-info .title {
    color: var(--van-gogh-gold-light);
    font-style: italic;
    margin-bottom: 15px;
}

.author-info p {
    color: var(--text-secondary);
    max-width: 600px;
}

/* Avaliações */
.reviews-section {
    background: rgba(26, 58, 92, 0.5);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

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

.review-card {
    background: linear-gradient(145deg, rgba(10, 22, 40, 0.9) 0%, rgba(26, 58, 92, 0.8) 100%);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--van-gogh-blue-light);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--van-gogh-gold);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    color: var(--van-gogh-gold);
    font-weight: 600;
}

.reviewer-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stars {
    color: var(--van-gogh-yellow);
    font-size: 1.2rem;
}

.review-text {
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 10px;
}

.review-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-section {
    margin: 40px 0;
}

.faq-item {
    background: linear-gradient(145deg, rgba(26, 58, 92, 0.7) 0%, rgba(10, 22, 40, 0.8) 100%);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--van-gogh-blue-light);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--van-gogh-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--van-gogh-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Métodos de Pagamento */
.payment-section {
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.payment-icon {
    width: 120px;
    height: 80px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid var(--van-gogh-blue-light);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    border-color: var(--van-gogh-gold);
    transform: scale(1.05);
}

/* Licença */
.license-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.6) 0%, rgba(10, 22, 40, 0.7) 100%);
    border-radius: 20px;
    margin: 40px 0;
}

.license-badge {
    width: 150px;
    height: 150px;
    margin: 20px auto;
    border-radius: 50%;
    border: 3px solid var(--van-gogh-gold);
}

/* Suporte */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.support-card {
    background: linear-gradient(145deg, rgba(26, 58, 92, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--van-gogh-blue-light);
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: var(--van-gogh-gold);
    transform: translateY(-5px);
}

.support-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.support-card h4 {
    color: var(--van-gogh-gold);
    margin-bottom: 10px;
}

/* Jogo Responsável */
.responsible-gaming {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3) 0%, rgba(10, 22, 40, 0.9) 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    border: 2px solid var(--van-gogh-gold);
}

.responsible-gaming h2 {
    color: var(--van-gogh-gold);
    margin-bottom: 20px;
}

.responsible-gaming ul {
    list-style: none;
    padding-left: 0;
}

.responsible-gaming li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
}

.responsible-gaming li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--van-gogh-gold);
    font-weight: bold;
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, #050a12 100%);
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 3px solid var(--van-gogh-gold);
}

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

.footer-section h4 {
    color: var(--van-gogh-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--van-gogh-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--van-gogh-blue-light);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.age-restriction {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 20px;
    background: rgba(212, 160, 23, 0.2);
    border-radius: 10px;
    border: 1px solid var(--van-gogh-gold);
}

.age-restriction img {
    width: 40px;
    height: 40px;
}

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

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--van-gogh-gold);
}

.breadcrumb span {
    color: var(--van-gogh-gold);
    margin: 0 10px;
}

/* Conteúdo de página interna */
.page-content {
    background: linear-gradient(145deg, rgba(26, 58, 92, 0.6) 0%, rgba(10, 22, 40, 0.7) 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    border: 1px solid var(--van-gogh-blue-light);
}

.page-content h1 {
    color: var(--van-gogh-gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.page-content h2 {
    color: var(--van-gogh-gold-light);
    font-size: 1.8rem;
    margin: 30px 0 15px;
}

.page-content h3 {
    color: var(--van-gogh-gold);
    font-size: 1.4rem;
    margin: 25px 0 12px;
}

.page-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.page-content ul, .page-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-content li {
    margin-bottom: 8px;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 20px 0;
    border: 2px solid var(--van-gogh-blue-light);
}

/* Tabelas */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(10, 22, 40, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.info-table th, .info-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--van-gogh-blue-light);
}

.info-table th {
    background: rgba(212, 160, 23, 0.2);
    color: var(--van-gogh-gold);
    font-weight: 600;
}

.info-table td {
    color: var(--text-secondary);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: var(--van-gogh-gold);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    color: var(--van-gogh-blue-deep);
    font-weight: bold;
}

/* Responsivo */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .author-section {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background: rgba(10, 22, 40, 0.98);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
        border-top: 2px solid var(--van-gogh-gold);
    }
    
    nav.active {
        display: flex;
    }
    
    nav a {
        width: 100%;
        text-align: center;
    }
    
    .header-inner {
        flex-wrap: wrap;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .page-content {
        padding: 25px;
    }
    
    .page-content h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    section {
        padding: 40px 0;
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Preload e performance */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}
