:root {
    --landing-green: #08613f;
    --landing-green-dark: #06452f;
    --landing-green-soft: #eaf4ee;
    --landing-ink: #152922;
    --landing-muted: #5f6e68;
    --landing-border: #dce5e0;
    --landing-surface: #ffffff;
    --landing-background: #f8faf9;
    --landing-header-height: 76px;
    --landing-shadow: 0 12px 34px rgba(18, 55, 42, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--landing-header-height) + 18px);
}

body.landing-page {
    min-width: 280px;
    margin: 0;
    padding-top: var(--landing-header-height);
    overflow-x: hidden;
    background: var(--landing-background);
    color: var(--landing-ink);
    font-family: var(--eai-font-family-base);
}

body.landing-menu-open,
body.landing-dialog-open {
    overflow: hidden;
}

.landing-page img,
.landing-page svg {
    max-width: 100%;
}

.landing-page button,
.landing-page a {
    -webkit-tap-highlight-color: transparent;
}

.landing-page a:focus-visible,
.landing-page button:focus-visible,
.landing-page [tabindex="0"]:focus-visible {
    outline: 3px solid rgba(8, 97, 63, 0.38);
    outline-offset: 3px;
}

.landing-symbols {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

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

.landing-skip-link {
    position: fixed;
    top: 10px;
    left: 16px;
    z-index: 1300;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--landing-green-dark);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.landing-skip-link:focus {
    transform: translateY(0);
}

.landing-eyebrow {
    margin: 0 0 8px;
    color: var(--landing-green);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.landing-section-heading {
    margin: 0 auto 28px;
    text-align: center;
}

.landing-section-heading h2 {
    margin: 0;
    color: var(--landing-green-dark);
    font-family: var(--eai-font-family-heading);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

/* Header */

.landing-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1100;
    height: var(--landing-header-height);
    border-bottom: 1px solid rgba(16, 63, 46, 0.1);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 5px 20px rgba(15, 49, 37, 0.06);
    backdrop-filter: blur(12px);
}

.landing-header__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    height: 100%;
    gap: clamp(18px, 3vw, 44px);
}

.landing-brand {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    flex: 0 0 auto;
    align-items: center;
    width: 86px;
    height: 58px;
    overflow: hidden;
    text-decoration: none;
}

.landing-brand img {
    width: 86px;
    height: 58px;
    object-fit: contain;
}

.landing-nav {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    align-items: stretch;
    justify-content: center;
    gap: clamp(12px, 2.5vw, 34px);
    min-width: 0;
}

.landing-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 2px;
    color: #23352f;
    font-size: 0.94rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 160ms ease;
}

.landing-nav a::after {
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--landing-green);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.landing-nav a:hover,
.landing-nav a.is-active {
    color: var(--landing-green);
}

.landing-nav a.is-active::after,
.landing-nav a:hover::after {
    transform: scaleX(1);
}

.landing-instagram {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #28413a;
    transition: color 160ms ease, background-color 160ms ease;
}

.landing-instagram:hover {
    background: var(--landing-green-soft);
    color: var(--landing-green);
}

.landing-instagram svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.landing-menu-toggle {
    display: none;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--landing-green-dark);
    cursor: pointer;
}

.landing-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3px 0;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.landing-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.landing-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.landing-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero */

.landing-hero {
    position: relative;
    padding: clamp(34px, 4.5vw, 64px) 0 clamp(28px, 4vw, 54px);
    background:
        linear-gradient(90deg, rgba(247, 250, 248, 0.83) 0%, rgba(247, 250, 248, 0.91) 42%, rgba(255, 255, 255, 0.97) 100%),
        url("/static/img/fundo.jpg") center / cover no-repeat fixed;
}

.landing-hero::after {
    position: absolute;
    inset: auto 0 0;
    height: 78px;
    background: linear-gradient(180deg, transparent, rgba(248, 250, 249, 0.96));
    content: "";
    pointer-events: none;
}

