/* help-modal.css - Estilo para o modal de ajuda */
.help-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.help-modal.show {
    opacity: 1;
}
.help-modal-content {
    background: var(--bg-secondary, #161B22);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.2s ease;
}
.help-modal.show .help-modal-content {
    transform: scale(1);
}
.help-modal-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border, #2D3748);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.help-modal-header h2 {
    font-size: 1.2rem;
    margin: 0;
}
.close-help {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary, #9CA3AF);
    padding: 0;
    line-height: 1;
}
.close-help:hover {
    color: var(--text-primary, #E6EDF3);
}
.help-modal-body {
    padding: 1rem;
    overflow-y: auto;
    flex: 1;
    color: var(--text-primary, #E6EDF3);
    line-height: 1.5;
}
.help-modal-body a {
    color: var(--accent-blue, #58a6ff);
    text-decoration: none;
}
.help-modal-body a:hover {
    text-decoration: underline;
}
.help-modal-body h2 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
}
.help-modal-body h3 {
    font-size: 1rem;
    margin: 0.75rem 0 0.5rem;
}
.help-modal-body p {
    margin: 0.5rem 0;
}
.help-modal-body ul, .help-modal-body ol {
    margin: 0.5rem 0 0.5rem 1.5rem;
}
@media (max-width: 600px) {
    .help-modal-content {
        max-width: 95%;
        max-height: 85vh;
    }
    .help-modal-header h2 {
        font-size: 1rem;
    }
}