:root {
    --forest-dark: #16332d;
    --forest-main: #2f6f63;
    --forest-soft: #b9decf;
    --text-main: #1f332f;
    --text-muted: #526b64;
    --brand-strong: #16332d;
    --font-base: 'Inter', Arial, sans-serif;
    --font-heading: 'Inter', Arial, sans-serif;
    --page-background: #ffffff;
    --page-gutter: clamp(16px, 4vw, 96px);
    --page-content-max: 1440px;
    --radius-button: 8px;
    --radius-pill: 999px;
    --brand-logo-height: 66px;
    --brand-logo-max-width: 132px;
    --color-onyx: #01110A;

    --site-section-gap-sm: clamp(40px, 8vw, 64px);
    --site-section-gap-md: clamp(56px, 9vw, 92px);
    --site-section-gap-lg: clamp(72px, 10vw, 124px);
    --site-header-content-gap: clamp(18px, 4vw, 32px);
    --site-card-gap: clamp(16px, 3vw, 24px);
    --site-carousel-bottom-gap: clamp(22px, 5vw, 36px);

    --ui-ghost-white: #f4f4f9;

    --ui-green: #04724d;
    --progress: 1;
    --color-progress: 1;
    --text-progress: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-base), sans-serif;
    font-optical-sizing: auto;
    font-variation-settings: "wght" 450;
    background: #ffffff;
    color: var(--color-onyx);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading), sans-serif;
    font-optical-sizing: auto;
}

.container,
.services-section > .container,
.site-footer > .container {
    width: min(100% - 32px, 1180px);
    max-width: none;
    margin-inline: auto;
    padding-inline: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--forest-dark);
    color: #ffffff;
    border-radius: var(--radius-button);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.skip-link:focus-visible {
    transform: translateY(0);
    outline: 2px solid rgba(46, 139, 87, 0.45);
    outline-offset: 3px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html body .services-wrapper,
html body .services-wrapper > section,
html body .services-section,
html body footer#contato.site-footer,
html body .site-footer {
    outline: 0;
    box-shadow: none;
}

html body .services-wrapper::before,
html body .services-wrapper::after,
html body .services-wrapper > section::before,
html body .services-wrapper > section::after,
html body .services-section::before,
html body .services-section::after,
html body .popular-services::before,
html body .popular-services::after,
html body .benefits-section::before,
html body .benefits-section::after,
html body .testimonials-section::before,
html body .testimonials-section::after,
html body footer#contato.site-footer::before,
html body footer#contato.site-footer::after {
    content: none;
    display: none;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    width: 100%;
    padding: 4px 0;
    margin-bottom: 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    border-top: 0;
    box-shadow: none;

    outline: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: translateY(0);
    transition: transform 256ms ease, box-shadow 256ms ease, background-color 256ms ease;
}

.site-header.is-hidden {
    transform: translateY(calc(-100% - 12px));
    box-shadow: none;
}

.site-header.is-hidden:focus-within {
    transform: translateY(0);
}

.header-shell {
    height: 64px;
    min-height: 64px;
    max-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    box-shadow: none;
    outline: 0;
}

.logo-slot {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    min-height: 58px;
    background: transparent;
    border: 0;
    box-shadow: none;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: auto;
    height: var(--brand-logo-height);
    max-width: var(--brand-logo-max-width);
    max-height: var(--brand-logo-height);
    object-fit: contain;
    object-position: left center;
    transform: none;
    color: transparent;
}

.brand-name, .brand-text, .site-brand-name, .header-brand-name {
    display: none;
}

.mobile-menu-trigger {
    display: none;
    border: 0;
    outline: 0;
    box-shadow: none;
    background: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 3vw, 44px);
    border: 0;
    box-shadow: none;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: max-content;
    color: #1f332f;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 0;
    box-shadow: none;
}

.nav-link:hover {
    color: #04724d;
    background-color: transparent;
}

.nav-link:focus-visible, .logo-slot:focus-visible, .mobile-menu-trigger:focus-visible {
    outline: none;
    box-shadow: none;
}

.services-hero-title {
    font-weight: 760;
    font-variation-settings: "wght" 760;
    letter-spacing: -0.034em;
    line-height: 1.04;
    max-width: 980px;
    margin: clamp(28px, 3.4vw, 52px) auto clamp(48px, 5.4vw, 78px);
    padding: 0;
    font-family: var(--font-heading), sans-serif;
    font-size: clamp(2.75rem, 4.6vw, 4.8rem);
    text-align: left;
    text-transform: none;
    color: var(--color-onyx);
    border-top: 0;
    border-bottom: 0;
    box-shadow: none;
    outline: 0;
}

.benefits-kicker {
    color: #04724d;
    -webkit-text-fill-color: #04724d;
}

