/* ==========================================================================
   ROBERTO TOMAZ
   Sistema visual global
   Desenvolvimento Humano · Educação · Estratégia
   ========================================================================== */


/* ==========================================================================
   01. TOKENS / IDENTIDADE VISUAL
   ========================================================================== */

:root {
    /* Cores principais */
    --petrol: #163b3a;
    --petrol-mid: #245c57;
    --ink: #17282e;

    /* Fundos */
    --ivory: #f7f4ee;
    --sand: #eae4da;
    --white: #ffffff;

    /* Acentos */
    --bronze: #9a6424;
    --slate: #606a70;

    /* Linhas e componentes */
    --line: rgba(23, 40, 46, 0.15);
    --line-medium: rgba(23, 40, 46, 0.24);
    --line-strong: rgba(23, 40, 46, 0.52);
    --line-light: rgba(255, 255, 255, 0.18);

    /* Estrutura */
    --container: 1180px;
    --text: 760px;
    --header-height: 82px;

    /* Bordas */
    --radius: 6px;
    --radius-large: 8px;

    /* Tipografia funcional */
    --font-sans:
        "Montserrat",
        Arial,
        Helvetica,
        sans-serif;

    /* Tipografia editorial */
    --font-serif:
        Georgia,
        Cambria,
        "Times New Roman",
        serif;
}


/* ==========================================================================
   02. RESET / BASE
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    color: var(--ink);
    background: var(--ivory);

    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    text-rendering: optimizeLegibility;
}

::selection {
    color: var(--white);
    background: var(--petrol-mid);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

svg {
    display: block;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
select {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(154, 100, 36, 0.62);
    outline-offset: 4px;
}


/* ==========================================================================
   03. ESTRUTURA
   ========================================================================== */

.container {
    width: min(
        var(--container),
        calc(100% - 48px)
    );

    margin-inline: auto;
}

.narrow {
    width: min(
        var(--text),
        100%
    );
}


/* ==========================================================================
   04. ACESSIBILIDADE
   ========================================================================== */

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;

    z-index: 1000;

    padding: 11px 17px;

    color: var(--white);
    background: var(--petrol);

    border-radius: var(--radius);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.skip-link:focus {
    top: 16px;
}

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


/* ==========================================================================
   05. TIPOGRAFIA
   ========================================================================== */

/*
 * Regra editorial:
 *
 * Georgia:
 * - H1
 * - H2
 * - H3
 * - H4
 * - nome Roberto Tomaz
 *
 * Montserrat:
 * - corpo
 * - navegação
 * - números
 * - indicadores
 * - botões
 * - labels
 * - formulários
 * - metadados
 */

h1,
h2,
h3,
h4 {
    margin-top: 0;

    color: var(--ink);

    font-family: var(--font-serif);
    font-weight: 400;

    letter-spacing: -0.028em;
}

h1 {
    max-width: 980px;

    margin-bottom: 27px;

    font-size: clamp(
        44px,
        5.2vw,
        68px
    );

    line-height: 1.045;
}

h2 {
    max-width: 900px;

    margin-bottom: 22px;

    font-size: clamp(
        34px,
        3.8vw,
        48px
    );

    line-height: 1.08;
}

h3 {
    margin-bottom: 10px;

    font-size: clamp(
        24px,
        2.25vw,
        30px
    );

    line-height: 1.15;
}

h4 {
    margin-bottom: 8px;

    font-size: 22px;
    line-height: 1.2;
}

p {
    margin: 0 0 1.2em;
}

strong {
    font-weight: 700;
}


/* Texto de destaque */

.lead {
    max-width: 820px;

    color: var(--slate);

    font-size: clamp(
        18px,
        1.65vw,
        20px
    );

    font-weight: 400;

    line-height: 1.65;
}


/* Pequenos títulos institucionais */

.eyebrow {
    display: inline-block;

    margin-bottom: 17px;

    color: var(--bronze);

    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.16em;
    line-height: 1.4;

    text-transform: uppercase;
}


/* ==========================================================================
   06. NÚMEROS E INDICADORES
   ========================================================================== */

/*
 * Use esta classe quando um número aparecer dentro de um título serifado.
 *
 * Exemplo:
 *
 * <h2>
 *     Veja as <span class="heading-number">30</span> modalidades.
 * </h2>
 */

