/* 1. Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul,
ol {
    margin: 0;
}

ul,
ol {
    padding: 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

/* 2. Variables */
:root {
    --color-ink: #090a0b;
    --color-ink-soft: #111316;
    --color-ink-elevated: #17191c;
    --color-gold: #c9952f;
    --color-gold-light: #e4bd65;
    --color-gold-pale: #f3e2b7;
    --color-whatsapp: #1da851;
    --color-whatsapp-light: #3ecf7e;
    --color-whatsapp-dark: #0e6b34;
    --color-paper: #f5f2ec;
    --color-paper-2: #ebe6dc;
    --color-white: #fff;
    --color-text: #171717;
    --color-muted: #66625a;
    --color-line: rgba(201, 149, 47, .28);
    --color-line-light: rgba(12, 12, 12, .12);
    --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1180px;
    --header-height: 88px;
}

/* 3. Base */
body {
    min-width: 320px;
    background: var(--color-paper);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    background: var(--color-gold);
    color: var(--color-ink);
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--color-gold-light);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
    transform: translateY(-180%);
    padding: 10px 14px;
    background: var(--color-white);
    color: var(--color-ink);
    font-weight: 700;
}

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

.section {
    padding-block: clamp(84px, 9vw, 132px);
}

/* 4. Typography */
h1,
h2,
h3 {
    text-wrap: balance;
}

h1,
h2 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -.038em;
    line-height: .98;
}

h1 {
    max-width: 820px;
    color: var(--color-white);
    font-size: clamp(3rem, 6.2vw, 5.8rem);
}

h1 em {
    color: var(--color-gold-light);
    font-style: normal;
}

h2 {
    font-size: clamp(2.3rem, 4.6vw, 4.45rem);
}

h3 {
    line-height: 1.25;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 22px;
    color: var(--color-gold-light);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 26px;
    height: 1px;
    background: currentColor;
    content: '';
}

.eyebrow--dark {
    color: #9b6c13;
}

.section-heading > p:not(.eyebrow) {
    max-width: 700px;
    margin-top: 26px;
    color: var(--color-muted);
    font-size: 1.04rem;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .62fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 64px;
}

.section-heading--split > p {
    margin: 0;
    padding-bottom: 8px;
}

/* 5. Buttons */
.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 22px;
    border: 1px solid transparent;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .01em;
    line-height: 1.2;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--gold {
    background: linear-gradient(105deg, var(--color-whatsapp-dark), var(--color-whatsapp-light) 46%, var(--color-whatsapp));
    color: #08210f;
    box-shadow: 0 12px 30px rgba(29, 168, 81, .22);
}

.button--gold:hover {
    background: linear-gradient(105deg, #128c40, #4fe092 46%, #22bb5d);
}

.button--outline {
    border-color: rgba(62, 207, 126, .7);
    color: var(--color-whatsapp-light);
}

.button--outline:hover {
    background: rgba(29, 168, 81, .12);
    border-color: var(--color-whatsapp-light);
}

.button--dark {
    background: var(--color-ink);
    color: var(--color-white);
}

.button--dark:hover {
    background: #202226;
}

.button--large {
    min-height: 64px;
    padding-inline: 28px;
    font-size: .96rem;
}

.button-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-whatsapp-light);
    box-shadow: 0 0 0 5px rgba(62, 207, 126, .15);
}

/* 6. Header */
.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: #070809;
}

.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    flex-shrink: 0;
    width: 190px;
    height: 52px;
    align-items: center;
    overflow: hidden;
}

.brand img {
    width: 190px;
    height: auto;
}

.header-cta {
    flex-shrink: 0;
    min-height: 46px;
    padding: 11px 18px;
    font-size: .78rem;
}

/* 6b. Menu de navegação */
.main-nav ul {
    display: flex;
    gap: clamp(14px, 2vw, 26px);
    list-style: none;
}

.main-nav a {
    display: block;
    padding: 6px 0;
    color: rgba(255, 255, 255, .74);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .2s ease;
}

