/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00a551; /* Verde */
    --secondary-color: #0077cc; /* Azul */
    --accent-color: #ffcc00; /* Amarelo */
    --bg-light: #f5f5f5;
    --bg-dark: #222;
    --text-primary: #333;
    --text-secondary: #555;
    --text-light: #fff;
    --text-muted: #888;
    --border-color: #e1e1e1;
    --radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-light);
}

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

a:hover {
    color: #008945;
}

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: #008945;
    color: white;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-accent {
    background-color: var(--accent-color);
    color: var(--text-primary);
    font-weight: 700;
}

.btn-accent:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

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

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

/* Acessibilidade */
.skip-nav {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-nav:focus {
    top: 0;
}

/* Header e navegação */
.main-header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 90;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 5px;
}

.nav-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
    background-color: rgba(0, 165, 81, 0.1);
}

.user-actions {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #009048 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.promo-hero {
    padding: 70px 0;
}

.promo-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.hero-content .subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    margin-top: 20px;
}

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: 5px solid rgba(255, 255, 255, 0.2);
}

/* Section Styles */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-primary);
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* How it Works Section */
.how-it-works-section {
    padding: 80px 0;
    background-color: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background-color: white;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 165, 81, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.9rem;
    border: 2px solid white;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Terms Overview Section */
.terms-overview-section {
    padding: 70px 0;
    background-color: var(--bg-light);
}

.terms-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.term-card {
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
    display: flex;
    align-items: center;
}

.term-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: rgba(0, 119, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.term-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.term-content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.term-content p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Featured Games Section */
.featured-games-section {
    padding: 80px 0;
    background-color: white;
}

.games-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

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

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    background-color: var(--accent-color);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.play-btn:hover {
    background-color: white;
    color: var(--primary-color);
    transform: scale(1.05);
}

.game-title {
    font-size: 1.1rem;
    margin: 15px 15px 5px;
}

.game-provider {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 15px 5px;
}

.game-contribution {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 15px 15px;
}

.view-all-games {
    text-align: center;
    margin-top: 30px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

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

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    background-color: white;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(0, 165, 81, 0.05);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

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

.faq-support {
    text-align: center;
}

.faq-support a {
    font-weight: 600;
}

/* Terms and Conditions Section */
.full-terms-section {
    padding: 80px 0;
    background-color: white;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    padding: 30px;
}

.terms-list {
    padding-left: 20px;
}

.terms-list li {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.terms-list li ul {
    padding-left: 20px;
    margin-top: 10px;
    list-style-type: disc;
}

.terms-list li ul li {
    margin-bottom: 5px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0055aa 100%);
    color: white;
    padding: 70px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Rodapé */
.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 70px 0 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: var(--text-light);
    opacity: 0.8;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.responsible-gaming {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    margin-top: 20px;
}

.responsible-gaming h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.responsible-gaming p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.payment-methods {
    margin-bottom: 20px;
}

.payment-methods h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

.copyright p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal-links a {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.7;
}

.footer-legal-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Media Queries */
@media (max-width: 1024px) {
    .promo-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .terms-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .main-header .container {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: flex;
        order: 3;
    }

    .main-nav {
        flex-basis: 100%;
        order: 4;
        margin-top: 20px;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        padding: 12px 0;
        border-radius: 0;
        border-bottom: 1px solid var(--border-color);
    }

    .user-actions {
        margin-left: auto;
        order: 2;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .terms-cards {
        grid-template-columns: 1fr;
    }
    
    .games-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .copyright {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
}