.heading-number,
.numeric {
    font-family: var(--font-sans);

    font-weight: 500;

    letter-spacing: -0.035em;

    font-variant-numeric:
        lining-nums
        tabular-nums;
}


/* ==========================================================================
   07. LINKS
   ========================================================================== */

.text-link {
    display: inline-flex;

    gap: 8px;

    align-items: center;

    color: var(--petrol);

    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;

    line-height: 1.5;

    text-decoration: none;
}

.text-link::after {
    content: "→";

    transition:
        transform 0.18s ease;
}

.text-link:hover,
.text-link:focus-visible {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.text-link:hover::after,
.text-link:focus-visible::after {
    transform: translateX(3px);
}


/* ==========================================================================
   08. BOTÕES
   ========================================================================== */

.button {
    display: inline-flex;

    min-height: 48px;

    align-items: center;
    justify-content: center;

    padding: 0 20px;

    border: 1px solid var(--petrol);
    border-radius: var(--radius);

    color: var(--white);
    background: var(--petrol);

    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;

    line-height: 1.2;

    text-align: center;
    text-decoration: none;

    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}

.button:visited {
    color: var(--white);
}

.button:hover,
.button:focus-visible {
    color: var(--white);

    background: var(--ink);
    border-color: var(--ink);

    transform: translateY(-1px);
}

.button-small {
    min-height: 44px;

    padding-inline: 18px;
}

.button-secondary {
    color: var(--petrol);

    background: transparent;
}

.button-secondary:visited {
    color: var(--petrol);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    color: var(--white);

    background: var(--petrol);
    border-color: var(--petrol);
}


/* ==========================================================================
   09. HEADER
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;

    z-index: 100;

    min-height: var(--header-height);

    background: rgba(247, 244, 238, 0.96);

    border-bottom: 1px solid transparent;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.site-header.is-scrolled {
    border-color: var(--line);

    box-shadow:
        0 7px 30px
        rgba(23, 40, 46, 0.04);
}

.header-inner {
    min-height: var(--header-height);

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* ==========================================================================
   10. MARCA
   ========================================================================== */

.brand {
    display: inline-flex;

    flex-direction: column;

    flex-shrink: 0;

    line-height: 1;

    text-decoration: none;
}

.brand-name {
    color: var(--ink);

    font-family: var(--font-serif);
    font-size: 27px;
    font-weight: 400;

    letter-spacing: -0.035em;
}

.brand-tagline {
    margin-top: 7px;

    color: var(--petrol-mid);

    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.14em;
    line-height: 1.2;

    text-transform: uppercase;
}


/* ==========================================================================
   11. MENU PRINCIPAL
   ========================================================================== */

.main-nav {
    display: flex;

    align-items: center;

    gap: 21px;
}

.main-nav > a,
.nav-group > a {
    display: inline-flex;

    min-height: 44px;

    align-items: center;

    color: var(--ink);

    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;

    line-height: 1.2;

    text-decoration: none;

    transition:
        color 0.18s ease;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible,
.main-nav > a:not(.button)[aria-current="page"],
.nav-group > a:hover,
.nav-group > a:focus-visible,
.nav-group > a.is-current-section,
.nav-group > a[aria-current="page"] {
    color: var(--petrol-mid);
}


/* ==========================================================================
   12. BOTÃO CONTATO NO MENU
   ========================================================================== */

.main-nav > .button,
.main-nav > .button:visited {
    min-height: 44px;

    color: var(--white);

    background: var(--petrol);
    border-color: var(--petrol);
}

.main-nav > .button:hover,
.main-nav > .button:focus-visible {
    color: var(--white);

    background: var(--ink);
    border-color: var(--ink);
}

.main-nav > .button[aria-current="page"] {
    color: var(--white);

    background: var(--ink);
    border-color: var(--ink);
}

.main-nav > .button[aria-current="page"]:hover {
    color: var(--white);

    background: var(--petrol-mid);
    border-color: var(--petrol-mid);
}


/* ==========================================================================
   13. SUBMENU ATUAÇÃO
   ========================================================================== */

.nav-group {
    position: relative;

    display: flex;

    align-items: center;

    gap: 2px;
}

.nav-submenu-toggle {
    display: inline-grid;

    place-items: center;

    width: 28px;
    height: 44px;

    padding: 0;

    border: 0;

    color: var(--ink);
    background: transparent;

    cursor: pointer;
}

.nav-submenu-toggle:hover,
.nav-submenu-toggle:focus-visible {
    color: var(--petrol-mid);
}

.nav-chevron {
    display: block;

    width: 7px;
    height: 7px;

    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;

    transform:
        translateY(-2px)
        rotate(45deg);

    transition:
        transform 0.2s ease;
}

.nav-submenu-toggle[aria-expanded="true"]
.nav-chevron {
    transform:
        translateY(2px)
        rotate(225deg);
}

.nav-submenu {
    position: absolute;

    top: calc(100% + 11px);
    left: -18px;

    z-index: 120;

    width: 320px;

    display: none;

    padding: 12px;

    background: var(--white);

    border: 1px solid var(--line);
    border-radius: var(--radius);

    box-shadow:
        0 18px 50px
        rgba(23, 40, 46, 0.12);
}

.nav-submenu a {
    display: block;

    padding: 11px 12px;

    border-radius: 4px;

    color: var(--ink);

    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;

    line-height: 1.45;

    text-decoration: none;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
    color: var(--petrol);

    background: var(--ivory);
}

.nav-submenu a[aria-current="page"] {
    color: var(--petrol);

    background: var(--sand);
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu,
.nav-submenu.is-open {
    display: block;
}


/* ==========================================================================
   14. MENU MOBILE
   ========================================================================== */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 9px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;

    width: 24px;
    height: 1.5px;

    margin: 6px auto;

    background: var(--ink);
}


/* ==========================================================================
   15. HERO PRINCIPAL
   ========================================================================== */

.hero {
    padding:
        112px
        0
        96px;

    background: var(--ivory);

    border-bottom: 1px solid var(--line);
}

.hero-inner {
    display: grid;

    grid-template-columns:
        minmax(0, 1.43fr)
        minmax(280px, 0.57fr);

    gap: 64px;

    align-items: end;
}

.hero h1 {
    max-width: 900px;
}

.hero-side {
    padding-left: 28px;

    border-left: 1px solid var(--line);
}

.hero-side p {
    color: var(--slate);

    font-size: 14px;
    line-height: 1.68;
}

.hero-side strong {
    color: var(--ink);
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    align-items: center;

    margin-top: 31px;
}


/* ==========================================================================
   16. HERO DE PÁGINAS INTERNAS
   ========================================================================== */

.page-hero {
    padding:
        82px
        0
        70px;

    background: var(--ivory);

    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    max-width: 940px;

    font-size: clamp(
        40px,
        4.6vw,
        60px
    );
}


/* ==========================================================================
   17. BREADCRUMB
   ========================================================================== */

.breadcrumb {
    margin-bottom: 25px;

    color: var(--slate);

    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
}

.breadcrumb ol {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.breadcrumb li {
    display: inline-flex;

    gap: 8px;

    align-items: center;
}

.breadcrumb li + li::before {
    content: "›";

    color: var(--slate);
}

.breadcrumb a {
    color: var(--petrol-mid);

    text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* ==========================================================================
   18. SEÇÕES
   ========================================================================== */

.section {
    padding:
        84px
        0;
}

.section-white {
    background: var(--white);
}

.section-ivory {
    background: var(--ivory);
}

.section-sand {
    background: var(--sand);
}

.section-dark {
    color: rgba(255, 255, 255, 0.82);

    background: var(--petrol);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-dark .lead {
    color: rgba(255, 255, 255, 0.78);
}

.section-dark .eyebrow {
    color: #d8b67d;
}

.section-dark strong {
    color: var(--white);
}


/* ==========================================================================
   19. GRIDS PRINCIPAIS
   ========================================================================== */

.intro-grid,
.split {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1.08fr);

    gap: 72px;

    align-items: start;
}


/* ==========================================================================
   20. INDICADORES / STATEMENTS
   ========================================================================== */

.statements {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 0;

    margin-top: 48px;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.statement {
    padding:
        28px
        28px
        28px
        0;
}

.statement + .statement {
    padding-left: 28px;

    border-left: 1px solid var(--line);
}


/*
 * NÚMEROS E INDICADORES:
 * Montserrat, não Georgia.
 */

.statement strong {
    display: block;

    margin-bottom: 9px;

    color: var(--ink);

    font-family: var(--font-sans);
    font-size: 25px;
    font-weight: 600;

    letter-spacing: -0.025em;
    line-height: 1.2;

    font-variant-numeric:
        lining-nums
        tabular-nums;
}

.statement span {
    display: block;

    color: var(--slate);

    font-size: 14px;
    line-height: 1.65;
}


/* ==========================================================================
   21. LISTAS EDITORIAIS
   ========================================================================== */

.editorial-list {
    margin-top: 40px;

    border-top: 1px solid var(--line);
}

.editorial-item {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 58px;

    padding:
        38px
        0;

    border-bottom: 1px solid var(--line);
}

.editorial-item h3 {
    margin-bottom: 0;
}

.editorial-item p:last-child {
    margin-bottom: 0;
}

.editorial-meta {
    display: block;

    margin-bottom: 10px;

    color: var(--bronze);

    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.14em;
    line-height: 1.4;

    text-transform: uppercase;
}

.editorial-content ul,
.content-list {
    margin:
        18px
        0
        0;

    padding-left: 20px;
}

.editorial-content li,
.content-list li {
    margin-bottom: 8px;
}


/* ==========================================================================
   22. PERGUNTAS
   ========================================================================== */

.question-list {
    margin-top: 36px;

    border-top: 1px solid var(--line);
}

.question {
    padding:
        28px
        0;

    border-bottom: 1px solid var(--line);
}

.question h3 {
    max-width: 850px;

    margin-bottom: 11px;

    font-size: 27px;
}

.question p {
    max-width: 860px;

    color: var(--slate);
}


/* ==========================================================================
   23. SERVIÇOS
   ========================================================================== */

.service-list {
    margin-top: 40px;

    border-top: 1px solid var(--line);
}

.service-row {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 58px;

    padding:
        36px
        0;

    border-bottom: 1px solid var(--line);
}

.service-row h3 {
    margin-bottom: 0;

    font-size: clamp(
        24px,
        2.2vw,
        29px
    );
}

.service-row p {
    color: var(--slate);
}

.service-title-link {
    color: var(--ink);

    text-decoration: none;

    transition:
        color 0.18s ease;
}

.service-title-link:hover,
.service-title-link:focus-visible {
    color: var(--petrol-mid);
}

.service-audience {
    margin-top: 13px;
    margin-bottom: 15px;

    color: var(--slate);

    font-size: 14px;
    line-height: 1.65;
}

.service-audience strong {
    color: var(--ink);

    font-family: var(--font-sans);
    font-weight: 700;
}


/* ==========================================================================
   24. FORMAÇÃO / CREDENCIAIS
   ========================================================================== */

.credentials {
    display: grid;

    gap: 0;
}

.credential-group {
    display: grid;

    grid-template-columns:
        minmax(230px, 0.65fr)
        minmax(0, 1.35fr);

    gap: 64px;

    padding:
        38px
        0;

    border-bottom: 1px solid var(--line);
}

.credential-group:first-child {
    border-top: 1px solid var(--line);
}

.credential-group h2 {
    margin-bottom: 0;

    font-size: 33px;
}

.credential-group ul {
    columns: 2;

    gap: 38px;

    margin: 0;

    padding-left: 20px;
}

.credential-group li {
    break-inside: avoid;

    margin-bottom: 9px;
}

.credential-status {
    color: var(--slate);

    font-size: 0.9em;
}


/* ==========================================================================
   25. NOTAS
   ========================================================================== */

.note {
    max-width: 850px;

    padding-top: 20px;

    color: var(--slate);

    font-size: 14px;
    line-height: 1.7;
}


/* ==========================================================================
   26. TAGLINE
   ========================================================================== */

.tagline-block {
    max-width: 920px;

    padding:
        52px
        0;
}

.tagline-block p {
    color: var(--slate);

    font-size: 18px;
    line-height: 1.7;
}


/* ==========================================================================
   27. TRUST BAR
   ========================================================================== */

.trust-bar {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-item {
    padding:
        23px
        28px
        23px
        0;
}

.trust-item + .trust-item {
    padding-left: 28px;

    border-left: 1px solid var(--line);
}

.trust-item strong {
    display: block;

    margin-bottom: 4px;

    color: var(--ink);

    font-family: var(--font-sans);
}

.trust-item span {
    color: var(--slate);

    font-size: 14px;
}


/* ==========================================================================
   28. CARDS DE CONTEÚDO
   ========================================================================== */

.content-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    margin-top: 40px;
}

.content-card {
    min-height: 100%;

    display: flex;

    flex-direction: column;

    padding: 28px;

    background: var(--white);

    border: 1px solid var(--line);
    border-radius: var(--radius-large);

    transition:
        border-color 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.content-card:hover {
    border-color: var(--line-medium);

    transform: translateY(-2px);

    box-shadow:
        0 14px 35px
        rgba(23, 40, 46, 0.055);
}

.content-card h3 {
    font-size: 26px;
}

.content-card p {
    color: var(--slate);
}

.content-card .text-link {
    margin-top: auto;

    padding-top: 10px;
}

.content-card-meta {
    display: block;

    margin-bottom: 13px;

    color: var(--bronze);

    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


/* ==========================================================================
   29. ARTIGOS
   ========================================================================== */

.article-hero {
    padding-bottom: 60px;
}

.article-hero h1 {
    max-width: 940px;
}

.article-meta {
    display: flex;

    flex-wrap: wrap;

    gap:
        8px
        20px;

    margin-top: 27px;

    color: var(--slate);

    font-family: var(--font-sans);
    font-size: 13px;
}

.article-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        280px;

    gap: 76px;

    align-items: start;
}

.article-content {
    max-width: 780px;
}

.article-content > :first-child {
    margin-top: 0;
}

.article-content h2 {
    margin-top: 1.9em;

    font-size: clamp(
        31px,
        3.4vw,
        42px
    );
}

.article-content h3 {
    margin-top: 1.65em;

    font-size: 26px;
}

.article-content p,
.article-content li {
    font-size: 17px;
    line-height: 1.78;
}

.article-content ul,
.article-content ol {
    margin:
        1.3em
        0;

    padding-left: 1.35em;
}

.article-content li {
    margin-bottom: 0.65em;
}

.article-content a {
    color: var(--petrol-mid);

    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-content strong {
    color: var(--ink);
}

.article-aside {
    position: sticky;

    top:
        calc(
            var(--header-height)
            + 28px
        );
}


/* ==========================================================================
   30. ÍNDICE DE ARTIGOS
   ========================================================================== */

.toc {
    padding: 23px;

    background: var(--ivory);

    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.toc h2 {
    margin-bottom: 14px;

    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.toc ol {
    display: grid;

    gap: 9px;

    margin: 0;

    padding-left: 18px;
}

.toc a {
    color: var(--slate);

    font-size: 13px;
    line-height: 1.4;

    text-decoration: none;
}

.toc a:hover,
.toc a:focus-visible {
    color: var(--petrol);

    text-decoration: underline;
    text-underline-offset: 3px;
}


/* ==========================================================================
   31. CALLOUT / FONTES / AUTOR
   ========================================================================== */

.callout {
    margin:
        32px
        0;

    padding:
        23px
        25px;

    background: var(--sand);

    border-left: 3px solid var(--bronze);
}

.callout p:last-child {
    margin-bottom: 0;
}

.source-list {
    padding-top: 10px;

    border-top: 1px solid var(--line);
}

.source-list li {
    font-size: 15px;
}

.article-author {
    margin-top: 50px;

    padding-top: 28px;

    border-top: 1px solid var(--line);
}

.article-author p {
    color: var(--slate);

    font-size: 15px;
}


/* ==========================================================================
   32. CONTEÚDOS RELACIONADOS
   ========================================================================== */

.related-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    margin-top: 32px;
}

.related-card {
    padding: 24px;

    background: var(--white);

    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.related-card h3 {
    font-size: 23px;
}

.related-card p {
    color: var(--slate);

    font-size: 14px;
}


/* ==========================================================================
   33. PÁGINAS LEGAIS
   ========================================================================== */

.legal-content {
    max-width: 830px;
}

.legal-content h2 {
    margin-top: 1.7em;

    font-size: 33px;
}

.legal-content h3 {
    margin-top: 1.45em;

    font-size: 24px;
}


/* ==========================================================================
   34. PÁGINA 404
   ========================================================================== */

.not-found {
    min-height: 58vh;

    display: grid;

    align-items: center;
}

.not-found-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 27px;
}


/* ==========================================================================
   35. CONTATO
   ========================================================================== */

.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 0;

    margin-top: 38px;

    border-top: 1px solid var(--line);
}

.contact-panel {
    padding:
        34px
        38px
        34px
        0;

    border-bottom: 1px solid var(--line);
}

.contact-panel:nth-child(even) {
    padding-left: 38px;

    border-left: 1px solid var(--line);
}

.contact-panel h3 {
    font-size: 26px;
}

.contact-panel a {
    color: var(--petrol);

    font-weight: 600;

    text-underline-offset: 3px;
}


/* ==========================================================================
   36. FORMULÁRIO DE TRIAGEM
   ========================================================================== */

.triage-form {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr;

    gap: 8px;

    padding: 32px;

    background: var(--white);

    border: 1px solid var(--line);
    border-radius: var(--radius-large);

    box-shadow:
        0 14px 40px
        rgba(23, 40, 46, 0.05);
}

.form-field {
    min-width: 0;

    display: grid;

    gap: 8px;

    margin-bottom: 11px;
}

.form-field-full {
    grid-column:
        1 / -1;
}

.form-field label,
.triage-form > label {
    display: block;

    margin:
        7px
        0
        0;

    color: var(--ink);

    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;

    line-height: 1.4;
}

.form-field input,
.form-field select,
.form-field textarea,
.triage-form > input:not([type="hidden"]),
.triage-form > select,
.triage-form > textarea {
    width: 100%;
    min-width: 0;

    padding:
        13px
        14px;

    border: 1px solid var(--line-strong);
    border-radius: var(--radius);

    color: var(--ink);
    background: var(--white);

    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;

    line-height: 1.45;

    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.form-field input,
.triage-form > input:not([type="hidden"]),
.form-field select,
.triage-form > select {
    min-height: 48px;
}

.form-field textarea,
.triage-form > textarea {
    min-height: 160px;

    resize: vertical;
}

.triage-form > input:not([type="hidden"]),
.triage-form > select,
.triage-form > textarea {
    margin-bottom: 10px;
}

.form-field input::placeholder,
.form-field textarea::placeholder,
.triage-form > input::placeholder,
.triage-form > textarea::placeholder {
    color: #747f84;

    opacity: 1;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover,
.triage-form > input:not([type="hidden"]):hover,
.triage-form > select:hover,
.triage-form > textarea:hover {
    border-color: var(--petrol-mid);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.triage-form > input:not([type="hidden"]):focus,
.triage-form > select:focus,
.triage-form > textarea:focus {
    outline: none;

    border-color: var(--petrol-mid);

    box-shadow:
        0 0 0 3px
        rgba(36, 92, 87, 0.12);
}

.form-note {
    margin:
        8px
        0
        14px;

    color: var(--slate);

    font-size: 12px;
    line-height: 1.65;
}

.triage-form > .form-note {
    grid-column:
        1 / -1;
}

.triage-form .button {
    width: fit-content;

    min-width: 220px;
    min-height: 50px;

    justify-self: start;

    margin-top: 4px;
}

.form-help {
    margin:
        -2px
        0
        10px;

    color: var(--slate);

    font-size: 12px;
    line-height: 1.55;
}

.form-error {
    color: #8a2d2d;

    font-size: 12px;
    font-weight: 700;
}


/* ==========================================================================
   37. PROCESSO / MÉTODO
   ========================================================================== */

/*
 * Método editorial:
 *
 * 01    Entrada e triagem
 *       descrição...
 *
 * Sem caixas.
 * Sem cartões.
 * Numeração discreta em Montserrat.
 */

.process-grid,
.process-grid-eight {
    display: grid;

    grid-template-columns: 1fr;

    gap: 0;

    margin-top: 42px;

    border-top: 1px solid var(--line);
}

.process-step {
    min-height: auto;

    display: grid;

    grid-template-columns:
        50px
        minmax(0, 1fr);

    column-gap: 22px;
    row-gap: 8px;

    align-items: start;

    padding:
        30px
        0;

    background: transparent;

    border-bottom: 1px solid var(--line);
}

.process-number {
    grid-column: 1;

    grid-row:
        1 / span 2;

    display: block;

    margin-top: 6px;

    color: var(--bronze);

    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.14em;
    line-height: 1;

    font-variant-numeric:
        lining-nums
        tabular-nums;
}

.process-step h3 {
    grid-column: 2;

    margin: 0;

    color: var(--ink);

    font-size: clamp(
        25px,
        2.2vw,
        30px
    );

    line-height: 1.15;
}

.process-step p {
    grid-column: 2;

    max-width: 850px;

    margin: 0;

    color: var(--slate);

    font-size: 16px;
    line-height: 1.7;
}


/* ==========================================================================
   38. CTA
   ========================================================================== */

.cta-section {
    padding:
        72px
        0;

    color: rgba(255, 255, 255, 0.82);

    background: var(--petrol);
}

.cta-section h2 {
    color: var(--white);
}

.cta-section .eyebrow {
    color: #d8b67d;
}

.cta-inner {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 56px;
}

.cta-copy {
    max-width: 800px;
}

.cta-copy p {
    max-width: 700px;

    margin-bottom: 0;
}

.cta-actions {
    min-width: 210px;

    display: grid;

    gap: 14px;

    justify-items: start;
}

.cta-section .button {
    color: var(--ink);

    background: var(--ivory);
    border-color: var(--ivory);
}

.cta-section .button:visited {
    color: var(--ink);
}

.cta-section .button:hover,
.cta-section .button:focus-visible {
    color: var(--white);

    background: transparent;
    border-color: var(--ivory);
}

.cta-section .text-link {
    color: var(--white);
}


/* ==========================================================================
   39. FOOTER
   ========================================================================== */

.site-footer {
    padding:
        66px
        0
        28px;

    color: rgba(255, 255, 255, 0.7);

    background: var(--ink);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.35fr
        1fr
        1fr
        1.15fr;

    gap: 50px;
}

.brand-footer .brand-name {
    color: var(--white);
}

.brand-footer .brand-tagline {
    color: #d0ad75;
}

.footer-intro p {
    max-width: 360px;

    margin-top: 20px;
}

.footer-title {
    margin:
        0
        0
        16px;

    color: var(--white);

    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.footer-links {
    display: grid;

    gap: 9px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-links a {
    font-size: 14px;

    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--white);

    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-address {
    font-style: normal;
}

.footer-legal {
    color: rgba(255, 255, 255, 0.52);

    font-size: 12px;
    line-height: 1.65;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 22px;

    margin-top: 52px;

    padding-top: 22px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.12);

    font-size: 12px;
}

.footer-bottom a {
    text-decoration: none;
}


/* ==========================================================================
   40. RESPONSIVO — 1060px
   ========================================================================== */

@media (max-width: 1060px) {

    .main-nav {
        gap: 13px;
    }

    .main-nav > a,
    .nav-group > a {
        font-size: 13px;
    }

    .hero-inner {
        gap: 44px;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .content-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }
}


/* ==========================================================================
   41. RESPONSIVO — 900px
   ========================================================================== */

@media (max-width: 900px) {

    :root {
        --header-height: 72px;
    }


    /* Navegação */

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;

        top: calc(100% + 1px);
        left: 18px;
        right: 18px;

        display: none;

        align-items: stretch;

        flex-direction: column;

        gap: 0;

        padding: 18px;

        background: var(--ivory);

        border: 1px solid var(--line);
        border-radius: var(--radius);

        box-shadow:
            0 18px 48px
            rgba(23, 40, 46, 0.12);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav > a,
    .nav-group > a {
        min-height: 46px;

        padding:
            10px
            0;

        font-size: 14px;
    }

    .nav-group {
        display: grid;

        grid-template-columns:
            1fr
            auto;

        gap: 0;
    }

    .nav-submenu-toggle {
        width: 44px;
        height: 46px;
    }

    .nav-submenu {
        position: static;

        grid-column:
            1 / -1;

        width: auto;

        margin:
            0
            0
            8px;

        padding: 8px;

        border: 0;

        background: var(--white);

        box-shadow: none;
    }

    .main-nav .button {
        width: 100%;

        margin-top: 10px;
    }


    /* Grids */

    .hero-inner,
    .intro-grid,
    .split,
    .editorial-item,
    .service-row,
    .credential-group {
        grid-template-columns: 1fr;

        gap: 28px;
    }


    /* Hero */

    .hero {
        padding:
            82px
            0
            70px;
    }

    .hero-side {
        padding:
            24px
            0
            0;

        border-top: 1px solid var(--line);
        border-left: 0;
    }


    /* Indicadores */

    .statements {
        grid-template-columns: 1fr;
    }

    .statement,
    .statement + .statement {
        padding:
            23px
            0;

        border-left: 0;
        border-bottom: 1px solid var(--line);
    }

    .statement:last-child {
        border-bottom: 0;
    }


    /* Credenciais */

    .credential-group ul {
        columns: 1;
    }


    /* Trust */

    .trust-bar {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item + .trust-item {
        padding:
            20px
            0;

        border-left: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }


    /* Artigos */

    .article-layout {
        grid-template-columns: 1fr;

        gap: 44px;
    }

    .article-aside {
        position: static;

        order: -1;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }


    /* Contato */

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-panel,
    .contact-panel:nth-child(even) {
        padding:
            27px
            0;

        border-left: 0;
    }


    /* CTA */

    .cta-inner {
        align-items: flex-start;

        flex-direction: column;
    }


    /* Método */

    .process-step {
        grid-template-columns:
            46px
            minmax(0, 1fr);

        column-gap: 18px;
    }
}


/* ==========================================================================
   42. RESPONSIVO — 600px
   ========================================================================== */

@media (max-width: 600px) {

    .container {
        width:
            min(
                calc(100% - 30px),
                var(--container)
            );
    }


    /* Marca */

    .brand-name {
        font-size: 24px;
    }

    .brand-tagline {
        display: none;
    }


    /* Espaçamento */

    .section {
        padding:
            62px
            0;
    }

    .page-hero {
        padding:
            60px
            0
            52px;
    }


    /* Tipografia */

    h1 {
        font-size: clamp(
            37px,
            10.5vw,
            50px
        );

        line-height: 1.055;
    }

    .page-hero h1 {
        font-size: clamp(
            36px,
            9.8vw,
            47px
        );
    }

    h2 {
        font-size: clamp(
            31px,
            8.4vw,
            38px
        );
    }

    h3 {
        overflow-wrap: anywhere;
    }

    .lead {
        font-size: 18px;
        line-height: 1.62;
    }


    /* Conteúdo */

    .content-grid {
        grid-template-columns: 1fr;
    }


    /* Método */

    .process-grid,
    .process-grid-eight {
        margin-top: 34px;
    }

    .process-step {
        grid-template-columns:
            36px
            minmax(0, 1fr);

        column-gap: 13px;

        padding:
            25px
            0;
    }

    .process-number {
        margin-top: 5px;

        font-size: 10px;
    }

    .process-step h3 {
        font-size: 25px;
    }

    .process-step p {
        font-size: 15px;
        line-height: 1.68;
    }


    /* Formulário */

    .triage-form {
        padding: 21px;
    }

    .triage-form .button {
        width: 100%;

        min-width: 0;
    }


    /* Cards */

    .content-card {
        padding: 23px;
    }


    /* Artigos */

    .article-content p,
    .article-content li {
        font-size: 16px;
    }

    .article-meta {
        display: grid;
    }


    /* Ações */

    .hero-actions {
        align-items: stretch;

        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}


/* ==========================================================================
   43. IMPRESSÃO
   ========================================================================== */

@media print {

    .site-header,
    .site-footer,
    .cta-section {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .section,
    .hero,
    .page-hero {
        padding:
            32px
            0;

        background: #fff;
    }
}


/* ==========================================================================
   44. REDUÇÃO DE MOVIMENTO
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration:
            0.01ms !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;
    }


}