.testimonials-kicker {
    color: #04724d;
    -webkit-text-fill-color: #04724d;
}

.services-hero-description, .benefits-description, .testimonials-description,
.popular-service-benefit, .benefit-text, .testimonial-text {
    color: #586f7c;
    margin: 0;
}

.services-hero-description {
    max-width: 820px;
    font-size: clamp(0.94rem, 1.02vw, 1.04rem);
    font-weight: 500;
    line-height: 1.66;
    letter-spacing: -0.014em;
    text-align: center;
    background: transparent;
    padding: 0;
}

.benefits-description, .testimonials-description {
    font-size: clamp(0.92rem, 1vw, 1.04rem);
    font-weight: 450;
    line-height: 1.62;
    max-width: 640px;
    margin-top: 14px;
}

.services-wrapper {
    position: relative;
    isolation: isolate;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.services-wrapper > section {
    position: relative;
    z-index: 1;
}

.services-hero {
    width: 100vw;
    max-width: 100vw;
    margin-top: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
}

.services-hero > .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.services-hero-shell {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, var(--page-content-max));
    align-items: start;
    align-content: start;
    justify-content: center;
    gap: clamp(12px, 3vw, 24px);
    margin-top: 0;
    padding: clamp(82px, 8vw, 120px) var(--page-gutter) 0;
    background-color: #ffffff;
}

.services-hero-shell > * {
    position: relative;
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 1;
    isolation: isolate;
    align-self: start;
    width: 100%;
    min-height: clamp(420px, 72vh, 620px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 40px);
    padding: clamp(24px, 5vw, 56px);
    background: transparent;
    border: transparent;
    border-radius: clamp(20px, 3vw, 34px);
    box-shadow: none;
    overflow: hidden;
}

.services-hero-intro {
    flex: 1;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    width: min(100%, 1120px);
    margin: 0 auto;
    border-top: 0;
    border-bottom: 0;
    box-shadow: none;
    outline: 0;
}

.services-title-row {
    display: grid;
    grid-template-columns: max-content 14.8ch;
    align-items: baseline;
    justify-content: start;
    column-gap: 0.34em;
}

.services-title-static {
    justify-self: start;
}

.services-title-dynamic {
    display: inline-flex;
    align-items: baseline;
    justify-self: start;
    min-width: 14.8ch;
    text-align: left;
    white-space: nowrap;
}

