@font-face {
    font-family: "ObjectSans";
    src:
        url("fonts/ObjectSans-Regular.woff2") format("woff2"),
        url("fonts/ObjectSans-Regular.woff") format("woff"),
        url("fonts/ObjectSans-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

html {
    background: #f4f6f3;
}

body {
    color: #1f2937;
    font-family: "ObjectSans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Noto Sans", "Liberation Sans", sans-serif;
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* “Página” com margens em cima e laterais */
    background: #ffffff;
    max-width: 980px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 14px;
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.08),
        0 3px 12px rgba(0, 0, 0, 0.06);
}


h1, h2, h3, h4 {
        padding-top: 20px;
        padding-bottom: 20px;

}

h1, h2, h3 {
    color: #111827;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}

h1 { font-size: 28px; font-weight: 750; }
h2 { font-size: 22px; font-weight: 720; margin-top: 22px; }
h3 { font-size: 18px; font-weight: 700; margin-top: 14px; }

p {
    margin: 0 0 14px;
}

ul, ol {
    margin: 0 0 14px;
    padding-left: 22px;
}

li { margin: 6px 0; }

hr {
    border: none;
    height: 1px;
    background: #e5e7eb;
    margin: 22px 0;
}

blockquote {
    margin: 16px 0;
    padding: 12px 14px;
    border-left: 4px solid #52703E;
    background: #f6f8f6;
    border-radius: 10px;
}

@media (max-width: 720px) {
    body {
        margin: 16px;
        padding: 20px;
        border-radius: 12px;
    }
}