/* Netfontes - artigos de ajuda */

.page-help .help-article {
    width: min(820px, 100%);
    box-sizing: border-box;
    color: #2f3a40;
    font-size: 15px;
    line-height: 1.65;
}

.page-help .help-article * {
    box-sizing: border-box;
}

.page-help .help-article p {
    margin: 0 0 16px;
}

.page-help .help-lead {
    margin: 0 0 24px;
    padding: 18px 20px;
    border-left: 4px solid #005874;
    border-radius: 0 8px 8px 0;
    background: #f5f9fa;
    color: #263238;
    font-size: 17px;
    line-height: 1.6;
}

.page-help .help-lead strong {
    color: #005874;
}

.page-help .help-section {
    margin: 0 0 28px;
    padding-top: 4px;
}

.page-help .help-section + .help-section {
    padding-top: 26px;
    border-top: 1px solid #e1e7ea;
}

.page-help .help-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    color: #18252b;
    font-size: 20px;
    line-height: 1.3;
}

.page-help .help-section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #005874;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.page-help .help-steps {
    margin: 18px 0 24px;
    padding: 0;
    list-style: none;
    counter-reset: help-step;
}

.page-help .help-steps li {
    position: relative;
    min-height: 36px;
    margin: 0 0 14px;
    padding: 6px 0 6px 48px;
    counter-increment: help-step;
}

.page-help .help-steps li::before {
    content: counter(help-step);
    position: absolute;
    top: 2px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #cbd8dd;
    border-radius: 50%;
    background: #fff;
    color: #005874;
    font-weight: bold;
}

.page-help .help-article a {
    color: #005874;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-help .help-article a:hover,
.page-help .help-article a:focus {
    color: #c00;
}

.page-help .help-example,
.page-help .help-tip,
.page-help .help-note {
    width: 100%;
    margin: 20px 0;
    padding: 16px 18px;
    border: 1px solid #d7e0e4;
    border-radius: 8px;
    background: #f8fafb;
}

.page-help .help-example-title,
.page-help .help-tip strong,
.page-help .help-note strong {
    display: block;
    margin-bottom: 8px;
    color: #222;
    font-weight: bold;
}

.page-help .help-example p:last-child,
.page-help .help-tip p:last-child,
.page-help .help-note p:last-child {
    margin-bottom: 0;
}

.page-help .help-example code {
    display: block;
    margin-top: 8px;
    padding: 10px 12px;
    border: 1px solid #dde5e8;
    border-radius: 5px;
    background: #fff;
    color: #263238;
    font-family: Consolas, "Courier New", monospace;
    font-size: 13px;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.page-help .help-format-label {
    display: inline-block;
    margin-top: 12px;
    padding: 2px 7px;
    border-radius: 4px;
    background: #e9f1f4;
    color: #36515d;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.page-help .help-format-label:first-of-type {
    margin-top: 4px;
}

.page-help .help-tip {
    border-color: #cbdde4;
    background: #f3f9fb;
}

.page-help .help-note {
    border-color: #dfd8a9;
    background: #fffdf0;
}

.page-help .help-checks {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.page-help .help-checks li {
    position: relative;
    margin: 7px 0;
    padding-left: 24px;
}

.page-help .help-checks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00704a;
    font-weight: bold;
}

.page-help .help-limits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0 0;
}

.page-help .help-limit {
    padding: 14px 16px;
    border: 1px solid #e2ddb9;
    border-radius: 7px;
    background: #fff;
}

.page-help .help-limit strong {
    display: block;
    margin: 0 0 2px;
    color: #18252b;
    font-size: 18px;
}

.page-help .help-limit span {
    color: #55636a;
    font-size: 13px;
}

@media only screen and (max-width: 640px) {
    .page-help .help-article {
        width: 100%;
        font-size: 14px;
    }

    .page-help .help-lead {
        padding: 15px 16px;
        font-size: 16px;
    }

    .page-help .help-section-title {
        font-size: 18px;
    }

    .page-help .help-steps li {
        padding-left: 42px;
    }

    .page-help .help-example,
    .page-help .help-tip,
    .page-help .help-note {
        padding: 14px;
    }

    .page-help .help-limits {
        grid-template-columns: 1fr;
    }
}
