/* jogaobet - Attack on Titan Theme CSS 2026 */
/* Cores principais inspiradas em Shingeki no Kyojin */
:root {
    --titan-crimson: #8B0000;
    --titan-blood: #A52A2A;
    --wall-stone: #2C2C2C;
    --wall-dark: #1A1A1A;
    --gold-accent: #D4AF37;
    --gold-light: #FFD700;
    --text-light: #F5F5F5;
    --text-muted: #B0B0B0;
    --shadow-dark: rgba(0,0,0,0.8);
    --gradient-titan: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 50%, #3D3D3D 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
}

* {
    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(--wall-dark);
    color: var(--text-light);
    line-height: 1.8;
    min-height: 100vh;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--gold-accent);
    text-shadow: 2px 2px 4px var(--shadow-dark);
}

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(--text-light);
}

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

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

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

/* Header - Não sticky conforme requisito */
.site-header {
    background: var(--gradient-titan);
    border-bottom: 3px solid var(--titan-crimson);
    padding: 15px 0;
    position: relative;
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-wrapper img {
    height: 60px;
    width: auto;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navegação */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--text-light);
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--gold-accent);
}

/* Botão CTA */
.cta-button {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--wall-dark) !important;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--wall-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px var(--shadow-dark);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

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

.section-dark {
    background: var(--wall-dark);
}

.section-stone {
    background: var(--wall-stone);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 15px auto 0;
}

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

.game-card {
    background: var(--wall-stone);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-accent);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

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

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

.game-card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--gold-accent);
}

.game-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.game-card .cta-button {
    width: 100%;
    text-align: center;
}

/* Seção de Bônus */
.bonus-section {
    background: url('../images/bonus-banner.jpg') center/cover no-repeat;
    position: relative;
    padding: 80px 0;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26,26,26,0.85);
}

.bonus-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.bonus-highlight {
    font-size: 3rem;
    color: var(--gold-light);
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Métodos de Pagamento */
.payment-section {
    background: var(--wall-stone);
    padding: 50px 0;
}

.payment-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.payment-item {
    background: var(--wall-dark);
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.payment-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.payment-item img {
    height: 40px;
    width: auto;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    background: var(--wall-dark);
}

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

.faq-item {
    background: var(--wall-stone);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border-left: 4px solid var(--titan-crimson);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--gold-accent);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold-accent);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Avaliações */
.reviews-section {
    background: var(--wall-stone);
}

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

.review-card {
    background: var(--wall-dark);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--wall-dark);
    font-size: 1.2rem;
}

.review-info h4 {
    margin-bottom: 5px;
    color: var(--text-light);
}

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

.review-stars {
    color: var(--gold-light);
    margin-bottom: 10px;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 10px;
    text-align: right;
}

/* Autor */
.author-section {
    background: var(--wall-dark);
    padding: 50px 0;
}

.author-card {
    display: flex;
    gap: 30px;
    align-items: center;
    background: var(--wall-stone);
    padding: 30px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

.author-info {
    flex: 1;
    min-width: 250px;
}

.author-name {
    color: var(--gold-accent);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.author-title {
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Licença */
.license-section {
    background: var(--wall-stone);
    padding: 40px 0;
    text-align: center;
}

.license-badge {
    max-width: 200px;
    margin: 0 auto 20px;
}

/* Suporte */
.support-section {
    background: var(--wall-dark);
}

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

.support-card {
    background: var(--wall-stone);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

/* Jogo Responsável */
.responsible-section {
    background: var(--titan-crimson);
    padding: 40px 0;
}

.responsible-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.responsible-icon {
    width: 100px;
    height: 100px;
}

.responsible-text {
    max-width: 600px;
}

.responsible-text h3 {
    color: var(--gold-light);
}

/* Footer */
.site-footer {
    background: var(--wall-dark);
    border-top: 3px solid var(--titan-crimson);
    padding: 50px 0 20px;
}

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

.footer-column h4 {
    color: var(--gold-accent);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-column a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-badges img {
    height: 50px;
    width: auto;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background: var(--wall-stone);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-list li::after {
    content: '>';
    margin-left: 10px;
    color: var(--text-muted);
}

.breadcrumb-list li:last-child::after {
    display: none;
}

.breadcrumb-list a {
    color: var(--text-muted);
}

.breadcrumb-list li:last-child {
    color: var(--gold-accent);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold-accent);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsivo */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        order: 3;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 20px 0;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .bonus-highlight {
        font-size: 2rem;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* 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;
}

/* Lazy Loading Placeholder */
img[loading="lazy"] {
    background: var(--wall-stone);
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .cta-button {
        display: none;
    }
}