.main-nav a:hover {
    color: var(--color-gold-light);
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--color-white);
    transition: transform .25s ease, opacity .25s ease;
}

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

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

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

/* 7. Hero */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: min(930px, 100svh);

    padding-top: calc(
        var(--header-height) + clamp(44px, 7vh, 78px)
    );

    background-color: #070809;
    background-image: url("../assets/images/mesa-financeira.webp");
    background-repeat: no-repeat;
    background-position: 68% 55%;
    background-size: cover;

    color: rgba(255, 255, 255, .78);
}

/*
 * Camada de contraste.
 *
 * A foto tem bastante espaço vazio à esquerda por natureza
 * (parede/janela ao fundo), então o degradê fica confortavelmente
 * opaco atrás do texto e esmaece bem antes de chegar na pessoa,
 * que fica concentrada no lado direito do quadro.
 */
.hero::before {
    position: absolute;
    z-index: 0;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 6, 7, 1) 0%,
            rgba(5, 6, 7, .96) 18%,
            rgba(5, 6, 7, .84) 32%,
            rgba(5, 6, 7, .6) 44%,
            rgba(5, 6, 7, .32) 54%,
            rgba(5, 6, 7, .12) 64%,
            transparent 74%
        );

    content: "";
    pointer-events: none;
}


/* Grade decorativa apenas na região de conteúdo */
.hero-grid-lines {
    position: absolute;
    z-index: 1;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, .028) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .028) 1px,
            transparent 1px
        );

    background-size: 88px 88px;

    -webkit-mask-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .5) 0%,
            rgba(0, 0, 0, .35) 42%,
            transparent 70%
        );

    mask-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .5) 0%,
            rgba(0, 0, 0, .35) 42%,
            transparent 70%
        );

    pointer-events: none;
}


.hero-layout {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    min-height: clamp(430px, 55vh, 570px);
}


.hero-copy {
    position: relative;
    z-index: 2;

    width: min(100%, 720px);
}


.hero-lead {
    max-width: 670px;

    margin-top: 28px;

    color: rgba(255, 255, 255, .72);

    font-size: clamp(1.02rem, 1.7vw, 1.18rem);
    line-height: 1.72;
}


.hero-actions {
    display: flex;

    max-width: 690px;

    align-items: center;
    gap: 24px;

    margin-top: 34px;
}


.cta-note {
    max-width: 270px;

    color: rgba(255, 255, 255, .55);

    font-size: .76rem;
    line-height: 1.5;
}


.cta-note span {
    margin-right: 6px;
    color: var(--color-gold-light);
}

.hero-qualifiers {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(40px, 6vh, 66px);
    border: 1px solid rgba(201,149,47,.25);
    background: rgba(7,8,9,.8);
}

.hero-qualifiers p {
    padding: 18px 24px;
}

.hero-qualifiers p + p {
    border-left: 1px solid rgba(201,149,47,.18);
}

.hero-qualifiers strong,
.hero-qualifiers span {
    display: block;
}

.hero-qualifiers strong {
    color: var(--color-white);
    font-size: .76rem;
    letter-spacing: .02em;
}

.hero-qualifiers span {
    margin-top: 3px;
    color: #898780;
    font-size: .69rem;
}

/* 8. Recognition */
.recognition {
    background: var(--color-paper);
}

.recognition-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, .8fr);
    gap: clamp(60px, 8vw, 120px);
}

.recognition-heading h2 {
    max-width: 720px;
}

.recognition-heading > p:not(.eyebrow) + p {
    margin-top: 16px;
}

.fit-panel {
    align-self: start;
    padding: 36px;
    border-top: 3px solid var(--color-gold);
    background: #ede8de;
}

.fit-panel__title {
    margin-bottom: 26px;
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.25;
}

.check-list {
    display: grid;
    gap: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 12px 0 12px 28px;
    border-bottom: 1px solid rgba(20,20,20,.09);
    font-size: .92rem;
}

.check-list li::before {
    position: absolute;
    top: 14px;
    left: 0;
    width: 14px;
    height: 14px;
    border: 1px solid var(--color-gold);
    content: '';
}