.landing-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(340px, 0.84fr) minmax(650px, 1.46fr);
    gap: clamp(30px, 3vw, 44px);
    align-items: center;
}

.landing-hero__copy {
    max-width: 500px;
}

.landing-hero__copy h1 {
    margin: 0;
    color: var(--landing-green-dark);
    font-family: var(--eai-font-family-heading);
    font-size: clamp(2.35rem, 4.2vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.landing-hero__lead {
    max-width: 46ch;
    margin: 22px 0 0;
    color: #324740;
    font-size: clamp(1rem, 1.35vw, 1.15rem);
    line-height: 1.65;
}

.landing-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.landing-primary-action,
.landing-secondary-action {
    min-height: 50px;
    padding: 0.8rem 1.4rem;
    border-radius: 8px;
    font-size: 0.92rem;
}

.landing-primary-action svg,
.final-cta-card__action svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.landing-hero__highlights {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 26px 0 0;
    padding: 0;
    color: #52645d;
    font-size: 0.78rem;
    list-style: none;
}

.landing-hero__highlights li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.landing-hero__highlights li:not(:first-child)::before {
    width: 4px;
    height: 4px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--landing-green);
    content: "";
}

.landing-hero__highlights svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--landing-green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.overview-panel {
    padding: clamp(20px, 2vw, 28px);
    border: 1px solid rgba(20, 71, 52, 0.09);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(22, 52, 42, 0.11);
    backdrop-filter: blur(7px);
}

.overview-panel__header {
    margin-bottom: 20px;
}

.overview-panel__header h2 {
    margin: 0;
    color: var(--landing-green-dark);
    font-family: var(--eai-font-family-heading);
    font-size: clamp(1.55rem, 2.2vw, 2.05rem);
    font-weight: 800;
    letter-spacing: -0.025em;
}

.overview-panel__header p {
    max-width: 65ch;
    margin: 6px 0 0;
    color: #50615b;
    font-size: 0.88rem;
    line-height: 1.55;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.overview-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 192px;
    padding: 15px 14px 12px;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--landing-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 3px 12px rgba(29, 66, 52, 0.035);
    transition: border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.overview-card:hover {
    border-color: rgba(8, 97, 63, 0.35);
    box-shadow: 0 9px 22px rgba(29, 66, 52, 0.09);
    transform: translateY(-2px);
}

.overview-card__icon {
    width: 24px;
    height: 24px;
    margin-bottom: 9px;
    fill: none;
    stroke: var(--landing-green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.overview-card h3 {
    min-height: 2.45em;
    margin: 0;
    color: var(--landing-ink);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.22;
}

.overview-card p {
    margin: 7px 0 0;
    color: var(--landing-muted);
    font-size: 0.72rem;
    line-height: 1.45;
}

.overview-chart,
.overview-radar {
    width: 100%;
    height: 52px;
    margin-top: auto;
    overflow: visible;
}

.overview-chart path {
    fill: none;
    stroke: var(--landing-green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.overview-chart circle {
    fill: #fff;
    stroke: var(--landing-green);
    stroke-width: 1.5;
}

.overview-radar path {
    fill: none;
    stroke: #cddbd4;
    stroke-width: 0.8;
}

.overview-radar .overview-radar__area {
    fill: rgba(8, 97, 63, 0.18);
    stroke: var(--landing-green);
    stroke-width: 1.2;
}

.overview-checklist {
    display: grid;
    gap: 7px;
    margin-top: auto;
}

.overview-checklist span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.overview-checklist i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(8, 97, 63, 0.38);
    border-radius: 50%;
    color: var(--landing-green);
    font-size: 0.58rem;
    font-style: normal;
}

.overview-checklist b {
    width: 64%;
    height: 3px;
    border-radius: 99px;
    background: #d5ded9;
}

.overview-progress {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.overview-progress span {
    width: 12px;
    height: 12px;
    border: 1px solid #bdc9c4;
    border-radius: 50%;
    background: #e3e9e6;
}

.overview-progress span.is-complete {
    border-color: var(--landing-green);
    background: var(--landing-green);
}

.overview-progress i {
    flex: 1;
    height: 2px;
    background: #cbd5d0;
}

.overview-document {
    position: relative;
    width: 80px;
    height: 54px;
    margin-top: auto;
    padding: 13px 10px;
    border: 1px solid #cfdad5;
    border-radius: 6px;
    background: #fff;
}

.overview-document span {
    display: block;
    width: 70%;
    height: 3px;
    margin-bottom: 6px;
    border-radius: 99px;
    background: #ccd7d2;
}

.overview-document small {
    position: absolute;
    right: -11px;
    bottom: -6px;
    padding: 4px 6px;
    border-radius: 4px;
    background: #d7eddf;
    color: var(--landing-green);
    font-size: 0.54rem;
    font-weight: 800;
}

.overview-integration {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.overview-integration span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--landing-border);
    border-radius: 7px;
    background: #f9fbfa;
}

.overview-integration svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--landing-green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.overview-integration b {
    color: var(--landing-green);
    font-size: 0.9rem;
}

.overview-layers {
    position: relative;
    width: 86px;
    height: 50px;
    margin: auto 0 0 5px;
}

.overview-layers span {
    position: absolute;
    left: 8px;
    width: 64px;
    height: 28px;
    background: rgba(8, 97, 63, 0.16);
    clip-path: polygon(50% 0, 100% 45%, 50% 100%, 0 45%);
}

.overview-layers span:nth-child(1) { bottom: 0; background: rgba(8, 97, 63, 0.48); }
.overview-layers span:nth-child(2) { bottom: 10px; background: rgba(8, 97, 63, 0.3); }
.overview-layers span:nth-child(3) { bottom: 20px; background: rgba(8, 97, 63, 0.16); }

.overview-insights {
    position: relative;
    height: 50px;
    margin-top: auto;
}

.overview-insights span {
    position: absolute;
    display: block;
    width: 52px;
    height: 30px;
    border: 1px solid #cfdad5;
    border-radius: 7px;
    background: #fff;
}

.overview-insights span::after {
    display: block;
    width: 54%;
    height: 3px;
    margin: 9px;
    border-radius: 99px;
    background: #b8d9c7;
    box-shadow: 0 7px #d7e2dd;
    content: "";
}

.overview-insights span:nth-child(2) {
    top: 14px;
    left: 34px;
}

.overview-insights i {
    position: absolute;
    top: -3px;
    left: 76px;
    color: var(--landing-green);
    font-style: normal;
}

/* Plataforma e fluxo */

.landing-platform {
    position: relative;
    padding: 12px 0 clamp(52px, 6vw, 78px);
    background: var(--landing-background);
}

.benefits-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 14px 10px;
    border: 1px solid rgba(21, 73, 54, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--landing-shadow);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
    padding: 12px 16px;
}

.benefit-item + .benefit-item {
    border-left: 1px solid #edf1ef;
}

.benefit-item__icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 9px;
    background: #f0f6f3;
    color: var(--landing-green);
}

.benefit-item__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.benefit-item h3 {
    margin: 0;
    color: var(--landing-green-dark);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.3;
}

.benefit-item p {
    margin: 5px 0 0;
    color: var(--landing-muted);
    font-size: 0.77rem;
    line-height: 1.45;
}

.workflow-block {
    padding-top: clamp(50px, 6vw, 72px);
}

.workflow-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1020px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.workflow-step {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 42px;
    flex-direction: column;
    text-align: center;
}

.workflow-step:not(:last-child)::after {
    position: absolute;
    top: 49px;
    left: calc(50% + 58px);
    width: calc(100% - 116px);
    border-top: 1px dashed #bdd0c7;
    content: "";
}

.workflow-step:not(:last-child)::before {
    position: absolute;
    top: 45px;
    right: -3px;
    z-index: 1;
    width: 8px;
    height: 8px;
    border-top: 1px solid #9eb9ac;
    border-right: 1px solid #9eb9ac;
    content: "";
    transform: rotate(45deg);
}

.workflow-step__number {
    position: absolute;
    top: 0;
    left: calc(50% - 46px);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    border: 2px solid var(--landing-background);
    border-radius: 50%;
    background: var(--landing-green);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
}

.workflow-step__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #edf4f0;
    color: var(--landing-green);
}

.workflow-step__icon svg {
    width: 43px;
    height: 43px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
}

.workflow-step h3 {
    margin: 18px 0 0;
    color: var(--landing-green-dark);
    font-size: 1.08rem;
    font-weight: 700;
}

.workflow-step p {
    max-width: 31ch;
    margin: 8px 0 0;
    color: var(--landing-muted);
    font-size: 0.84rem;
    line-height: 1.55;
}

/* Sobre */

.landing-about {
    padding: clamp(46px, 6vw, 78px) 0;
    background: #fff;
}

.analysis-panel {
    padding: clamp(24px, 3vw, 38px);
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 9px 26px rgba(29, 66, 52, 0.045);
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.analysis-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-height: 112px;
    padding: 20px;
    border: 1px solid #e4ebe7;
    border-radius: 9px;
    background: #fff;
    transition: border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.analysis-card:hover {
    border-color: rgba(8, 97, 63, 0.3);
    box-shadow: 0 8px 20px rgba(29, 66, 52, 0.07);
    transform: translateY(-2px);
}

.analysis-card > svg {
    flex: 0 0 auto;
    width: 35px;
    height: 35px;
    margin-top: 2px;
    fill: none;
    stroke: var(--landing-green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.analysis-card h3 {
    margin: 0;
    color: var(--landing-green-dark);
    font-size: 0.98rem;
    font-weight: 700;
}

.analysis-card p {
    margin: 6px 0 0;
    color: var(--landing-muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.institutional-grid {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 18px;
    margin-top: 18px;
}

.institutional-card {
    position: relative;
    min-height: 260px;
    padding: clamp(26px, 3vw, 40px);
    overflow: hidden;
    border: 1px solid var(--landing-border);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(29, 66, 52, 0.035);
}

.institutional-card--about::after {
    position: absolute;
    bottom: -36px;
    left: -34px;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at 30% 25%, rgba(124, 158, 137, 0.24) 0 9%, transparent 10%),
        radial-gradient(ellipse at 58% 45%, rgba(124, 158, 137, 0.2) 0 11%, transparent 12%),
        radial-gradient(ellipse at 40% 72%, rgba(124, 158, 137, 0.18) 0 12%, transparent 13%);
    content: "";
    transform: rotate(-24deg);
}

.institutional-card h2 {
    margin: 0;
    color: var(--landing-ink);
    font-family: var(--eai-font-family-heading);
    font-size: 1.35rem;
    font-weight: 800;
}

.institutional-card p {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    color: #465a52;
    font-size: 0.88rem;
    line-height: 1.7;
}

.source-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.source-list li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px;
    border-radius: 7px;
    background: #f3f6f4;
    color: #273a33;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
}

/* Planos */

.landing-plans {
    padding: clamp(50px, 6vw, 78px) 0 34px;
    background: var(--landing-background);
}

.landing-plans__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.landing-plan-card {
    display: flex;
    min-width: 0;
    min-height: 450px;
    padding: 24px 22px;
    flex-direction: column;
    border: 1px solid var(--landing-border);
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(29, 66, 52, 0.045);
    transition: border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.landing-plan-card:hover {
    border-color: rgba(8, 97, 63, 0.32);
    box-shadow: 0 13px 30px rgba(29, 66, 52, 0.09);
    transform: translateY(-3px);
}

.landing-plan-card header {
    min-height: 68px;
}

.landing-plan-card h3 {
    margin: 0;
    color: var(--landing-green-dark);
    font-family: var(--eai-font-family-heading);
    font-size: 1.35rem;
    font-weight: 800;
}

.landing-plan-card__label {
    margin: 4px 0 0;
    color: #31463e;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
}

.landing-plan-card ul {
    display: grid;
    gap: 9px;
    margin: 18px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid #e2e9e5;
    list-style: none;
}

.landing-plan-card li {
    position: relative;
    padding-left: 21px;
    color: #33473f;
    font-size: 0.78rem;
    line-height: 1.38;
}

.landing-plan-card li::before {
    position: absolute;
    top: 0.12em;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--landing-green);
    color: #fff;
    content: "✓";
    font-size: 0.55rem;
    font-weight: 800;
}

.landing-plan-card__description {
    margin: auto 0 0;
    padding-top: 20px;
    border-top: 1px solid #e2e9e5;
    color: #2c3d37;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
}

.plans-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    margin: 16px 0 0;
    padding: 8px 18px;
    border: 1px solid rgba(8, 97, 63, 0.46);
    border-radius: 999px;
    background: #fbfdfc;
    color: #41564d;
    font-size: 0.78rem;
    text-align: center;
}

.plans-note svg {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--landing-green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

/* CTA final */

.landing-final-cta {
    padding: 10px 0 22px;
    background: var(--landing-background);
}

.final-cta-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    min-height: 126px;
    padding: 22px 34px;
    overflow: hidden;
    border: 1px solid rgba(8, 97, 63, 0.08);
    border-radius: 11px;
    background:
        linear-gradient(90deg, rgba(235, 245, 239, 0.98) 0%, rgba(239, 248, 243, 0.94) 62%, rgba(244, 250, 247, 0.78) 100%),
        url("/static/img/fundo_acesso.png") right -35px center / 280px auto no-repeat;
    box-shadow: 0 8px 24px rgba(29, 66, 52, 0.055);
}

.final-cta-card__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.68);
    color: var(--landing-green);
}

.final-cta-card__icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.final-cta-card__copy {
    position: relative;
    z-index: 1;
}

.final-cta-card__copy h2 {
    max-width: 650px;
    margin: 0;
    color: var(--landing-green-dark);
    font-family: var(--eai-font-family-heading);
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.final-cta-card__copy p {
    margin: 5px 0 0;
    color: #41564d;
    font-size: 0.88rem;
}

.final-cta-card__action {
    position: relative;
    z-index: 1;
    min-width: 210px;
    min-height: 50px;
    padding: 0.8rem 1.35rem;
    border-radius: 8px;
}

/* Footer */

.landing-footer {
    padding: 30px 0 18px;
    border-top: 1px solid #e4ebe7;
    background: #fff;
}

.landing-footer__grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.8fr) repeat(3, minmax(135px, 0.65fr));
    gap: clamp(26px, 4vw, 58px);
    align-items: start;
}

.landing-footer__brand img {
    display: block;
    width: 92px;
    height: 58px;
    object-fit: contain;
}

.landing-footer__brand p {
    max-width: 54ch;
    margin: 12px 0 0;
    color: #4e6059;
    font-size: 0.75rem;
    line-height: 1.55;
}

.landing-footer__column {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}

.landing-footer__column h2 {
    margin: 5px 0 6px;
    color: var(--landing-ink);
    font-size: 0.82rem;
    font-weight: 700;
}

.landing-footer__column a,
.landing-footer__link,
.landing-footer__inactive-link {
    display: inline-flex;
    width: fit-content;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #485a53;
    font: inherit;
    font-size: 0.76rem;
    line-height: 1.4;
    text-align: left;
    text-decoration: none;
}

.landing-footer__column a:hover,
.landing-footer__link:hover {
    color: var(--landing-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.landing-footer__link {
    cursor: pointer;
}

.landing-footer__inactive-link {
    cursor: default;
}

.landing-footer__reserved-links {
    display: grid;
    gap: 9px;
    min-height: 42px;
}

.landing-footer__reserved-links span {
    display: block;
    width: min(100%, 88px);
    height: 10px;
}

.landing-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
    padding-top: 14px;
    border-top: 1px solid #edf1ef;
    color: #677770;
    font-size: 0.69rem;
}

/* Modal de termos */

.landing-terms-dialog {
    width: min(760px, calc(100% - 28px));
    max-height: min(86vh, 820px);
    margin: auto;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(23, 58, 43, 0.13);
    border-radius: 12px;
    background: #fff;
    color: var(--landing-ink);
    box-shadow: 0 30px 90px rgba(5, 28, 19, 0.32);
}

.landing-terms-dialog[open] {
    display: flex;
    flex-direction: column;
    animation: landingDialogIn 180ms ease-out;
}

.landing-terms-dialog::backdrop {
    background: rgba(7, 20, 14, 0.7);
    backdrop-filter: blur(3px);
}

.landing-terms-dialog__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #eef3f0;
    color: var(--landing-ink);
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 150ms ease, color 150ms ease;
}

.landing-terms-dialog__close:hover {
    background: #dfe9e3;
    color: var(--landing-green);
}

.landing-terms-dialog__header {
    flex: 0 0 auto;
    padding: 30px 64px 18px;
    text-align: center;
}

.landing-terms-dialog__header > span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 11px;
    border-radius: 999px;
    background: var(--landing-green-soft);
    color: var(--landing-green);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.landing-terms-dialog__header h2 {
    margin: 10px 0 0;
    color: var(--landing-ink);
    font-family: var(--eai-font-family-heading);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
}

.landing-terms-dialog__header p {
    margin: 6px 0 0;
    color: var(--landing-muted);
    font-size: 0.9rem;
}

.landing-terms-dialog__content {
    min-height: 0;
    padding: 0 32px 10px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
}

.landing-terms-dialog__content section {
    padding: 20px 0;
    border-top: 1px solid #e4ebe7;
}

.landing-terms-dialog__content section:first-child {
    padding-top: 8px;
    border-top: 0;
}

.landing-terms-dialog__content h3,
.landing-terms-dialog__content h4 {
    color: var(--landing-ink);
    font-weight: 800;
}

.landing-terms-dialog__content h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
}

