/* leonbet - Tema Cavalo Dourado 2026 */
/* Reset e Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-dark: #8B7355;
    --purple-deep: #1A0A2E;
    --purple-medium: #2D1B4E;
    --purple-light: #4A2C6A;
    --black-rich: #0D0D0D;
    --white-cream: #FAFAFA;
    --green-success: #28A745;
    --red-accent: #DC3545;
}

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

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--black-rich) 100%);
    color: var(--white-cream);
    line-height: 1.7;
    min-height: 100vh;
}

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

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--white-cream);
}

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

/* Header - Não Sticky */
.site-header {
    background: linear-gradient(180deg, var(--purple-deep) 0%, transparent 100%);
    padding: 1rem 0;
    border-bottom: 2px solid var(--gold-primary);
}

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

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

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navegação */
.main-nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-link {
    padding: 0.6rem 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-dark);
    border-radius: 25px;
    color: var(--gold-light);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: var(--gold-primary);
    color: var(--black-rich);
    transform: translateY(-2px);
}

/* Botão CTA */
.cta-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--black-rich);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    color: var(--black-rich);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 3rem 1rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--gold-light);
}

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

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

.breadcrumb-item::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--gold-dark);
}

.breadcrumb-item:last-child::after {
    content: '';
}

/* Seções */
.section {
    padding: 4rem 0;
}

.section-alt {
    background: rgba(45, 27, 78, 0.5);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold-primary);
    margin: 1rem auto 0;
}

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

.game-card {
    background: linear-gradient(145deg, var(--purple-medium) 0%, var(--purple-deep) 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--gold-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

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

.game-card-body {
    padding: 1.5rem;
}

.game-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.game-card-text {
    font-size: 0.95rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

/* Autor E-E-A-T */
.author-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--gold-dark);
    margin: 2rem 0;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-primary);
}

.author-info h4 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.author-info p {
    font-size: 0.95rem;
    color: var(--gold-light);
}

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

.review-card {
    background: var(--purple-medium);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--gold-primary);
}

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

.review-author {
    font-weight: 600;
    color: var(--gold-primary);
}

.review-location {
    font-size: 0.85rem;
    color: var(--gold-dark);
}

.review-stars {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 0.75rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--gold-dark);
}

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

.faq-item {
    background: var(--purple-medium);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--gold-dark);
}

.faq-question {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--gold-primary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    display: none;
}

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

/* Pagamentos */
.payment-section {
    text-align: center;
}

.payment-img {
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 10px;
}

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

.payment-item {
    background: var(--purple-medium);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.payment-item h4 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

/* Licença */
.license-box {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--gold-primary);
}

.license-badge {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.license-info {
    max-width: 500px;
}

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

.support-item {
    background: var(--purple-medium);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gold-dark);
}

.support-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

/* Jogo Responsável */
.responsible-section {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(45, 27, 78, 0.5) 100%);
    border: 1px solid var(--red-accent);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.responsible-section h3 {
    color: var(--red-accent);
}

.age-badge {
    width: 80px;
    height: 80px;
    margin: 1rem 0;
}

/* Footer */
.site-footer {
    background: var(--black-rich);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--gold-primary);
}

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

.footer-col h4 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gold-light);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gold-dark);
}

.footer-payment {
    max-width: 400px;
    margin: 1rem auto;
}

.footer-age {
    width: 50px;
    margin: 1rem auto;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--gold-dark);
}

/* Conteúdo de Texto */
.content-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.content-block p {
    text-align: justify;
    margin-bottom: 1.5rem;
}

.content-block ul, .content-block ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.content-block li {
    margin-bottom: 0.5rem;
    color: var(--gold-light);
}

/* Tabelas */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.info-table th, .info-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gold-dark);
}

.info-table th {
    background: var(--purple-medium);
    color: var(--gold-primary);
}

.info-table tr:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Responsivo */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .header-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav {
        justify-content: center;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin: 0 auto;
    }
    
    .license-box {
        flex-direction: column;
        text-align: center;
    }
    
    .section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .game-card-img {
        height: 150px;
    }
}

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

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

/* Utilitários */
.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
