/* ============================================
   CENTRAL DE AJUDA - PRIMO CONTINGÊNCIA
   ============================================ */

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

body {
    font-family: 'Poppins', sans-serif;
    background: #0B0F1F;
    color: white;
}

/* Header (mesmo da landing) */
.header {
    background: rgba(11, 15, 31, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #A5AAC7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #FF8C2E;
}

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

.btn-login {
    background: transparent;
    border: 1px solid #FF6B00;
    color: #FF8C2E;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.btn-login:hover {
    background: #FF6B00;
    color: white;
}

.btn-signup {
    background: linear-gradient(135deg, #FF6B00, #FF8C2E);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.85rem;
    transition: transform 0.2s;
}

.btn-signup:hover {
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0F122E, #0B0F1F);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: #A5AAC7;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.faq-item {
    background: #0F122E;
    border-radius: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #2A2F4A;
    overflow: hidden;
}

.faq-question {
    padding: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.2s;
}

.faq-question:hover {
    background: rgba(255, 107, 0, 0.1);
}

.faq-question i {
    color: #FF8C2E;
    transition: transform 0.3s;
}

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

.faq-answer {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #8B92B0;
    line-height: 1.6;
}

.faq-answer.active {
    padding: 0 1.2rem 1.2rem;
    max-height: 300px;
}

/* Contact Card */
.contact-card {
    background: #0F122E;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid #2A2F4A;
    margin-top: 2rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card .btn-primary {
    background: linear-gradient(135deg, #FF6B00, #FF8C2E);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: transform 0.2s;
}

.contact-card .btn-primary:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #0A0E1A;
    padding: 3rem 0 1rem;
    border-top: 1px solid #1A1F35;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.footer-brand h3 {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.footer-brand p {
    color: #8B92B0;
    font-size: 0.8rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-links h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #FF8C2E;
}

.footer-links a {
    display: block;
    color: #8B92B0;
    text-decoration: none;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #FF8C2E;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C2E;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icons a:hover {
    background: #FF6B00;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1A1F35;
}

.footer-bottom p {
    color: #4A4F6E;
    font-size: 0.7rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .faq-section {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}