/* ===== VARIÁVEIS ===== */
:root {
    --primary-color: #ff6600; /* Laranja vibrante */
    --secondary-color: #ffc107; /* Amarelo */
    --accent-color: #8e44ad; /* Roxo */
    --dark-color: #222;
    --light-color: #f9f9f9;
    --medium-gray: #777;
    --light-gray: #eee;
    --text-color: #333;
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ===== ESTILOS BÁSICOS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px */
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.6rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #e65c00;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--medium-gray);
}

.btn-secondary:hover {
    background-color: #f4f4f4;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1.4rem 3rem;
    font-size: 1.8rem;
}

.btn-sm {
    padding: 0.8rem 1.5rem;
    font-size: 1.4rem;
}

/* ===== HEADER ===== */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.5rem 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 1.5rem 0;
    background-color: var(--light-gray);
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 0.8rem;
    color: var(--medium-gray);
}

.breadcrumbs li:last-child {
    color: var(--primary-color);
    font-weight: 500;
}

/* ===== BANNER PRINCIPAL ===== */
.hero-banner {
    padding: 6rem 0;
    background-color: #2b1d3a;
    color: white;
    background-image: linear-gradient(45deg, rgba(43, 29, 58, 0.9), rgba(61, 20, 102, 0.85));
    position: relative;
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 4.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.hero-text p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ===== CONTEÚDO PRINCIPAL ===== */
.main-content {
    padding: 5rem 0;
}

.content-section {
    margin-bottom: 6rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-header p {
    font-size: 1.8rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== SEÇÃO DE DESTAQUE ===== */
.highlight-section {
    margin-bottom: 5rem;
}

.promo-banner {
    background-color: #f5f5f5;
    padding: 4rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.promo-timer {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    display: inline-block;
    border-radius: 30px;
    margin-bottom: 2rem;
}

.promo-timer p {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.player-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.count-value {
    font-size: 2.4rem;
    font-weight: 700;
}

.count-label {
    font-size: 1.4rem;
    opacity: 0.8;
}

.promo-banner h2 {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.promo-subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--medium-gray);
}

/* ===== JOGOS POPULARES ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.game-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.game-card.featured {
    grid-column: span 2;
    display: flex;
}

.game-image {
    position: relative;
    overflow: hidden;
}

.game-card.featured .game-image {
    flex: 1;
}

.game-card.featured .game-info {
    flex: 1;
    padding: 3rem;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.game-info {
    padding: 2rem;
}

.game-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.game-info p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    color: var(--medium-gray);
}

.players-online {
    color: var(--accent-color);
    font-weight: 500;
}

/* ===== CATEGORIAS DE JOGOS ===== */
.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    gap: 1rem;
}

.tab-button {
    padding: 1rem 2rem;
    background-color: #f5f5f5;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 500;
    transition: var(--transition);
}

.tab-button.active,
.tab-button:hover {
    background-color: var(--primary-color);
    color: white;
}

.tab-content {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.category-description {
    margin-bottom: 3rem;
}

.category-description h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.category-description p {
    color: var(--medium-gray);
    line-height: 1.8;
}

.category-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
}

.feature-icon {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
}

.feature h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* ===== VANTAGENS ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.advantage-card {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 4.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.advantage-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

/* ===== COMO COMEÇAR ===== */
.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.cta-centered {
    text-align: center;
    margin-top: 4rem;
}

/* ===== DEPOIMENTOS ===== */
.testimonials-slider {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    min-width: 300px;
    flex: 1;
    box-shadow: var(--box-shadow);
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--medium-gray);
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
}

/* ===== PERGUNTAS FREQUENTES ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
}

.faq-toggle {
    font-size: 2.4rem;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

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

/* ===== CTA FINAL ===== */
.cta-section {
    margin-top: 6rem;
}

.cta-box {
    background: linear-gradient(45deg, var(--primary-color), #ff8533);
    color: white;
    padding: 5rem 3rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-box h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn-outline {
    color: white;
    border-color: white;
}

.cta-box .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* ===== RODAPÉ ===== */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: flex;
    margin-bottom: 4rem;
    gap: 4rem;
}

.footer-logo {
    flex: 1;
}

.footer-logo a {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column a {
    opacity: 0.8;
}

.footer-column a:hover,
.footer-column a.active {
    opacity: 1;
    color: var(--secondary-color);
}

.payment-methods {
    padding: 2rem 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.payment-icon {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
}

.footer-bottom {
    text-align: center;
    opacity: 0.7;
    font-size: 1.4rem;
}

.footer-bottom p {
    margin-bottom: 1rem;
}

/* ===== BOTÃO VOLTAR AO TOPO ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #e65c00;
    transform: translateY(-5px);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    html {
        font-size: 60%;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .game-card.featured {
        grid-column: span 1;
        display: block;
    }
    
    .game-card.featured .game-image img {
        height: 200px;
    }
    
    .game-card.featured .game-info {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 57.5%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 2rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .main-nav.show {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .category-features {
        flex-direction: column;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .promo-banner h2 {
        font-size: 2.8rem;
    }
    
    .hero-text h1 {
        font-size: 3.6rem;
    }
    
    .hero-text h2 {
        font-size: 2.4rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1.5rem;
    }
    
    .tab-button {
        width: calc(50% - 0.5rem);
        text-align: center;
    }
}