.services-title-typewriter {
    display: inline;
    color: #04724d;
    -webkit-text-fill-color: #04724d;
    font-style: normal;
    font-weight: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    white-space: nowrap;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.services-title-rest {
    display: block;
    text-align: left;
}

.services-title-final-dot {
    color: #04724d;
    -webkit-text-fill-color: #04724d;
}

.services-hero-description-line {
    display: inline;
}

.services-hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;

    width: 100%;
    max-width: 1080px;

    margin: 64px auto 40px;
    padding: 0;

    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.services-hero-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 16px 24px;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(88, 111, 124, 0.15);

    border-radius: 999px;

    box-shadow: none;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.services-hero-proof-item:hover {
    transform: translateY(-4px);
    border-color: var(--ui-green, #04724d);
    box-shadow: 0 0 0 1px var(--ui-green, #04724d);
}

.services-proof-counter-box {
    margin-bottom: 12px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-proof-counter-core {
    font-family: var(--font-heading, 'Inter'), sans-serif;
    font-size: 3.4rem;
    font-weight: 850;
    font-variation-settings: "wght" 850;
    color: var(--ui-green, #04724d);
    -webkit-text-fill-color: var(--ui-green, #04724d);
    line-height: 1;
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.services-proof-counter-prefix {
    font-size: 2.6rem;
    margin-right: 4px;
    font-weight: 850;
    font-variation-settings: "wght" 850;
    color: var(--ui-green, #04724d);
    -webkit-text-fill-color: var(--ui-green, #04724d);
}

.services-proof-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: auto;
    max-width: 100%;
}

.services-proof-copy strong {
    font-size: 0.82rem;
    font-weight: 800;
    font-variation-settings: "wght" 800;
    color: var(--text-main, #111827);
    -webkit-text-fill-color: var(--text-main, #111827);
    line-height: 1.15;

    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-proof-copy span {
    display: none;
}

.services-proof-svg,
.services-proof-symbol,
.services-proof-spin-text {
    display: none;
}

@media (min-width: 720px) {
    .services-proof-cost,
    .services-proof-quality {
        align-self: center;
        margin: 0 12px;
        padding: 12px 18px;
    }
}

@media (max-width: 719px) {
    .services-hero-proof {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
        padding-block: 0;
    }

    .services-proof-projects {
        order: 1;
        grid-column: auto;
        z-index: 3;
        opacity: var(--progress, 1);
        transform: translateY(calc(20px * (1 - var(--progress, 1))));
    }

    .services-proof-cost {
        order: 2;
        z-index: 2;

        opacity: var(--color-progress, 1);
        transform: translateY(calc(-40px * (1 - var(--color-progress, 1))));
    }

    .services-proof-quality {
        order: 3;
        z-index: 1;

        opacity: var(--text-progress, 1);
        transform: translateY(calc(-40px * (1 - var(--text-progress, 1))));
    }

    .services-hero-proof-item {
        width: 100%;
        max-width: 280px;
        padding: 16px 12px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 6px;

        border-radius: 999px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid var(--ui-green, #04724d);
        box-shadow: 0 0 0 1px var(--ui-green, #04724d);

        will-change: opacity, transform;
        transition: none;
    }
}

.services-section {
    padding: var(--site-section-gap-lg) 0 var(--site-section-gap-md);
}

.popular-services {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    padding-top: clamp(40px, 7vw, 76px);
    padding-bottom: var(--site-section-gap-lg);
}

.popular-services::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    background-color: rgba(184, 134, 11, 0.035);
    border-top: 1px solid rgba(184, 134, 11, 0.15);
    z-index: -1;
}

.popular-services-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--site-card-gap);
    padding-bottom: 16px;
}

.popular-services-featured {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    cursor: grab;

    padding-bottom: 24px;
    padding-inline: 16px;
    scroll-padding-inline: 16px;
}

.popular-services-featured {
    cursor: grab;
}

.popular-services-featured.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
    user-select: none;
}

.popular-services-featured.is-dragging * {
    pointer-events: none;
}

.popular-service-card {

    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex: 0 0 calc(100% - 32px);
}

.popular-services-featured::-webkit-scrollbar {
    display: none;
}

.popular-services-featured.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
}

.popular-service-card {
    --popular-card-accent: #f4d35e;
    --popular-card-surface: #fff9df;
    --popular-card-accent-strong: #5c4a0f;
    --popular-card-accent-hover: #efd25d;
    --popular-card-text: #111827;
    --popular-card-text-soft: #5f6b7a;
    --popular-card-illustration-size: 144px;
    --popular-card-illustration-opacity: 0.80;
    flex: 0 0 calc((100% - (16px * 3)) / 4);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-width: 0;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 224ms ease;
    background: #ffffff;
    border: 1px solid rgba(96, 80, 16, 0.16);
    box-shadow: none;
    min-height: 100%;
}

.popular-service-card:hover, .popular-service-card:focus-within {
    border-color: rgba(244, 211, 94, 0.48);
    background: #ffffff;
}

.popular-service-meta {
    position: relative;
    width: 100%;
    height: 148px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 14px;
    background: var(--popular-card-surface);
    color: var(--popular-card-accent-strong);
    overflow: hidden;
}

.popular-service-meta::before {
    background: transparent;
}

.popular-service-meta::after {
    content: "";
    position: absolute;
    left: var(--popular-card-illustration-left, 16px);
    bottom: var(--popular-card-illustration-bottom, -16px);
    z-index: 1;
    width: var(--popular-card-illustration-size, 160px);
    height: var(--popular-card-illustration-size, 160px);
    background-image: var(--popular-card-illustration);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    opacity: var(--popular-card-illustration-opacity, 0.80);
    pointer-events: none;
}

.popular-service-card--recursos {
    --popular-card-illustration: url("../assets/icons/recursos-educacionais-componente-curricular-e-books-docentes-sala-aula.svg");
    --popular-card-illustration-bottom: -1px;
    --popular-card-illustration-left: 16px;
}

.popular-service-card--mentoria {
    --popular-card-illustration: url("../assets/icons/mentoria-consultoria-desafios-docentes-metodologia.svg");
    --popular-card-illustration-bottom: -24px;
    --popular-card-illustration-left: 16px;
}

.popular-service-card--sistemas {
    --popular-card-illustration: url("../assets/icons/sistemas-web-arquitetura-landing-page-inteligentes.svg");
    --popular-card-illustration-bottom: 16px;
    --popular-card-illustration-left: 16px;
}

.popular-service-card--suporte {
    --popular-card-illustration: url("../assets/icons/suporte-ti-profissional-hardwares-educacionais.svg");
    --popular-card-illustration-bottom: 24px;
    --popular-card-illustration-left: 16px;
}

.popular-service-card--normalizacao {
    --popular-card-illustration: url("../assets/icons/abnt-nbr-14724-gramatical-qualidade-projetos.svg");
    --popular-card-illustration-bottom: 24px;
    --popular-card-illustration-left: 16px;
}

.popular-service-badge {
    position: relative;
    z-index: 1;
    min-height: 28px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(244, 211, 94, 0.28);
    color: var(--popular-card-accent-strong);
    font-size: 0.66rem;
    font-weight: 760;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.popular-service-title {
    margin: 1.12rem 1.12rem 0;
    color: var(--popular-card-text);
    font-size: 1.12rem;
    font-weight: 480;
    font-variation-settings: "wght" 480;
    line-height: 1.44;
    letter-spacing: 0.02em;
}

.popular-service-benefit {
    margin: 0.48rem 1.12rem 0.96rem;
    min-height: 80px;
    color: var(--popular-card-text-soft);
    font-size: 0.88rem;
    font-weight: 480;
    line-height: 1.44;
}

.popular-service-button {
    width: max-content;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: auto;
    margin-bottom: 1.1rem;
    margin-left: 1.1rem;
    padding: 8px 12px;
    border-radius: 6px;
    background-color: var(--popular-card-accent);
    color: var(--popular-card-accent-strong);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25rem;
    text-decoration: none;
    transition: background-color 176ms ease;
    box-shadow: none;

    position: relative;
    z-index: 10;
}

.popular-service-button:hover, .popular-service-button:focus-visible {
    background-color: var(--popular-card-accent-hover);
    color: var(--popular-card-accent-strong);
}

.popular-service-button:focus-visible {
    outline: 2px solid rgba(48, 144, 96, 0.48);
    outline-offset: 4px;
}

.benefits-section {
    position: relative;
    z-index: 1;
    padding-top: var(--site-section-gap-md);
    padding-bottom: var(--site-section-gap-lg);
    background-color: transparent;
    overflow: hidden;
}

.benefits-section > .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.benefits-section .benefits-grid-flat {
    position: relative;
    display: grid;
    z-index: 1;
    gap: 32px;
    margin-top: 32px;
    margin-inline: 0;
    padding-inline: 16px;
    width: 100%;
    grid-template-columns: 1fr;
}

.benefits-section .benefits-grid-flat::before {
    display: none;
}

.benefits-section .benefit-item-flat {
    margin-inline: 0;
    display: flex;
    flex-direction: column;
    padding: 24px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: none;
    transition: border-color 224ms ease;
}

.benefits-section .benefit-item-flat:hover,
.benefits-section .benefit-item-flat:focus-within {
    transform: none;
    box-shadow: none;
    border-color: rgba(0, 119, 182, 0.32);
}

.benefit-header-flat {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    border-left: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.benefit-header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.benefit-icon svg {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.benefit-number-flat {
    display: none;
}

.benefit-title-flat {
    font-size: 1.12rem;
    font-weight: 480;
    font-variation-settings: "wght" 480;
    color: var(--popular-card-text);
    line-height: 1.44;
    letter-spacing: 0.02em;
    margin: 0;
}

.benefit-text-flat {
    font-size: 0.88rem;
    font-weight: 480;
    line-height: 1.44;
    color: #5f6b7a;
    margin: 0;
    padding-left: 72px;
}

.benefit-item-flat:nth-child(1) .benefit-number-flat,
.benefit-item-flat:nth-child(1) .benefit-icon {
    color: #005f8f;
}

.benefit-item-flat:nth-child(1) .benefit-icon {
    background-color: rgba(0, 95, 143, 0.08);
}

.benefit-item-flat:nth-child(2) .benefit-number-flat,
.benefit-item-flat:nth-child(2) .benefit-icon {
    color: #0077b6;
}

.benefit-item-flat:nth-child(2) .benefit-icon {
    background-color: rgba(0, 119, 182, 0.08);
}

.benefit-item-flat:nth-child(3) .benefit-number-flat,
.benefit-item-flat:nth-child(3) .benefit-icon {
    color: #023e8a;
}

.benefit-item-flat:nth-child(3) .benefit-icon {
    background-color: rgba(2, 62, 138, 0.08);
}

.benefit-item-flat .benefit-number-flat {
    background: none;
    -webkit-text-fill-color: currentcolor;
    -webkit-background-clip: initial;
}

@media (min-width: 960px) {
    .benefits-section .benefits-grid-flat {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(24px, 4vw, 48px);
        padding-top: 0;
    }

    .benefit-header-flat {
        height: auto;
        margin-bottom: 20px;
    }

    .benefit-text-flat {
        padding-right: 16px;
    }
}

.benefits-section + .testimonials-section {
    margin-top: 0;
}

.testimonials-section {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-top: var(--site-section-gap-md);
    padding-bottom: var(--site-section-gap-lg);
    background: transparent;
    border-radius: 0;
    overflow: visible;
    --testimonials-accent: #a30000;
    --testimonials-accent-strong: #680000;
    --testimonials-text: #4f1f1f;
    --testimonials-text-soft: #5d666b;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    background-color: rgba(208, 0, 0, 0.025);
    border-top: 1px solid rgba(208, 0, 0, 0.12);
    border-bottom: 1px solid rgba(208, 0, 0, 0.12);
    z-index: -1;
}

.testimonials-header {
    max-width: 680px;
    margin-bottom: var(--site-header-content-gap);
}

.testimonials-section .testimonials-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    margin: 0;
    padding: 0 16px var(--site-carousel-bottom-gap);
    scroll-padding-inline: 16px;
    background: transparent;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.testimonials-section .testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonials-section .testimonials-grid.is-programmatic-scroll {
    scroll-behavior: auto !important;
    scroll-snap-type: none !important;
}

.testimonials-section .testimonial-card {
    --testimonial-accent-rgb: 163, 0, 0;
    --testimonial-accent: #a30000;
    --testimonial-accent-strong: #680000;
    --testimonial-surface: #fff0f0;
    --testimonial-border: rgba(var(--testimonial-accent-rgb), 0.18);
    --testimonial-soft-glow: rgba(var(--testimonial-accent-rgb), 0.16);
    position: relative;
    flex: 0 0 calc((100% - (16px * 3)) / 4);
    min-width: 0;
    min-height: 320px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: #ffffff;
    border: 1px solid var(--testimonial-border);
    border-radius: 16px;
    box-shadow: none;
    overflow: hidden;
}

.testimonials-section .testimonial-card:hover,
.testimonials-section .testimonial-card:focus-within {
    border-color: rgba(var(--testimonial-accent-rgb), 0.32);
    background: #ffffff;
}

.testimonials-section .testimonial-card-header {
    position: relative;
    width: 100%;
    height: 88px;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    padding: 14px 16px;
    background: var(--testimonial-surface);
    color: var(--testimonial-accent-strong);
    overflow: hidden;
}

.testimonials-section .testimonial-card-header::before {
    content: none;
    display: none;
}

.testimonials-section .testimonial-avatar {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
}

.testimonials-section .testimonial-avatar img {
    display: block;
    width: 58px;
    height: 58px;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    transform: scale(1.28);
    transform-origin: center;
}

.testimonials-section .testimonial-person {
    position: relative;
    z-index: 1;
    min-width: 0;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    text-align: right;
}

.testimonials-section .testimonial-name {
    margin: 0;
    max-width: 160px;
    color: var(--popular-card-text);
    font-size: 0.88rem;
    font-weight: 320;
    line-height: 1.12;
    letter-spacing: 0.02em;
}

.testimonials-section .testimonial-person span {
    min-height: 22px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--testimonial-border);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.88);
    color: var(--testimonial-accent-strong);
    font-size: 0.58rem;
    font-weight: 760;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.testimonials-section .testimonial-text {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding: 1.44rem;
    color: #5f6b7a;
    font-size: 0.88rem;
    font-weight: 480;
    line-height: 1.44;
}

.testimonials-section .testimonial-quote {
    position: absolute;
    right: 14px;
    bottom: 8px;
    color: rgba(var(--testimonial-accent-rgb), 0.28);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.site-footer {
    width: 100%;
    padding: 48px 0 24px;
    margin-top: 0;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.5;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: none;
    outline: 0;
}

.site-footer .container {
    max-width: 1180px;
    margin: 0 auto;
    padding-inline: 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 6fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;

}

.footer-brand img,
.footer-brand .footer-logo,
.footer-logo {
    display: none !important;
}

.footer-brand-desc {
    max-width: 480px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.footer-brand h3,
.footer-nav-col h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0;
    margin-bottom: 16px;
    color: #334155;
}

.footer-nav-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.footer-nav-col a {
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    color: #64748b;
    font-weight: 450;
}

.footer-nav-col a:hover {
    color: #04724d;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
    gap: 16px;
    color: #64748b;
}

.footer-legal-links {
    display: flex;
    gap: 16px;
}

.footer-legal-links a {
    color: #64748b;
    font-weight: 450;
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: #04724d;
    text-decoration: none;
}

.footer-copyright {
    margin: 0;
}

@media (max-width: 960px) {
    .site-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .site-footer .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .site-footer .footer-brand-desc {
        max-width: 600px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 40px 0 24px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .testimonials-section .testimonials-grid {
        scroll-behavior: auto;
    }
}

@media (min-width: 1024px) {
    .testimonials-section .testimonials-grid {
        gap: 16px;
    }

    .testimonials-section .testimonial-card, .testimonials-section .testimonial-card:last-child {

        flex: 0 0 calc((100% - (16px * 2)) / 3);
        width: auto;
        min-width: 0;
    }
}

@media (min-width: 960px) {
    .logo-slot {
        height: 36px;
        min-height: 36px;
        overflow: visible;
    }

    .services-hero-title {
        text-align: center;
    }
}

@media (min-width: 720px) {
    .testimonials-section .testimonials-grid {
        gap: 16px;
    }

    .testimonials-section .testimonial-card, .testimonials-section .testimonial-card:last-child {
        flex: 0 0 calc((100% - (16px * 3)) / 4);
        width: auto;
        min-width: auto;
    }

    .testimonials-section .testimonial-text {
        font-size: 0.8rem;
    }

    html body .site-header .main-nav {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }
}

@media (min-width: 720px) and (max-width: 1023px) {
    .testimonials-section .testimonial-card, .testimonials-section .testimonial-card:last-child {

        flex: 0 0 calc((100% - 16px) / 2);
    }
}

@media (max-width: 959px) {
    html {
        scroll-padding-top: 118px;
    }

    .site-header {
        padding: 0;
        background: rgba(248, 250, 252, 0.96);
    }

    .site-header > .container {
        width: 100%;
    }

    .header-shell {
        height: auto;
        min-height: 0;
        max-height: none;
        grid-template-columns: 1fr;
        align-items: center;
        gap: 8px;
        padding: 8px 16px 10px;
    }

    .logo-slot {
        justify-content: center;
        width: 100%;
        min-height: 42px;
    }

    .brand-logo {
        height: 46px;
        max-height: 46px;
    }

    .main-nav {
        width: min(100%, 420px);
        margin-inline: auto;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: center;
        gap: 6px;
    }

    .nav-link {
        width: 100%;
        min-height: 38px;
        justify-content: center;
        gap: 5px;
        padding: 8px 4px;
        font-size: 0.68rem;
        line-height: 1;
        text-align: center;
    }

    .nav-link-icon {
        width: 16px;
        height: 16px;
        flex: 0 0 16px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 42px;
    }

    .footer-brand {
        max-width: 360px;
    }

    .popular-service-card {
        max-width: none;
        --popular-card-illustration-size: 148px;
        --popular-card-illustration-opacity: 0.80;
    }

    .popular-service-meta {
        height: 142px;
    }

    .popular-service-card-featured {
        min-height: auto;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .benefit-card {
        min-height: 220px;
        padding: 24px;
    }

    .benefits-grid .benefit-card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: calc((100% - 24px) / 2);
    }

    .testimonials-grid {
        display: flex;
        gap: 16px;
    }

    .testimonial-card {
        min-height: 320px;
        padding: 0;
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: auto;
        justify-self: auto;
        max-width: none;
    }

    .services-hero-shell {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: minmax(0, 1fr) auto;
        min-height: clamp(500px, 74vw, 640px);
        padding-block: clamp(36px, 7vw, 62px) clamp(22px, 4vw, 34px);
        padding-inline: var(--page-gutter);
    }

    .services-hero-content {
        position: relative;
        top: auto;
    }

    .services-hero-title {
        font-size: clamp(2rem, 10vw, 3.35rem);
        line-height: 1.04;
    }

    .services-hero-description {
        max-width: 100%;
    }

    .services-hero-proof {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
        gap: 8px;
        padding-block: 18px 0;
    }

    .services-hero-proof-item {
        min-height: auto;
        display: grid;
        grid-template-rows: auto auto;
        justify-items: center;
        align-content: start;
        gap: 6px;
        padding: 8px 4px;
    }

    .services-proof-counter-box, .services-proof-symbol {
        width: auto;
        height: auto;
        min-width: 0;
        margin: 0;
        justify-self: center;
        align-self: center;
    }

    .services-proof-counter-box .services-proof-counter-prefix, .services-proof-counter-box .services-proof-counter {
        font-size: 1rem;
        font-weight: 800;
        line-height: 1;
        letter-spacing: -0.04em;
    }

    .services-proof-copy {
        display: grid;
        justify-items: center;
        align-content: start;
        gap: 3px;
        max-width: 100%;
        text-align: center;
    }

    .services-proof-copy strong {
        font-size: 0.64rem;
        font-weight: 700;
        line-height: 1.12;
        text-transform: none;
    }

    .services-proof-copy > span {
        font-size: 0.56rem;
        line-height: 1.18;
    }
}

@media (max-width: 719px) {
    html {
        scroll-padding-top: 112px;
    }

    html body .site-header {
        background: #f8fafc;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 14px 40px rgba(1, 17, 10, 0.04);
        position: sticky;
        top: 0;
        z-index: 900;
    }

    html body .site-header > .container {
        position: relative;
        z-index: 20;
    }

    .header-shell {
        height: 48px;
        min-height: 48px;
        max-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 0 16px;
        background: transparent;
    }

    .logo-slot {
        width: auto;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

    .brand-logo, .footer-logo-img {
        width: auto;
        height: 48px;
        max-width: 96px;
        max-height: 48px;
    }

    .mobile-menu-trigger {
        width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .mobile-menu-icon {
        width: 28px;
        height: 28px;
        display: block;
        flex: 0 0 28px;
    }

    html body .site-header .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 800;

        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: center;
        gap: 6px;
        padding: 6px 16px;

        background-color: #dfebe5;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 0;
        box-shadow: 0 8px 16px rgba(1, 17, 10, 0.05);

        clip-path: inset(0 0 100% 0);
        visibility: hidden;
        pointer-events: none;

        transition: clip-path 0.3s ease-out, visibility 0s linear 0.3s;
    }

    html body .site-header.is-mobile-menu-open .main-nav {

        clip-path: inset(0 0 0 0);
        visibility: visible;
        pointer-events: auto;
        transition: clip-path 0.3s ease-out, visibility 0s linear 0s;
    }

    html body .site-header .main-nav a.nav-link {
        width: 100%;
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 8px 6px;

        background: transparent;
        color: var(--brand-strong, #16332d);
        font-size: 0.88rem;
        font-weight: 760;
        line-height: 1;
        text-align: center;

        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    html body .site-header .main-nav a.nav-link:hover {
        background: transparent;
        color: var(--forest-main, #2f6f63);
    }

    .site-footer {
        margin-top: 0;
        padding-block: 32px 32px;
    }

    .site-footer > .container {
        width: min(100% - 32px, 1180px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: clamp(30px, 8vw, 44px);
    }

    .footer-brand {
        max-width: none;
    }

    .footer-logo {
        margin-bottom: clamp(18px, 5vw, 26px);
    }

    .footer-section h2 {
        margin-bottom: 14px;
        font-size: 0.84rem;
    }

    .footer-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .footer-contact-card {
        min-height: 54px;
        padding: 7px 8px;
        gap: 7px;
    }

    .footer-divider {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding-top: clamp(22px, 6vw, 32px);
    }

    .popular-services {
        margin-bottom: 0;
        padding-top: clamp(32px, 16vw, 64px);
    }

    .popular-services-header {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .popular-services-featured {
        display: flex;
        gap: calc(((100vw - min(80vw, 320px)) / 2) + 16px);
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        width: 100%;
        padding: 0 calc((100vw - min(80vw, 320px)) / 2) 16px;
        scroll-padding-inline: calc((100vw - min(80vw, 320px)) / 2);
    }

    .popular-service-card {

        flex: 0 0 min(80vw, 320px);
        min-height: auto;

        scroll-snap-align: center;
        scroll-snap-stop: always;

        --popular-card-illustration-left: 16px;
        --popular-card-illustration-size: 128px;
        --popular-card-illustration-opacity: 0.80;
    }

    .popular-service-meta {
        height: 132px;
    }

    .testimonials-section {
        margin-top: clamp(56px, 13vw, 78px);
        padding-bottom: clamp(56px, 13vw, 78px);
    }

    .testimonials-header {
        margin-bottom: 22px;
    }

    .testimonials-section .testimonials-grid {
        display: flex;
        gap: calc(((100vw - min(80vw, 320px)) / 2) + 16px);
        width: 100%;
        padding: 0 calc((100vw - min(80vw, 320px)) / 2) 16px;
        scroll-padding-inline: calc((100vw - min(80vw, 320px)) / 2);
    }

    .testimonials-section .testimonial-card,
    .testimonials-section .testimonial-card:last-child {
        flex: 0 0 min(80vw, 320px);
        width: min(80vw, 320px);
        min-width: 0;
        min-height: 320px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .testimonials-section .testimonial-card-header {
        height: 80px;
        min-height: 80px;
        padding: 16px 16px;
        gap: 8px;
    }

    .testimonials-section .testimonial-avatar {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .testimonials-section .testimonial-avatar img {
        width: 48px;
        height: 48px;
        transform: scale(1.36);
    }

    .testimonials-section .testimonial-name {
        max-width: 208px;
        font-size: 0.88rem;
    }

    .testimonials-section .testimonial-person span {
        min-height: 24px;
        font-size: 0.56rem;
    }

    .testimonials-section .testimonial-text {
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 0.88rem;
        line-height: 1.44;
        margin: 0;
        padding: 0.88rem;
    }

    .services-hero-shell {
        padding: clamp(48px, 12vw, 68px) 16px clamp(24px, 7vw, 36px);
        grid-template-rows: auto auto;
        gap: 6px;
    }

    .services-hero-content {
        display: grid;
        gap: clamp(18px, 5vw, 26px);
        min-height: 520px;
        padding: 34px 18px 22px;
        border-radius: 22px;
    }

    .services-hero-title {
        width: 100%;
        max-width: 100%;
        font-size: clamp(1.78rem, 8.2vw, 2.16rem);
        line-height: 1.08;
        margin-bottom: clamp(18px, 6vw, 28px);
    }

    .services-title-row {
        grid-template-columns: 1fr;
    }

    .services-title-dynamic {
        width: 100%;
        height: 1.3em;
        display: block;
        overflow: hidden;
        white-space: nowrap;
        margin-bottom: 2px;
    }

    .services-title-typewriter {
        display: inline-block;
        min-width: 0;
        width: max-content;
        max-width: 100%;
        line-height: 1.2;
    }

    .services-hero-description {
        font-size: 0.92rem;
        line-height: 1.56;
        text-align: left;
    }

    .services-hero-intro {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: clamp(20px, 7vw, 34px);
        gap: 18px;
    }

    .services-hero-proof {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 12px;
        margin-top: 16px;
        padding: 0;
        max-width: 100%;
        position: relative;
    }

    .services-proof-projects {
        order: 1;
        position: relative;
        z-index: 10;
        transform: translate3d(0, 0, 0);
    }

    .services-proof-cost {
        order: 2;
        position: relative;
        z-index: 5;
        opacity: 0;
    }

    .services-proof-quality {
        order: 3;
        position: relative;
        z-index: 1;
        opacity: 0;
    }

    .services-hero-proof.is-ready .services-proof-cost,
    .services-hero-proof.is-ready .services-proof-quality {
        opacity: 1;
    }

    .services-hero-proof .services-hero-proof-item {
        width: 100%;
        max-width: 240px;
        padding: 16px 12px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 6px;
        border-radius: 999px;
        border: 1px solid #dfebe5;
        box-shadow: none;
        background: #ffffff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transition: none;
        will-change: transform;
    }

    .services-proof-counter-box {
        margin-right: 0;
        margin-bottom: 2px;
    }

    .services-proof-copy {
        align-items: center;
        text-align: center;
    }

    .services-proof-copy strong {
        text-align: center;
        font-size: 0.78rem;
        line-height: 1.15;
    }

    .services-proof-projects .services-proof-counter-core,
    .services-proof-projects .services-proof-counter {
        font-size: 2.4rem;
    }

    .services-proof-projects .services-proof-counter-prefix {
        font-size: 2.4rem;
    }
}

@media (max-width: 479px) {
    .main-nav {
        gap: 4px;
    }

    .nav-link {
        gap: 4px;
        padding-inline: 2px;
        font-size: 0.64rem;
    }

    .services-hero-shell {
        gap: 32px;
        padding: 32px 16px 16px;
    }

    .services-hero-title {
        font-size: clamp(1.85rem, 11.5vw, 2.85rem);
        line-height: 1.1;
    }

    .services-hero-proof {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        padding-block: 16px;
    }

    .services-proof-projects {
        grid-column: auto;
        order: 2;
        width: auto;
    }

    .services-proof-quality {
        order: 1;
        width: auto;
    }

    .services-proof-cost {
        order: 3;
        width: auto;
    }
}

.popular-services-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 8px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 99px;
    background-color: rgba(4, 114, 77, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.indicator-dot.is-active {
    width: 24px;
    background-color: #f4d35e;
    box-shadow: 0 2px 8px rgba(244, 211, 94, 0.4);
}

.indicator-dot:hover:not(.is-active) {
    background-color: rgba(4, 114, 77, 0.3);
}

.system-header {
    width: 100%;
    margin-bottom: 24px;
}

.system-header .system-kicker {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1;
}

.system-header .system-kicker::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    opacity: 0.25;
}

.system-header .system-title {
    margin: 0;
    font-size: clamp(2rem, 5vw, 2.6rem);
    font-weight: 300;
    font-variation-settings: "wght" 300;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.system-header .system-title .system-highlight {
    font-weight: 800;
    font-variation-settings: "wght" 800;
    text-decoration: underline;
    text-decoration-thickness: 6px;
    text-underline-offset: 6px;
}

.theme-destaques .system-kicker {
    color: #b8860b;
}

.theme-destaques .system-kicker::after {
    background-color: #b8860b;
}

.theme-destaques .system-title {
    color: #01110A;
}

.theme-destaques .system-title .system-highlight {
    color: #b8860b;
    text-decoration-color: #f4d35e;
}

.theme-azul .system-kicker {
    color: #0077B6;
}

.theme-azul .system-kicker::after {
    background-color: #0077B6;
}

.theme-azul .system-title {
    color: #0A192F;
}

.theme-azul .system-title .system-highlight {
    color: #0077B6;
    text-decoration-color: #0077B6;
}

.theme-inferno .system-kicker {
    color: #D00000;
}

.theme-inferno .system-kicker::after {
    background-color: #D00000;
}

.theme-inferno .system-title {
    color: #2A0800;
}

.theme-inferno .system-title .system-highlight {
    color: #D00000;
    text-decoration-color: #D00000;
}
