/* 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: #f8f9fa;
    --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);
}

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

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.support-hero {
    padding: 60px 0;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Seção de Pesquisa */
.search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.search-form {
    display: flex;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    overflow: hidden;
}

.search-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 1.1rem;
    outline: none;
}

.search-btn {
    background-color: white;
    color: var(--primary-color);
    padding: 0 25px;
    font-size: 1.2rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.search-btn:hover {
    background-color: var(--accent-color);
}

/* Seção de Opções de Suporte */
.support-options-section {
    padding: 70px 0;
    background-color: white;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.option-card {
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.option-icon {
    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;
}

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

.option-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

/* Seção de FAQ */
.faq-section {
    padding: 70px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.tab-btn {
    padding: 12px 25px;
    background-color: transparent;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
    cursor: pointer;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.tab-content {
    display: none;
}

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

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

.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;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* Valor alto o suficiente para conter o conteúdo */
    padding-bottom: 20px;
}

.faq-answer p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.faq-answer ul, .faq-answer ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-answer ul li, .faq-answer ol li {
    margin-bottom: 8px;
}

.faq-answer ul {
    list-style: disc;
}

.faq-answer ol {
    list-style: decimal;
}

/* Contact Section */
.contact-section {
    padding: 70px 0;
    background-color: white;
}

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

.contact-card {
    text-align: center;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

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

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.contact-card .btn {
    margin-top: auto;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 165, 81, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

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

/* Footer Top */
.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 30%;
}

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

.footer-logo p {
    opacity: 0.7;
    margin-top: 10px;
}

.footer-links {
    flex: 0 0 65%;
    display: flex;
    justify-content: space-between;
}

.footer-links-column {
    flex: 1;
    padding: 0 15px;
}

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

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

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

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

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

/* Footer Middle */
.footer-middle {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.payment-methods, .social-links {
    flex: 0 0 48%;
}

.payment-methods h4, .social-links h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

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

.payment-icons i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.payment-icons i:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons 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-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.responsible-gaming {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 15px;
}

.responsible-gaming img {
    width: 40px;
    height: 40px;
}

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

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

/* Esta definição foi movida para a seção de rodapé */

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

.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) {
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Rodapé responsivo */
    .footer-top {
        flex-direction: column;
    }
    
    .footer-logo {
        flex: 0 0 100%;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex: 0 0 100%;
    }
    
    .footer-middle {
        flex-direction: column;
    }
    
    .payment-methods, .social-links {
        flex: 0 0 100%;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .payment-icons, .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .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;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .faq-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
    
    /* Rodapé em tablets */
    .footer-links {
        flex-wrap: wrap;
    }
    
    .footer-links-column {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .options-grid, 
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    /* Rodapé em celulares */
    .footer-links-column {
        flex: 0 0 100%;
    }
    
    .responsible-gaming {
        flex-direction: column;
    }
    
    .copyright {
        flex-direction: column;
        text-align: center;
    }
}
