/* ================= ESTILOS ESPECÍFICOS DE AJUDA ================= */
    body { padding-top: 0; }

    /* --- Animações --- */
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    .animate-block { opacity: 0; animation: fadeInUp 0.8s ease-out forwards; }
    .delay-1 { animation-delay: 0.2s; }
    .delay-2 { animation-delay: 0.4s; }
    .delay-3 { animation-delay: 0.6s; }

    /* --- Hero & Busca --- */
    .help-hero { 
    text-align: center; 
    padding: 30px 20px; 
    margin-bottom: 20px;
    
    /* ADICIONE ISSO PARA CORRIGIR O BUG DA LISTA CORTADA: */
    position: relative; 
    z-index: 50; 
}

/* E garanta que a seção de baixo tenha z-index menor */
#faqSection {
    position: relative;
    z-index: 1;
}
    .help-search-container { position: relative; max-width: 500px; margin: 0 auto; }
    
    .help-search {
        width: 100%; padding: 15px 20px; padding-right: 50px;
        border-radius: 30px; border: 2px solid #e1e4e8; 
        font-size: 16px; transition: all 0.3s;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .help-search:focus { border-color: var(--brand); outline: none; }
    
    .search-btn {
        position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
        background: transparent; border: none; cursor: pointer;
        color: var(--muted); padding: 10px; font-size: 18px;
    }

    /* --- LISTA DE SUGESTÕES (AUTOCOMPLETE) --- */
    .suggestions-list {
        position: absolute; top: 100%; left: 15px; right: 15px;
        background: white; border: 1px solid #e1e4e8; border-top: none;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        z-index: 100; max-height: 250px; overflow-y: auto;
        display: none; /* Oculto por padrão */
        text-align: left;
    }
    .suggestion-item {
        padding: 12px 20px; cursor: pointer; border-bottom: 1px solid #f9f9f9;
        color: #555; font-size: 14px; display: flex; align-items: center; gap: 10px;
    }
    .suggestion-item:last-child { border-bottom: none; }
    .suggestion-item:hover { background: #f0f7fa; color: var(--brand); font-weight: 600; }
    .suggestion-item i { font-size: 12px; color: #ccc; }

    /* --- Highlight Card --- */
    .highlight-card {
        border: 2px solid var(--accent-orange) !important;
        background-color: #fffdf0 !important;
        transition: all 0.5s ease;
    }

    /* --- Link Animado --- */
    .help-redirect {
        display: inline-flex; align-items: center; gap: 8px;
        margin-top: 15px; padding: 8px 16px;
        background: #eef5f9; color: var(--brand);
        border-radius: 20px; font-size: 0.9em; font-weight: 600;
        text-decoration: none; transition: all 0.3s ease; border: 1px solid transparent;
    }
    .help-redirect:hover {
        background: var(--brand); color: white; transform: translateY(-2px);
    }

    /* --- FAQ (Acordeões) --- */
    details {
        border: 1px solid #e1e4e8; border-radius: 8px; margin-bottom: 12px; 
        background: #fff; overflow: hidden; transition: all 0.3s ease; cursor: pointer;
        scroll-margin-top: 20px;
    }
    details[open] { border-color: var(--brand); box-shadow: 0 4px 10px rgba(11, 95, 138, 0.1); }
    summary {
        padding: 18px; font-weight: 600; color: #333; display: flex; 
        align-items: center; justify-content: space-between; list-style: none;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
        content: '\f078'; font-family: "Font Awesome 6 Free"; font-weight: 900;
        color: var(--muted); transition: transform 0.3s;
    }
    details[open] summary::after { transform: rotate(180deg); color: var(--brand); }
    details[open] summary { background: #f8fbff; color: var(--brand); border-bottom: 1px solid #f0f0f0; }
    details p { padding: 20px; margin: 0; line-height: 1.6; color: #555; }

    /* --- Sugestões Box --- */
    .suggestion-box {
        background: #fff9e6; border: 1px dashed #f9c80e; padding: 20px; 
        border-radius: 8px; margin-top: 30px; text-align: center;
    }
    .suggestion-input {
        width: 100%; max-width: 400px; padding: 10px; margin-top: 10px;
        border: 1px solid #ccc; border-radius: 6px; font-size: 14px;
    }
    .suggestion-btn {
        margin-top: 10px; background: #fff; border: 1px solid #f9c80e;
        color: #d4a000; padding: 8px 20px; border-radius: 6px; 
        font-weight: bold; cursor: pointer; transition: 0.2s;
    }
    .suggestion-btn:hover { background: #f9c80e; color: white; }
    .suggestion-btn:disabled { opacity: 0.6; cursor: not-allowed; }

    /* --- Feedback --- */
    .feedback-card {
        background: #fff; border: 1px solid #e1e4e8; padding: 25px; 
        text-align: center; border-radius: 8px; margin-top: 30px;
    }
    .feedback-actions { display: flex; gap: 15px; justify-content: center; margin-top: 15px; }
    .feedback-btn {
        background: #f4f6f8; border: 1px solid #ddd; padding: 10px 25px;
        border-radius: 30px; cursor: pointer; font-weight: 600; color: #555;
        transition: all 0.2s; display: flex; align-items: center; gap: 8px;
    }
    .feedback-btn:hover { border-color: var(--brand); color: var(--brand); transform: scale(1.05); }
    .feedback-btn.active { background: var(--brand); color: white; border-color: var(--brand); }