/* CONFIGURAÇÕES GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #2600ff; /* Mantém o azul padrão */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* NAVBAR */
.navbar {
    background: linear-gradient(180deg, #4226ff 0%, #2600ff 100%);
    padding: 15px 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease, font-weight 0.2s;
}

.nav-item:hover, .nav-item.active {
    color: #ffffff;
    font-weight: bold;
}

/* HERO DA AJUDA (BUSCA AMPLIADA) */
.help-hero {
    padding: 60px 20px;
    text-align: center;
}

.help-hero-container {
    max-width: 700px;
    margin: 0 auto;
}

.help-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.help-subtitle {
    color: #a393ff;
    font-size: 16px;
    margin-bottom: 30px;
}

/* BARRA DE BUSCA EXPANDIDA */
.search-box-large {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.search-box-large i {
    color: #777777;
    font-size: 18px;
    margin-right: 15px;
}

.search-box-large input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    color: #333333;
}

/* CONTEÚDO PRINCIPAL (FAQ) */
.help-content {
    background-color: #1a00b8; /* Variação de azul para contraste */
    padding: 60px 20px;
    flex: 1;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 26px;
    margin-bottom: 40px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

/* CARDS DO FAQ (ESTILO DO CARD DO INDEX) */
.faq-card {
    background-color: #4a29ff; /* Mesmo tom do card interno do index */
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.faq-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00d2ff; /* Destaque ciano sutil */
}

.faq-card p {
    font-size: 15px;
    color: #f0edff;
    line-height: 1.6;
    text-align: justify;
}

/* SEÇÃO EXTRA: CANAIS DE CONTATO */
.contact-section {
    padding: 60px 20px;
    text-align: center;
}

.contact-container h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-container p {
    color: #a393ff;
    margin-bottom: 35px;
}

.contact-channels {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.channel-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 40px;
    border-radius: 12px;
    min-width: 220px;
}

.channel-card i {
    font-size: 28px;
    color: #00d2ff;
    margin-bottom: 10px;
}

.channel-card h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.channel-card p {
    color: #ffffff;
    margin-bottom: 0;
    font-weight: bold;
}

/* RODAPÉ PRETO */
.footer {
    background-color: #000000;
    padding: 35px 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    height: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-info {
    text-align: right;
    font-size: 14px;
    color: #aaaaaa;
}

.sub-footer {
    margin-top: 4px;
    font-size: 12px;
    color: #666666;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }
}

/* CONSTRUCTION OVERLAY (shared with index) */
.construction-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.construction-overlay.show {
    opacity: 1;
    visibility: visible;
}
.construction-box {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.construction-gif {
    width: 120px;
    height: auto;
    display: block;
}
.construction-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    animation: pulse 1.2s infinite;
}