.check-list li::after {
    position: absolute;
    top: 18px;
    left: 4px;
    width: 6px;
    height: 3px;
    border-bottom: 1.5px solid #8a6013;
    border-left: 1.5px solid #8a6013;
    content: '';
    transform: rotate(-45deg);
}

.fit-panel__note {
    margin-top: 22px;
    color: #706b62;
    font-size: .78rem;
    line-height: 1.55;
}

/* 9. Solutions */
.solutions {
    border-top: 1px solid var(--color-line-light);
    background: #faf8f4;
}

.solution-list {
    border-top: 1px solid #bdb7ac;
}

.solution-item {
    border-bottom: 1px solid #d4cfc6;
}

.solution-item__summary {
    position: relative;

    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    min-height: 128px;
    padding: 24px 40px 24px 4px;

    list-style: none;
    cursor: pointer;
    transition: padding .25s ease, background-color .25s ease;
}

.solution-item__summary::-webkit-details-marker,
.solution-item__summary::marker {
    display: none;
}

.solution-item__summary::after {
    position: absolute;
    top: 50%;
    right: 4px;

    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform .25s ease;

    content: '+';
}

.solution-item[open] > .solution-item__summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.solution-item__summary:hover,
.solution-item[open] > .solution-item__summary {
    padding-right: 54px;
    padding-left: 18px;
    background: #f0ebe1;
}

.solution-number {
    color: #9e7936;
    font-family: var(--font-display);
    font-size: 1rem;
}

.solution-item h3 {
    margin-bottom: 7px;
    font-family: var(--font-display);
    font-size: clamp(1.32rem, 2vw, 1.72rem);
    font-weight: 400;
}

.solution-item p {
    max-width: 760px;
    color: #69655d;
    font-size: .9rem;
}

.solution-tag {
    min-width: 112px;
    padding: 8px 10px;
    border: 1px solid #d2c7b0;
    color: #85611b;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

.solution-item__photo {
    display: block;
    width: 100%;
    max-height: 320px;
    margin-bottom: 24px;
    border: 1px solid #d4cfc6;
    object-fit: cover;
}

.solution-item:not([open]) .solution-item__photo {
    display: none;
}

.section-action {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid #a97719;
    color: #7d5710;
    font-weight: 800;
}

/* 10. Process */
.process {
    position: relative;
    overflow: hidden;
    background: var(--color-ink);
    color: rgba(255,255,255,.72);
}

.process::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    content: '';
    opacity: .5;
}

.process-glow {
    position: absolute;
    top: -220px;
    right: -160px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(201,149,47,.16);
    border-radius: 50%;
    box-shadow: 0 0 140px rgba(201,149,47,.07) inset;
}

.process-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    column-gap: 100px;
}

.process-heading .eyebrow {
    grid-column: 1 / -1;
}

.process-heading h2 {
    color: var(--color-white);
}

.process-heading > p:not(.eyebrow) {
    margin: 0;
    color: #8f8e89;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 70px;
    border-top: 1px solid rgba(201,149,47,.28);
    list-style: none;
}

.process-step {
    position: relative;
    padding: 36px 28px 12px 0;
}

.process-step + .process-step {
    padding-left: 28px;
    border-left: 1px solid rgba(201,149,47,.16);
}

.process-step__number {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    color: var(--color-gold-light);
    font-family: var(--font-display);
    font-size: .72rem;
}

.process-step h3 {
    margin-bottom: 12px;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
}

.process-step p {
    color: #8d8b86;
    font-size: .84rem;
}

.process-cta {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 56px;
}

.process-cta p {
    max-width: 280px;
    color: #767570;
    font-size: .74rem;
}

/* 11. Credibility */
.credibility {
    background: var(--color-paper);
}

.credibility-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, .74fr);
    align-items: center;
    gap: clamp(70px, 9vw, 130px);
}

.credibility-brand {
    position: relative;
}

.credibility-brand h2 {
    max-width: 720px;
}

