/* betaobet - Gates of Olympus Theme 2026 */
/* Cores Principais */
:root {
    --cor-primaria: #4A1A7A;
    --cor-secundaria: #6B2D9E;
    --cor-dourada: #D4AF37;
    --cor-dourada-clara: #F4D03F;
    --cor-fundo: #1A0A2E;
    --cor-fundo-card: #2D1B4E;
    --cor-texto: #FFFFFF;
    --cor-texto-secundario: #B8A8D0;
    --gradiente-olympus: linear-gradient(135deg, #4A1A7A 0%, #2D1B4E 50%, #1A0A2E 100%);
    --gradiente-dourado: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    --sombra-dourada: 0 0 20px rgba(212, 175, 55, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gradiente-olympus);
    color: var(--cor-texto);
    line-height: 1.8;
    min-height: 100vh;
}

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

/* Cabeçalho */
header {
    background: rgba(26, 10, 46, 0.95);
    padding: 15px 0;
    border-bottom: 2px solid var(--cor-dourada);
}

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

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

.logo-area img {
    height: 50px;
    width: auto;
}

.logo-area h1 {
    font-size: 1.8rem;
    background: var(--gradiente-dourado);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

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

nav a {
    color: var(--cor-texto);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--cor-dourada);
}

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

nav a:hover::after {
    width: 80%;
}

/* Botão CTA */
.btn-cta {
    display: inline-block;
    background: var(--gradiente-dourado);
    color: var(--cor-fundo);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--sombra-dourada);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.5);
}

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

.hero-bg {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--sombra-dourada);
}

.hero-content {
    margin-top: 30px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradiente-dourado);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--cor-texto-secundario);
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background: rgba(45, 27, 78, 0.5);
}

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

.breadcrumb li::after {
    content: '›';
    margin-left: 10px;
    color: var(--cor-dourada);
}

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

.breadcrumb a {
    color: var(--cor-texto-secundario);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--cor-dourada);
}

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

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradiente-dourado);
}

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

.game-card {
    background: var(--cor-fundo-card);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-dourada);
    border-color: var(--cor-dourada);
}

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

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

.game-card h3 {
    color: var(--cor-dourada);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.game-card p {
    color: var(--cor-texto-secundario);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* Autor Box */
.author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--cor-fundo-card);
    padding: 25px;
    border-radius: 15px;
    margin: 40px 0;
    border-left: 4px solid var(--cor-dourada);
}

.author-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--cor-dourada);
}

.author-info h4 {
    color: var(--cor-dourada);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--cor-texto-secundario);
    font-size: 0.9rem;
}

/* Avaliações */
.reviews-section {
    background: rgba(45, 27, 78, 0.3);
}

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

.review-card {
    background: var(--cor-fundo-card);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

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

.reviewer-name {
    font-weight: 600;
    color: var(--cor-dourada);
}

.reviewer-city {
    color: var(--cor-texto-secundario);
    font-size: 0.85rem;
}

.stars {
    color: var(--cor-dourada-clara);
    font-size: 1.2rem;
}

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

.review-date {
    color: var(--cor-texto-secundario);
    font-size: 0.8rem;
}

/* FAQ */
.faq-section {
    background: var(--cor-fundo);
}

.faq-item {
    background: var(--cor-fundo-card);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--cor-dourada);
}

.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 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

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

.payment-methods img {
    height: 60px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Licença */
.license-section {
    background: rgba(45, 27, 78, 0.5);
    text-align: center;
}

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

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

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

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-dourada);
}

.support-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.support-item h4 {
    color: var(--cor-dourada);
    margin-bottom: 10px;
}

/* Jogo Responsável */
.responsible-section {
    background: var(--cor-fundo);
    border-top: 2px solid var(--cor-dourada);
}

.responsible-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.responsible-content img {
    max-width: 100%;
    border-radius: 15px;
}

/* Sobre Nós */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h3 {
    color: var(--cor-dourada);
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--cor-texto-secundario);
}

/* Footer */
footer {
    background: rgba(26, 10, 46, 0.98);
    padding: 50px 0 20px;
    border-top: 2px solid var(--cor-dourada);
}

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

.footer-section h4 {
    color: var(--cor-dourada);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-section a:hover {
    color: var(--cor-dourada);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

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

.copyright {
    color: var(--cor-texto-secundario);
    font-size: 0.9rem;
}

/* Página Interna */
.page-header {
    padding: 40px 0;
    text-align: center;
    background: rgba(45, 27, 78, 0.5);
}

.page-header h1 {
    font-size: 2.5rem;
    background: var(--gradiente-dourado);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section {
    padding: 40px 0;
}

.content-section h2 {
    color: var(--cor-dourada);
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.content-section h3 {
    color: var(--cor-dourada-clara);
    margin: 25px 0 10px;
    font-size: 1.2rem;
}

.content-section p {
    margin-bottom: 15px;
    color: var(--cor-texto-secundario);
}

.content-section ul, .content-section ol {
    margin: 15px 0 15px 30px;
    color: var(--cor-texto-secundario);
}

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

.content-image {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    display: block;
    border-radius: 15px;
    box-shadow: var(--sombra-dourada);
}

/* Info Box */
.info-box {
    background: var(--cor-fundo-card);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid var(--cor-dourada);
}

.info-box h4 {
    color: var(--cor-dourada);
    margin-bottom: 10px;
}

/* Tabela */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--cor-fundo-card);
    border-radius: 10px;
    overflow: hidden;
}

.info-table th, .info-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.info-table th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--cor-dourada);
}

.info-table td {
    color: var(--cor-texto-secundario);
}

/* Sitemap */
.sitemap-section {
    padding: 60px 0;
}

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

.sitemap-category {
    background: var(--cor-fundo-card);
    padding: 25px;
    border-radius: 15px;
}

.sitemap-category h3 {
    color: var(--cor-dourada);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.sitemap-category ul {
    list-style: none;
}

.sitemap-category li {
    margin-bottom: 10px;
}

.sitemap-category a {
    color: var(--cor-texto-secundario);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sitemap-category a::before {
    content: '⚡';
    font-size: 0.8rem;
}

.sitemap-category a:hover {
    color: var(--cor-dourada);
}

/* Responsivo */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .about-content, .responsible-content {
        grid-template-columns: 1fr;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-area h1 {
        font-size: 1.4rem;
    }
    
    nav ul {
        gap: 10px;
    }
    
    nav a {
        padding: 5px 10px;
        font-size: 0.9rem;
    }
    
    .btn-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

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

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

/* Links externos */
a[rel*="nofollow"] {
    color: var(--cor-texto-secundario);
}

/* Lazy loading placeholder */
img[loading="lazy"] {
    background: var(--cor-fundo-card);
}
