:root{
    --primary: #247ba0ff;
    --primary-light: #1b98e0ff;
    --primary-dark: #13293dff;
    --secondary: #006494ff;
    --accent: #13293dff;
    --success: #10b981;
    --error: #ef4444;
    --dark: #13293dff;
    --light: #E8F1F2ff;
    --border: #e2e8f0;
    --text-primary: #13293dff;
    --text-secondary: #006494ff;
    --text-light: #247ba0ff;


    
    /* Espaçamento */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;

    /* Raio de borda */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-full: 9999px;
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #13293d;
    background-color: #f7fbfd;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s, transform 0.2s;
}

a:hover {
    color: var(--primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Estilos específicos da página de suporte */
.support-hero {
    padding: 48px 0 32px 0;
    background: linear-gradient(90deg, #247ba0 0%, #1b98e0 100%);
    color: #fff;
    text-align: center;
}

.support-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.search-box {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.search-box input {
    padding: 12px 16px;
    border-radius: 8px 0 0 8px;
    border: none;
    font-size: 1rem;
    width: 260px;
    outline: none;
}

.search-box input:focus {
    outline: 2px solid #247ba0;
}

.search-btn {
    background: #10b981;
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 0 18px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}

.search-btn:hover, .search-btn:focus {
    background: #13293d;
    outline: 2px solid #247ba0;
}

.support-categories {
    padding: 40px 0 24px 0;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.category-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px #0001;
    padding: 32px 28px;
    min-width: 260px;
    max-width: 320px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.category-card:hover, .category-card:focus-within {
    box-shadow: 0 6px 32px #247ba033;
    transform: translateY(-4px) scale(1.03);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.btn.btn-outline {
    border: 2px solid #247ba0;
    color: #247ba0;
    background: #fff;
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 600;
    margin-top: 16px;
    transition: background 0.2s, color 0.2s;
}

.btn.btn-outline:hover, .btn.btn-outline:focus {
    background: #247ba0;
    color: #fff;
    outline: 2px solid #247ba0;
}

.faq-section {
    background: #e8f1f2;
    padding: 48px 0 32px 0;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px #0001;
    padding: 0 24px;
    transition: box-shadow 0.2s;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 0;
    outline: none;
    transition: background 0.2s;
}

.faq-question:focus {
    background: #e0f7e9;
}

.faq-answer {
    font-size: 1rem;
    color: #13293d;
    padding-bottom: 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 200px;
    padding-bottom: 18px;
}

.toggle-icon {
    font-size: 1.5rem;
    margin-left: 12px;
    color: #247ba0;
    transition: transform 0.2s;
}

.faq-question[aria-expanded="true"] .toggle-icon {
    transform: rotate(45deg);
}

.contact-section {
    padding: 48px 0 32px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px #0001;
    padding: 32px 28px;
    min-width: 260px;
    max-width: 320px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.contact-card:hover, .contact-card:focus-within {
    box-shadow: 0 6px 32px #247ba033;
    transform: translateY(-4px) scale(1.03);
}

.contact-icon, .discord-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.discord-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.btn.btn-primary {
    background: #247ba0;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    margin-top: 16px;
    transition: background 0.2s, color 0.2s;
}

.btn.btn-primary:hover, .btn.btn-primary:focus {
    background: #10b981;
    color: #fff;
    outline: 2px solid #247ba0;
}

.response-time {
    color: #247ba0;
    font-size: 0.95rem;
    margin-top: 6px;
}

@media (max-width: 900px) {
    .categories-grid, .contact-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .support-hero, .faq-section, .contact-section {
        padding: 24px 0 16px 0;
    }
    .category-card, .contact-card {
        min-width: 90vw;
        max-width: 98vw;
        padding: 18px 8px;
    }
    .faq-grid {
        padding: 0 8px;
    }
}

/* Foco visível global */
*:focus-visible {
    outline: 2px solid #247ba0;
    outline-offset: 2px;
}

/* Footer Styles */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links h3, .footer-contact h3 {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: var(--light);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--light);
}

.footer-legal a {
    color: var(--light);
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--secondary);
}