.credibility-brand > p:not(.eyebrow) {
    max-width: 680px;
    margin-top: 22px;
    color: var(--color-muted);
}

.credibility-mark {
    position: absolute;
    top: -40px;
    right: 0;
    width: 250px;
    opacity: .07;
    pointer-events: none;
}

.credibility-points {
    padding-top: 8px;
}

.credibility-photo {
    margin: 0 0 28px;
    border-top: 3px solid var(--color-gold);
}

.credibility-photo img {
    width: 100%;
    max-height: 230px;
    object-fit: cover;
}

.credibility-points__intro {
    margin-bottom: 22px;
    color: #8a631b;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.feature-list {
    border-top: 1px solid #cfc8bc;
    list-style: none;
}

.feature-list li {
    padding: 21px 0;
    border-bottom: 1px solid #cfc8bc;
}

.feature-list strong,
.feature-list span {
    display: block;
}

.feature-list strong {
    margin-bottom: 5px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
}

.feature-list span {
    color: #767168;
    font-size: .83rem;
}

/* 12. Objection */
.objection {
    padding-top: 0;
    background: var(--color-paper);
}

.objection-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) auto;
    align-items: center;
    gap: 38px;
    padding: clamp(34px, 5vw, 58px);
    border: 1px solid #cba75d;
    background:
        linear-gradient(115deg, rgba(255,255,255,.72), transparent 55%),
        #e8dcc1;
}

.objection-index {
    display: flex;
    width: 78px;
    height: 78px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ad7a1e;
    border-radius: 50%;
    color: #95650f;
    font-family: var(--font-display);
    font-size: 2rem;
}

.objection-copy h2 {
    max-width: 680px;
    font-size: clamp(2rem, 3.4vw, 3.25rem);
    line-height: 1.04;
}

.objection-copy > p:not(.eyebrow) {
    max-width: 740px;
    margin-top: 18px;
    color: #665e51;
    font-size: .92rem;
}

.objection-card .button {
    white-space: nowrap;
}

/* 13. Preparation */
.preparation {
    background: #faf8f4;
}

.preparation-layout {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(460px, 1fr);
    gap: clamp(60px, 9vw, 130px);
    align-items: start;
}

.preparation-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #c9c2b7;
    border-left: 1px solid #c9c2b7;
}

.preparation-list > div {
    min-height: 130px;
    padding: 24px;
    border-right: 1px solid #c9c2b7;
    border-bottom: 1px solid #c9c2b7;
    background-color: transparent;
    transition: background-color .25s ease, box-shadow .25s ease;
}

.preparation-list > div:hover {
    background-color: #ede8de;
    box-shadow: inset 3px 0 0 var(--color-gold);
}

.preparation-list > div:hover span {
    color: #6f4c11;
}

.preparation-list span,
.preparation-list strong {
    display: block;
}

.preparation-list span {
    margin-bottom: 24px;
    color: #9b701f;
    font-family: var(--font-display);
    font-size: .78rem;
}

.preparation-list strong {
    max-width: 180px;
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 400;
    line-height: 1.25;
}

/* 14. Final CTA */
.final-cta {
    position: relative;
    overflow: hidden;
    padding-block: clamp(80px, 9vw, 124px);
    background:
        radial-gradient(circle at 85% 50%, rgba(201,149,47,.16), transparent 24%),
        linear-gradient(110deg, #070809, #111316 60%, #020203);
    color: rgba(255,255,255,.72);
}

.final-cta::after {
    position: absolute;
    right: -130px;
    bottom: -280px;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(201,149,47,.22);
    border-radius: 50%;
    content: '';
}

.final-cta-grid {
    mask-image: linear-gradient(90deg, transparent, rgba(0,0,0,.75));
}

.final-cta-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .56fr);
    gap: clamp(70px, 10vw, 140px);
    align-items: center;
}

.final-cta-copy h2 {
    max-width: 800px;
    color: var(--color-white);
}

.final-cta-copy > p:not(.eyebrow) {
    max-width: 730px;
    margin-top: 24px;
    color: #8f8e89;
}