.landing-terms-dialog__content h4 {
    margin: 16px 0 8px;
    font-size: 0.9rem;
}

.landing-terms-dialog__content p,
.landing-terms-dialog__content li {
    color: #43574e;
    font-size: 0.84rem;
    line-height: 1.58;
}

.landing-terms-dialog__content p {
    margin: 0 0 10px;
}

.landing-terms-dialog__content ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 20px;
}

.landing-terms-dialog__content li::marker {
    color: var(--landing-green);
}

.landing-terms-dialog__footer {
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    padding: 16px 30px 22px;
    border-top: 1px solid #e4ebe7;
    background: #fff;
}

.landing-terms-dialog__footer button {
    min-width: 150px;
    min-height: 44px;
    padding: 10px 20px;
    border: 0;
    border-radius: 8px;
    background: var(--landing-green-dark);
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 150ms ease, transform 150ms ease;
}

.landing-terms-dialog__footer button:hover {
    background: var(--landing-green);
    transform: translateY(-1px);
}

@keyframes landingDialogIn {
    from { opacity: 0; transform: translateY(8px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsividade */

@media (max-width: 1180px) {
    .landing-hero__grid {
        grid-template-columns: 1fr;
    }

    .landing-hero__copy {
        max-width: 760px;
        text-align: center;
        justify-self: center;
    }

    .landing-hero__lead {
        margin-right: auto;
        margin-left: auto;
    }

    .landing-hero__actions,
    .landing-hero__highlights {
        justify-content: center;
    }

    .landing-plans__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-plan-card {
        min-height: 420px;
    }
}

@media (max-width: 960px) {
    .overview-grid,
    .benefits-strip,
    .analysis-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-item:nth-child(odd) {
        border-left: 0;
    }

    .benefit-item:nth-child(n + 3) {
        border-top: 1px solid #edf1ef;
    }

    .institutional-grid {
        grid-template-columns: 1fr;
    }

    .landing-footer__grid {
        grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(115px, 0.6fr));
        gap: 28px;
    }
}

@media (max-width: 760px) {
    :root {
        --landing-header-height: 68px;
    }

    .landing-header__inner {
        display: flex;
        gap: 8px;
    }

    .landing-brand,
    .landing-brand img {
        width: 74px;
        height: 51px;
    }

    .landing-menu-toggle {
        display: inline-flex;
    }

    .landing-instagram {
        margin-left: auto;
    }

    .landing-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        padding: 10px;
        flex-direction: column;
        gap: 2px;
        border: 1px solid var(--landing-border);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.99);
        box-shadow: 0 16px 38px rgba(13, 45, 33, 0.16);
    }

    .landing-nav.is-open {
        display: flex;
    }

    .landing-nav a {
        min-height: 46px;
        padding: 0 13px;
        border-radius: 7px;
    }

    .landing-nav a::after {
        display: none;
    }

    .landing-nav a.is-active {
        background: var(--landing-green-soft);
    }

    .landing-hero {
        background-attachment: scroll;
    }

    .landing-hero__copy h1 {
        font-size: clamp(2.25rem, 10vw, 3.4rem);
    }

    .workflow-list {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .workflow-step {
        max-width: 520px;
        margin: 0 auto;
    }

    .workflow-step:not(:last-child)::after {
        top: 92px;
        left: 50%;
        width: 1px;
        height: 34px;
        border-top: 0;
        border-left: 1px dashed #bdd0c7;
    }

    .workflow-step:not(:last-child)::before {
        display: none;
    }

    .landing-footer__grid {
        grid-template-columns: 1.5fr repeat(2, 0.8fr);
    }

    .landing-footer__brand {
        grid-column: 1 / -1;
    }

    .final-cta-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .final-cta-card__action {
        grid-column: 1 / -1;
        justify-self: start;
        margin-left: 88px;
    }
}

@media (max-width: 560px) {
    .landing-section-heading {
        margin-bottom: 22px;
    }

    .landing-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .landing-primary-action,
    .landing-secondary-action {
        width: 100%;
    }

    .landing-hero__highlights {
        align-items: flex-start;
        flex-direction: column;
    }

    .overview-grid,
    .benefits-strip,
    .analysis-grid,
    .landing-plans__grid {
        grid-template-columns: 1fr;
    }

    .overview-card {
        min-height: 178px;
    }

    .benefit-item + .benefit-item,
    .benefit-item:nth-child(n + 3) {
        border-top: 1px solid #edf1ef;
        border-left: 0;
    }

    .analysis-card {
        min-height: auto;
    }

    .source-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-plan-card {
        min-height: auto;
    }

    .landing-plan-card__description {
        margin-top: 24px;
    }

    .plans-note {
        align-items: flex-start;
        border-radius: 10px;
        text-align: left;
    }

    .final-cta-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 24px;
        background-position: right -75px bottom -50px;
        background-size: 240px auto;
    }

    .final-cta-card__icon {
        width: 54px;
        height: 54px;
    }

    .final-cta-card__action {
        grid-column: auto;
        width: 100%;
        margin-left: 0;
        justify-self: stretch;
    }

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

    .landing-footer__brand {
        grid-column: 1 / -1;
    }

    .landing-footer__column--partners {
        display: none;
    }

    .landing-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .landing-terms-dialog {
        width: calc(100% - 16px);
        max-height: 90vh;
    }

    .landing-terms-dialog__header {
        padding: 26px 50px 16px 18px;
        text-align: left;
    }

    .landing-terms-dialog__content {
        padding-right: 18px;
        padding-left: 18px;
    }

    .landing-terms-dialog__footer {
        padding: 14px 18px 18px;
    }

    .landing-terms-dialog__footer button {
        width: 100%;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