.final-cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.final-cta-action p {
    max-width: 360px;
    color: #7e7d78;
    font-size: .74rem;
    line-height: 1.55;
}

.final-cta-action p span {
    color: var(--color-gold-light);
}

/* 15. Footer */
.site-footer {
    padding: 58px 0 28px;
    border-top: 1px solid rgba(201,149,47,.18);
    background: #020203;
    color: #8b877f;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.3fr) 1fr .8fr 1fr;
    gap: clamp(30px, 5vw, 70px);
}

.footer-brand img {
    width: 170px;
    height: auto;
    margin-bottom: 14px;
}

.footer-brand p {
    max-width: 330px;
    font-size: .78rem;
}

.footer-label {
    margin-bottom: 12px;
    color: var(--color-gold-light);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.footer-block p:not(.footer-label),
.footer-block a {
    display: block;
    font-size: .78rem;
    line-height: 1.7;
}

.footer-block a:hover {
    color: var(--color-white);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.07);
    font-size: .64rem;
}

.footer-legal p:first-child {
    max-width: 800px;
}

/* 16. WhatsApp floater */
.whatsapp-floater {
    position: fixed;
    z-index: 50;
    right: 24px;
    bottom: 24px;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;

    background: var(--color-whatsapp);
    box-shadow: 0 14px 32px rgba(14, 107, 52, .38);
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-floater:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(14, 107, 52, .46);
}

.whatsapp-floater svg {
    width: 28px;
    height: 28px;
    fill: var(--color-white);
}

/* 17. Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* 18. Responsiveness */
@media (max-width: 1040px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;

        max-height: 0;
        overflow: hidden;

        background: #070809;
        border-bottom: 1px solid rgba(255, 255, 255, .08);

        transition: max-height .3s ease;
    }

    .main-nav.is-open {
        max-height: 420px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 8px min(24px, 5vw) 18px;
    }

    .main-nav a {
        padding: 13px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
        font-size: .82rem;
    }

    .hero {
        min-height: auto;
        padding-bottom: 42px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .section-heading--split,
    .process-heading,
    .credibility-layout,
    .preparation-layout,
    .final-cta-layout {
        gap: 54px;
    }

    .objection-card {
        grid-template-columns: 74px 1fr;
    }

    .objection-card .button {
        grid-column: 2;
        justify-self: start;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .footer-block:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 1100px) {

    .hero {
        background-position: 74% 55%;
    }

    .hero::before {
        background:
            linear-gradient(
                90deg,
                rgba(5, 6, 7, 1) 0%,
                rgba(5, 6, 7, .94) 18%,
                rgba(5, 6, 7, .76) 34%,
                rgba(5, 6, 7, .48) 46%,
                rgba(5, 6, 7, .22) 58%,
                rgba(5, 6, 7, .06) 68%,
                transparent 78%
            );
    }

    .hero-copy {
        width: min(100%, 650px);
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 74px;
    }

    .container {
        width: min(calc(100% - 36px), var(--container));
    }

    .brand,
    .brand img {
        width: 166px;
    }

    .header-cta {
        min-height: 42px;
        padding-inline: 14px;
    }

    .hero {
        padding-top: calc(var(--header-height) + 52px);
    }

    .recognition-layout,
    .credibility-layout,
    .preparation-layout,
    .final-cta-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 700px;
    }

    .hero-qualifiers {
        margin-top: 34px;
    }

    .section-heading--split,
    .process-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-heading--split {
        margin-bottom: 46px;
    }

    .process-heading .eyebrow {
        grid-column: auto;
    }

    .process-list {
        grid-template-columns: 1fr 1fr;
    }

    .process-step:nth-child(3) {
        border-left: none;
    }

    .process-step:nth-child(n+3) {
        border-top: 1px solid rgba(201,149,47,.16);
    }

    .objection-card {
        grid-template-columns: 60px 1fr;
    }

    .preparation-list {
        grid-template-columns: 1fr 1fr;
    }

    .final-cta-action {
        max-width: 560px;
    }

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

    .footer-block:last-child {
        grid-column: auto;
    }
}
@media (max-width: 760px) {

    .hero {
        min-height: auto;

        padding-top: calc(
            var(--header-height) + 34px
        );

        padding-bottom: 28px;

        background-position: 80% 55%;
    }


    /*
     * No mobile precisamos aumentar o contraste,
     * mas sem transformar toda a foto em preto.
     */
    .hero::before {
        background:
            linear-gradient(
                90deg,
                rgba(5, 6, 7, .99) 0%,
                rgba(5, 6, 7, .98) 30%,
                rgba(5, 6, 7, .95) 52%,
                rgba(5, 6, 7, .88) 68%,
                rgba(5, 6, 7, .66) 84%,
                rgba(5, 6, 7, .48) 100%
            );
    }


    .hero-grid-lines {
        opacity: .6;

        -webkit-mask-image:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, .45),
                transparent 90%
            );

        mask-image:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, .45),
                transparent 90%
            );
    }


    .hero-layout {
        min-height: auto;

        padding-block: 34px 50px;
    }


    .hero-copy {
        width: 100%;
        max-width: 620px;
    }


    .hero-actions {
        flex-direction: column;
        align-items: flex-start;

        gap: 16px;
    }


    .cta-note {
        max-width: 340px;
    }


    .hero-qualifiers {
        grid-template-columns: 1fr;

        margin-top: 0;
    }


    .hero-qualifiers p + p {
        border-top: 1px solid rgba(201,149,47,.18);
        border-left: 0;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .section {
        padding-block: 72px;
    }

    .site-header {
        background: #070809;
    }

    .brand,
    .brand img {
        width: 154px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        padding-top: 112px;
        padding-bottom: 28px;
    }

    h1 {
        font-size: clamp(2.75rem, 13vw, 4.1rem);
        line-height: .96;
    }

    h2 {
        font-size: clamp(2.25rem, 10vw, 3.2rem);
    }

    .hero-lead {
        margin-top: 22px;
        font-size: .98rem;
    }

    .hero-actions {
        margin-top: 28px;
    }

    .hero-actions .button,
    .process-cta .button,
    .final-cta-action .button {
        width: 100%;
    }

    .cta-note {
        max-width: 100%;
    }

    .hero-qualifiers {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .hero-qualifiers p {
        padding: 13px 16px;
    }

    .hero-qualifiers p + p {
        border-top: 1px solid rgba(201,149,47,.18);
        border-left: none;
    }

    .recognition-layout,
    .credibility-layout,
    .preparation-layout,
    .final-cta-layout {
        gap: 46px;
    }

    .fit-panel {
        padding: 26px 22px;
    }

    .solution-item__summary {
        grid-template-columns: 42px 1fr;
        gap: 15px;
        padding-block: 22px;
        padding-right: 32px;
    }

    .solution-tag {
        grid-column: 2;
        justify-self: start;
    }

    .solution-item__summary:hover,
    .solution-item[open] > .solution-item__summary {
        padding-right: 32px;
        padding-left: 4px;
        background: transparent;
    }

    .section-action {
        justify-content: flex-start;
    }

    .process-list {
        grid-template-columns: 1fr;
        margin-top: 46px;
    }

    .process-step,
    .process-step + .process-step {
        padding: 25px 0;
        border-top: 1px solid rgba(201,149,47,.16);
        border-left: none;
    }

    .process-step:first-child {
        border-top: 0;
    }

    .process-step__number {
        margin-bottom: 18px;
    }

    .process-cta {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 34px;
    }

    .credibility-mark {
        width: 180px;
    }

    .objection {
        padding-bottom: 72px;
    }

    .objection-card {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 30px 22px;
    }

    .objection-index {
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }

    .objection-card .button {
        grid-column: auto;
        width: 100%;
    }

    .preparation-list {
        grid-template-columns: 1fr;
    }

    .preparation-list > div {
        min-height: 108px;
    }

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

    .footer-legal {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .whatsapp-floater {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-floater svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 380px) {
    h1 {
        font-size: 2.55rem;
    }
}

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
