/*
 * Local Orbit — neo-editorial tecnológico da Hostmoon.
 * Assimetria, midnight profundo, verde lunar para progresso e roxo para decisão.
 */

:root {
    --night: #070a12;
    --night-soft: #0d111d;
    --ink: #111827;
    --paper: #f4f6f3;
    --white: #f8fbf6;
    --muted: #a8b0bd;
    --muted-dark: #5d6672;
    --line: rgba(255, 255, 255, 0.13);
    --line-dark: rgba(17, 24, 39, 0.14);
    --green: #84c94b;
    --green-bright: #a0ed62;
    --green-ink: #1e3513;
    --purple: #744f8a;
    --purple-deep: #523365;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
    --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    background: var(--night);
    color: var(--white);
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
    outline: 3px solid var(--green-bright);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    left: 18px;
    top: 18px;
    z-index: 1000;
    padding: 10px 16px;
    background: var(--green);
    color: var(--night);
    transform: translateY(-150%);
    transition: transform 160ms var(--ease-out);
    font-weight: 700;
}

.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 80;
    border-bottom: 1px solid transparent;
    transition: background 220ms var(--ease-out), border-color 220ms var(--ease-out), backdrop-filter 220ms var(--ease-out);
}

.site-header.is-scrolled {
    background: rgba(7, 10, 18, .88);
    border-bottom-color: var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand { width: 184px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }

.campaign-mark {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 20px;
    border-left: 1px solid var(--line);
    color: #c8ced8;
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.campaign-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(132, 201, 75, .12);
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav a {
    position: relative;
    color: #d6dae1;
    font-size: 13px;
    font-weight: 600;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 2px;
    background: var(--green);
    transition: right 180ms var(--ease-out);
}

.desktop-nav a:hover::after { right: 0; }

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .015em;
    transition: transform 160ms var(--ease-out), background 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: scale(.97); }
.button span { font-size: 18px; line-height: 1; }

.button-small { min-height: 42px; padding-inline: 18px; font-size: 12px; }

.button-primary {
    background: var(--green);
    color: var(--green-ink);
    box-shadow: 0 14px 34px rgba(132, 201, 75, .19);
}

.button-primary:hover { background: var(--green-bright); box-shadow: 0 18px 44px rgba(132, 201, 75, .28); }
.button-outline { border-color: rgba(255,255,255,.28); color: var(--white); background: rgba(255,255,255,.03); }
.button-outline:hover { border-color: var(--green); color: var(--green-bright); }
.button-dark { background: var(--night); color: var(--white); }
.button-dark:hover { background: var(--purple-deep); }
.button-full { width: 100%; }

.hero {
    position: relative;
    min-height: 790px;
    isolation: isolate;
    overflow: hidden;
    background: var(--night);
}

.hero-media,
.hero-media img,
.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; }
.hero-shade {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(7, 10, 18, .98) 0%, rgba(7, 10, 18, .92) 32%, rgba(7, 10, 18, .47) 55%, rgba(7, 10, 18, .08) 100%),
        linear-gradient(0deg, rgba(7, 10, 18, .82) 0%, transparent 32%);
}

.hero::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: .55;
}

.orbit {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(132, 201, 75, .18);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one { width: 580px; height: 580px; right: -220px; top: 60px; }
.orbit-two { width: 420px; height: 420px; left: -310px; top: 210px; border-color: rgba(116,79,138,.22); }

.hero-layout {
    position: relative;
    z-index: 3;
    min-height: 790px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr);
    align-items: center;
    gap: 8vw;
    padding-top: 116px;
    padding-bottom: 70px;
}

.hero-copy { max-width: 720px; }
.hero .reveal { opacity: 1; transform: none; }

.eyebrow {
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green-bright);
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow > span { width: 24px; height: 1px; background: currentColor; }
.eyebrow.dark { color: var(--purple-deep); }

h1, h2, h3, h4, p { margin-top: 0; }

h1, h2, h3, h4 {
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.02;
    letter-spacing: -.04em;
}

h1 {
    max-width: 800px;
    margin-bottom: 26px;
    font-size: clamp(3.1rem, 5.3vw, 5.55rem);
    font-weight: 700;
}

h1 em { color: var(--green); font-weight: 600; }

.hero-lead {
    max-width: 680px;
    margin-bottom: 34px;
    color: #d0d5de;
    font-size: clamp(1rem, 1.2vw, 1.17rem);
    line-height: 1.72;
}

.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.text-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
}

.text-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 1px;
    background: currentColor;
    transform: scaleX(.35);
    transform-origin: left;
    transition: transform 180ms var(--ease-out);
}

.text-link:hover::after { transform: scaleX(1); }
.text-link.light { color: var(--white); }
.hero .text-link { color: #eef2f4; }

.hero-assurance {
    margin-top: 30px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: #aeb6c3;
    font-size: 11px;
    font-weight: 600;
}

.hero-assurance span { display: flex; align-items: center; gap: 8px; }
.hero-assurance span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }

.hero-offer {
    align-self: end;
    margin-bottom: 22px;
    padding: 26px;
    background: linear-gradient(145deg, rgba(14,18,29,.86), rgba(10,13,22,.66));
    border: 1px solid rgba(255,255,255,.16);
    border-top-color: rgba(132,201,75,.55);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}

.offer-coordinate, .offer-status, .offer-label, .pricing-kicker, .pricing-status, .panel-label {
    font-family: "IBM Plex Mono", monospace;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.offer-coordinate { color: #7f8997; font-size: 9px; }
.offer-status { margin: 26px 0 44px; display: flex; gap: 8px; align-items: center; color: var(--green-bright); font-size: 9px; }
.offer-status span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(132,201,75,.12); }
.offer-label { margin-bottom: 4px; color: #bdc4ce; font-size: 10px; }
.offer-price { display: flex; align-items: flex-start; gap: 4px; font-family: "Space Grotesk", sans-serif; font-size: clamp(4.2rem, 6vw, 6.3rem); font-weight: 700; line-height: .95; letter-spacing: -.07em; }
.offer-price small { margin-top: 12px; font-size: 16px; letter-spacing: 0; }
.offer-payment { color: #8f98a6; font-size: 12px; }
.offer-separator { height: 1px; margin: 28px 0 18px; background: var(--line); }
.hero-offer dl { margin: 0; }
.hero-offer dl div { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.hero-offer dt { color: #8e97a4; font-size: 11px; }
.hero-offer dd { margin: 0; color: #edf1f4; text-align: right; font-size: 11px; font-weight: 700; }
.offer-footnote { margin: 16px 0 0; color: #77808d; font-size: 9px; line-height: 1.5; }

.clarity-strip { position: relative; z-index: 5; background: var(--green); color: var(--green-ink); }
.clarity-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.clarity-grid > div { min-height: 104px; display: flex; align-items: center; gap: 15px; padding: 22px; border-right: 1px solid rgba(30,53,19,.2); }
.clarity-grid > div:first-child { border-left: 1px solid rgba(30,53,19,.2); }
.clarity-grid strong { font-family: "IBM Plex Mono", monospace; font-size: 10px; }
.clarity-grid span { font-size: 12px; font-weight: 800; line-height: 1.35; }

.section { position: relative; padding: 130px 0; }
.problem-section, .deliverables-section, .eligibility-section { background: var(--paper); color: var(--ink); }
.problem-section::before, .deliverables-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(90deg, transparent, #000 35%, #000 100%);
    opacity: .22;
}

.problem-layout { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; align-items: start; }
.section-heading h2, .result-copy h2, .process-intro h2, .offer-story h2, .faq-intro h2, .final-cta h2 {
    margin-bottom: 24px;
    font-size: clamp(2.55rem, 4.6vw, 5rem);
    font-weight: 700;
}
.section-heading > p:last-child, .result-copy > p, .process-intro > p, .offer-story > p, .faq-intro > p { color: var(--muted-dark); font-size: 17px; }

.signal-list { border-top: 1px solid var(--line-dark); }
.signal-list article { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line-dark); }
.signal-index { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--purple); color: var(--purple-deep); font: 600 11px "IBM Plex Mono", monospace; }
.signal-list h3 { margin-bottom: 7px; font-size: 20px; letter-spacing: -.025em; }
.signal-list p { margin: 0; color: var(--muted-dark); font-size: 14px; }

.result-section { overflow: hidden; background: var(--night-soft); }
.result-section::after { content: ""; position: absolute; width: 620px; height: 620px; right: -340px; top: -180px; border: 1px solid rgba(132,201,75,.17); border-radius: 50%; }
.result-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 9vw; align-items: center; }
.result-copy { position: relative; z-index: 2; }
.result-copy > p { color: #aeb6c2; }

.profile-visual { position: relative; padding: 52px 0 36px 30px; }
.visual-orbit { position: absolute; width: 490px; height: 490px; border: 1px solid rgba(116,79,138,.4); border-radius: 50%; left: -110px; top: 0; }
.visual-orbit::after { content: ""; position: absolute; right: 37px; top: 37px; width: 12px; height: 12px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 8px rgba(132,201,75,.1); }
.profile-window { position: relative; z-index: 2; background: #f5f7f4; border: 1px solid rgba(255,255,255,.22); box-shadow: 0 35px 100px rgba(0,0,0,.48); transform: perspective(1000px) rotateY(4deg) rotateX(1deg); }
.window-top { height: 42px; padding: 0 16px; display: flex; align-items: center; gap: 7px; background: #111722; color: #77808d; font: 600 8px "IBM Plex Mono", monospace; letter-spacing: .08em; }
.window-top span { width: 7px; height: 7px; border-radius: 50%; background: #36404d; }
.window-top span:first-child { background: var(--purple); }
.window-top span:nth-child(2) { background: var(--green); }
.window-top b { margin-left: auto; font-weight: 600; }
.profile-cover { height: 185px; overflow: hidden; }
.profile-cover img { width: 100%; height: 100%; object-fit: cover; object-position: 75% 55%; }
.profile-content { position: relative; padding: 30px 26px 26px; }
.profile-avatar { position: absolute; left: 28px; top: -34px; width: 68px; height: 68px; border: 5px solid #f5f7f4; border-radius: 50%; background: linear-gradient(145deg, var(--purple), var(--green)); }
.profile-lines { margin-left: 90px; display: grid; gap: 8px; }
.profile-lines b, .profile-lines span { display: block; height: 8px; background: #d8dde0; }
.profile-lines b { width: 64%; height: 13px; background: #1c2530; }
.profile-lines span:nth-child(2) { width: 48%; }
.profile-actions { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; margin-top: 30px; }
.profile-actions i { height: 42px; border: 1px solid #dce1e0; background: #fff; position: relative; }
.profile-actions i::after { content: ""; position: absolute; width: 10px; height: 10px; border: 2px solid var(--purple); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.profile-services { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 18px; }
.profile-services span { height: 54px; background: #e7ebe8; }
.profile-services span:nth-child(2) { background: rgba(132,201,75,.18); }
.visual-caption { position: relative; z-index: 2; margin: 18px 0 0; color: #717b88; font-size: 10px; text-align: right; }

.check-list, .pricing-list { list-style: none; padding: 0; margin: 30px 0; }
.check-list li { display: flex; align-items: center; gap: 13px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: #d7dce4; font-size: 14px; }
.check-list span, .pricing-list span { color: var(--green); font-weight: 800; }

.deliverables-section { padding-top: 150px; }
.split-heading { position: relative; display: grid; grid-template-columns: 1.15fr .6fr; gap: 10vw; align-items: end; margin-bottom: 72px; }
.split-heading h2 { max-width: 740px; margin-bottom: 0; }
.split-heading > p { margin-bottom: 5px; }
.deliverables-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.deliverable-card { min-height: 280px; padding: 28px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: rgba(244,246,243,.7); transition: background 180ms var(--ease-out), transform 180ms var(--ease-out); }
.deliverable-card:hover { position: relative; z-index: 2; background: #fff; transform: translateY(-5px); }
.deliverable-card > span { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 52px; border: 1px solid var(--purple); color: var(--purple); font: 600 10px "IBM Plex Mono", monospace; }
.deliverable-card h3 { margin-bottom: 14px; font-size: 20px; }
.deliverable-card p { margin: 0; color: var(--muted-dark); font-size: 13px; }

.process-section { background: linear-gradient(145deg, #0d111c, #080b13); overflow: hidden; }
.process-section::before { content: "PROCESSO"; position: absolute; left: -20px; bottom: -75px; color: rgba(255,255,255,.025); font: 700 16vw "Space Grotesk", sans-serif; letter-spacing: -.08em; }
.process-layout { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; }
.process-intro { position: sticky; top: 125px; align-self: start; }
.process-intro > p { color: #aeb6c2; }
.no-password { margin-top: 38px; padding: 20px; border-left: 3px solid var(--green); background: rgba(132,201,75,.07); }
.no-password strong { display: block; margin-bottom: 8px; color: var(--green); font: 600 9px "IBM Plex Mono", monospace; letter-spacing: .12em; }
.no-password span { color: #c9ced6; font-size: 12px; }
.process-steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.process-steps li { display: grid; grid-template-columns: 80px 1fr; gap: 34px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.process-steps > li > span { color: var(--green); font: 600 12px "IBM Plex Mono", monospace; }
.process-steps h3 { margin-bottom: 10px; font-size: 27px; }
.process-steps p { margin: 0; color: #9ea7b4; font-size: 14px; }

.offer-section {
    isolation: isolate;
    overflow: hidden;
    background: radial-gradient(circle at 78% 28%, rgba(124,75,161,.42), transparent 34%), linear-gradient(126deg, #080b15 0%, #111020 48%, #351b48 100%);
    color: var(--white);
}
.offer-section::before { content: "DECISION PLANE"; position: absolute; z-index: -1; right: -22px; bottom: -58px; color: rgba(255,255,255,.025); font: 800 clamp(5rem, 13vw, 13rem)/.8 "Space Grotesk", sans-serif; letter-spacing: -.08em; white-space: nowrap; }
.offer-section::after { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .26; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 74px 74px; mask-image: linear-gradient(90deg, transparent, #000 32%, #000); }
.offer-layout { position: relative; display: grid; grid-template-columns: .76fr 1.24fr; gap: 8vw; align-items: center; }
.offer-section .section-coordinate { color: rgba(255,255,255,.5); }
.offer-section .eyebrow { color: var(--green); }
.offer-story { position: relative; z-index: 2; }
.offer-story > p:not(.eyebrow) { color: #b8bfca; }
.decision-orbit { position: absolute; z-index: -1; border: 1px solid rgba(132,201,75,.2); border-radius: 50%; pointer-events: none; }
.decision-orbit-a { width: 760px; height: 760px; left: -480px; top: -260px; border-right-color: transparent; transform: rotate(-22deg); }
.decision-orbit-b { width: 440px; height: 440px; right: -180px; bottom: -170px; border-top-color: transparent; border-left-color: rgba(124,75,161,.46); }
.decision-signal { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; margin: 28px 0 4px; color: #8d96a3; font: 600 8px "IBM Plex Mono", monospace; letter-spacing: .12em; }
.decision-signal i { height: 1px; background: linear-gradient(90deg, var(--green), rgba(132,201,75,.08)); }
.decision-signal strong { color: var(--green); font-weight: 600; }
.fit-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 30px 0; }
.fit-tags span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.045); color: #d7dce4; font: 600 10px "IBM Plex Mono", monospace; letter-spacing: .04em; text-transform: uppercase; }
.whatsapp-link { display: block; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); color: #aeb6c2; font-size: 13px; }
.whatsapp-link strong { color: var(--green); }

.pricing-card { position: relative; z-index: 3; padding: 42px; background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045)); border: 1px solid rgba(255,255,255,.2); box-shadow: 0 42px 120px rgba(0,0,0,.42), -28px 28px 0 rgba(124,75,161,.11); backdrop-filter: blur(20px); clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 0 100%); }
.pricing-card::before { content: "06"; position: absolute; right: 32px; bottom: 4px; color: rgba(255,255,255,.035); font: 800 8rem/.9 "Space Grotesk", sans-serif; letter-spacing: -.08em; }
.pricing-card::after { content: ""; position: absolute; top: 0; left: 0; width: 38%; height: 2px; background: var(--green); box-shadow: 0 0 26px rgba(132,201,75,.55); }
.pricing-card > * { position: relative; z-index: 2; }
.pricing-head { display: flex; justify-content: space-between; align-items: start; gap: 24px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.15); }
.pricing-kicker { display: block; margin-bottom: 10px; color: var(--green); font-size: 9px; }
.pricing-head h3 { margin: 0; font-size: 27px; }
.pricing-status { padding: 7px 10px; border: 1px solid rgba(132,201,75,.3); background: rgba(132,201,75,.1); color: var(--green-bright); font-size: 8px; }
.pricing-main { padding: 32px 0 12px; }
.pricing-value { display: flex; align-items: flex-start; font-family: "Space Grotesk", sans-serif; line-height: .9; }
.pricing-value small { margin: 9px 7px 0 0; font-size: 16px; font-weight: 700; }
.pricing-value strong { font-size: clamp(4.6rem, 7vw, 7.4rem); letter-spacing: -.08em; }
.pricing-value > span { margin-top: 9px; font-size: 20px; font-weight: 700; }
.pricing-main p { margin: 14px 0 0; color: #aeb6c2; font-size: 12px; }
.pricing-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 26px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.15); }
.pricing-list li { display: flex; gap: 10px; padding: 10px 0; color: #d8dde5; font-size: 12px; }
.addon-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; margin: 12px 0 26px; padding: 22px; background: var(--night-soft); color: var(--white); }
.addon-panel > div:not(.addon-orbit) { position: relative; z-index: 2; }
.addon-panel span { color: var(--green); font: 600 8px "IBM Plex Mono", monospace; letter-spacing: .1em; }
.addon-panel h4 { margin: 7px 0 5px; font-size: 20px; }
.addon-panel p { margin: 0; color: #98a1ae; font-size: 11px; }
.addon-panel > strong { position: relative; z-index: 2; color: var(--green-bright); white-space: nowrap; font: 700 18px "Space Grotesk", sans-serif; }
.addon-orbit { position: absolute; width: 170px; height: 170px; right: -100px; top: -70px; border: 1px solid rgba(132,201,75,.24); border-radius: 50%; }
.secure-note { margin: 14px 0 0; color: #9fa8b5; text-align: center; font-size: 9px; }

.eligibility-section { padding-top: 110px; }
.eligibility-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; align-items: center; }
.eligibility-panel { padding: 32px; background: #e9ece7; border: 1px solid var(--line-dark); }
.panel-label { color: var(--purple-deep); font-size: 9px; }
.eligibility-items { display: grid; grid-template-columns: 1fr 1fr; margin: 24px 0 28px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.eligibility-items span { padding: 15px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); font-size: 12px; font-weight: 700; }

.faq-section { background: #0a0d15; }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 10vw; }
.faq-intro { position: sticky; top: 125px; align-self: start; }
.faq-intro > p { color: #9ca5b2; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 54px 1fr 24px; gap: 20px; align-items: center; padding: 24px 0; color: #e9edf1; font-size: 15px; font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span { color: var(--green); font: 600 9px "IBM Plex Mono", monospace; }
.faq-item summary i { position: relative; width: 18px; height: 18px; }
.faq-item summary i::before, .faq-item summary i::after { content: ""; position: absolute; top: 8px; left: 2px; width: 14px; height: 1px; background: #c7cdd4; transition: transform 180ms var(--ease-out); }
.faq-item summary i::after { transform: rotate(90deg); }
.faq-item[open] summary i::after { transform: rotate(0); }
.faq-item > div { padding: 0 44px 24px 74px; }
.faq-item p { margin: 0; color: #9ea7b3; font-size: 14px; }

.final-cta { position: relative; overflow: hidden; padding: 120px 0; background: linear-gradient(120deg, var(--purple-deep), #2a1735 72%); }
.final-cta::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 64px 64px; }
.final-orbit { position: absolute; right: -140px; top: -270px; width: 680px; height: 680px; border: 1px solid rgba(132,201,75,.35); border-radius: 50%; }
.final-orbit::after { content: ""; position: absolute; width: 22px; height: 22px; left: 70px; bottom: 90px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 12px rgba(132,201,75,.12); }
.final-cta-inner { position: relative; z-index: 2; max-width: 970px; margin-left: calc((100vw - min(1180px, calc(100vw - 48px))) / 2); margin-right: auto; }
.final-cta-inner > img { width: 74px; height: 74px; object-fit: contain; margin-bottom: 32px; }
.final-cta h2 { max-width: 950px; }
.final-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 35px; }
.final-actions p { margin: 0; color: #d1c8d6; font-size: 11px; }

.site-footer { padding: 70px 0 28px; background: #05070c; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 12vw; padding-bottom: 55px; }
.footer-brand img { width: 200px; height: auto; margin-bottom: 24px; }
.footer-brand p { max-width: 430px; color: #7f8996; font-size: 13px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-links div { display: flex; flex-direction: column; align-items: start; gap: 10px; }
.footer-links span { margin-bottom: 7px; color: var(--green); font: 600 9px "IBM Plex Mono", monospace; letter-spacing: .12em; }
.footer-links a { color: #aab2bd; font-size: 12px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; color: #8d96a3; font-size: 9px; }

.mobile-checkout {
    display: none;
    position: fixed;
    z-index: 70;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 10px 10px 16px;
    background: rgba(7,10,18,.94);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 55px rgba(0,0,0,.42);
    transform: translateY(140%);
    transition: transform 220ms var(--ease-out);
}
.mobile-checkout.is-visible { transform: translateY(0); }
.mobile-checkout > div { display: grid; }
.mobile-checkout > div span { color: #8d96a3; font-size: 8px; text-transform: uppercase; }
.mobile-checkout > div strong { font: 700 20px "Space Grotesk", sans-serif; }
.mobile-checkout .button { min-height: 46px; padding-inline: 18px; }

.whatsapp-float {
    position: fixed;
    z-index: 80;
    right: 22px;
    bottom: calc(22px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    gap: 12px;
    color: #07120c;
    text-decoration: none;
    filter: drop-shadow(0 18px 30px rgba(0,0,0,.34));
}
.whatsapp-float-label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    padding: 11px 0 11px 0;
    border: 1px solid rgba(37,211,102,.42);
    background: rgba(7,10,18,.94);
    color: #e8edf2;
    font: 600 9px "IBM Plex Mono", monospace;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(12px);
    transition: max-width 220ms var(--ease-out), padding 220ms var(--ease-out), opacity 180ms var(--ease-out), transform 220ms var(--ease-out);
}
.whatsapp-float-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    flex: 0 0 58px;
    background: #25d366;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 50%;
    box-shadow: inset 0 0 0 5px rgba(7,18,12,.08), 0 0 0 7px rgba(37,211,102,.1);
    transition: transform 160ms var(--ease-out), box-shadow 180ms var(--ease-out);
}
.whatsapp-float-icon svg { width: 31px; height: 31px; }
.whatsapp-float:hover .whatsapp-float-label,
.whatsapp-float:focus-visible .whatsapp-float-label { max-width: 220px; padding-inline: 14px; opacity: 1; transform: translateX(0); }
.whatsapp-float:hover .whatsapp-float-icon { transform: translateY(-3px); box-shadow: inset 0 0 0 5px rgba(7,18,12,.08), 0 0 0 9px rgba(37,211,102,.14), 0 15px 30px rgba(37,211,102,.18); }
.whatsapp-float:active .whatsapp-float-icon { transform: scale(.97); }

.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out); }

.footer-cookie-link {
    appearance: none;
    padding: 0;
    border: 0;
    background: transparent;
    color: #aab2bd;
    font: inherit;
    font-size: 12px;
}
.footer-cookie-link:hover { color: var(--white); }

.consent-banner {
    position: fixed;
    z-index: 100;
    left: 22px;
    bottom: 22px;
    width: min(440px, calc(100vw - 44px));
    padding: 26px;
    background: rgba(7,10,18,.97);
    border: 1px solid rgba(132,201,75,.42);
    box-shadow: 0 26px 80px rgba(0,0,0,.48);
    backdrop-filter: blur(18px);
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}
.consent-banner[hidden] { display: none; }
.consent-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 2px;
    background: var(--green);
    box-shadow: 0 0 22px rgba(132,201,75,.4);
}
.consent-code { margin-bottom: 18px; color: var(--green); font: 600 8px "IBM Plex Mono", monospace; letter-spacing: .16em; }
.consent-banner h2 { margin: 0 0 12px; font: 700 26px/1.05 "Space Grotesk", sans-serif; letter-spacing: -.035em; }
.consent-banner > p { margin: 0; color: #aab2bd; font-size: 12px; line-height: 1.7; }
.consent-actions { display: flex; align-items: center; gap: 18px; margin-top: 22px; }
.consent-actions .button { min-height: 44px; padding-inline: 18px; font-size: 10px; }
.consent-essential { border: 0; background: transparent; color: #c8ced6; font-size: 11px; text-decoration: underline; text-underline-offset: 4px; }
.consent-essential:hover { color: var(--white); }
.consent-meta { display: flex; justify-content: space-between; gap: 20px; margin-top: 20px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.1); color: #737e8c; font: 600 8px "IBM Plex Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.consent-meta a { color: #9da7b4; }
.consent-meta a:hover { color: var(--green); }

/* Jornada orbital contínua — verde indica progresso; roxo, decisão. */
main { position: relative; }

.journey-rail {
    position: absolute;
    z-index: 18;
    top: 760px;
    bottom: 420px;
    left: max(38px, calc((100vw - min(1180px, calc(100vw - 48px))) / 2 - 42px));
    width: 24px;
    pointer-events: none;
}

.journey-rail::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 11px;
    width: 1px;
    background: repeating-linear-gradient(to bottom, rgba(132,201,75,.78) 0 24px, rgba(132,201,75,.09) 24px 46px);
    box-shadow: 0 0 18px rgba(132,201,75,.18);
}

.journey-node {
    position: absolute;
    left: 4px;
    top: var(--stage);
    width: 15px;
    height: 15px;
    border: 1px solid var(--green);
    border-radius: 50%;
    background: var(--night);
    box-shadow: 0 0 0 5px rgba(132,201,75,.09);
}

.journey-node::after {
    content: attr(data-stage);
    position: absolute;
    left: 24px;
    top: -2px;
    color: var(--green);
    font: 600 8px "IBM Plex Mono", monospace;
    letter-spacing: .08em;
}

.journey-node.is-destination {
    width: 19px;
    height: 19px;
    left: 2px;
    border-color: var(--purple);
    background: var(--green);
    box-shadow: 0 0 0 8px rgba(116,79,138,.2), 0 0 30px rgba(132,201,75,.28);
}

.section { isolation: isolate; }
.section > .shell { position: relative; }

.section-coordinate {
    position: absolute;
    z-index: 5;
    left: 0;
    top: -78px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: rgba(255,255,255,.42);
    font: 600 8px "IBM Plex Mono", monospace;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.section-coordinate span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid currentColor;
    color: var(--green);
    letter-spacing: 0;
}

.technical-white .section-coordinate { color: rgba(17,24,39,.44); }
.technical-white .section-coordinate span { color: var(--purple-deep); }

.technical-white > .shell::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 320px;
    height: 320px;
    right: -160px;
    top: -72px;
    border: 1px solid rgba(116,79,138,.12);
    border-radius: 50%;
    box-shadow: inset 0 0 0 42px rgba(116,79,138,.018), inset 0 0 0 84px rgba(132,201,75,.018);
}

.technical-white::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 520px;
    height: 520px;
    right: -330px;
    top: 18%;
    border: 1px solid rgba(116,79,138,.14);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(28deg);
    pointer-events: none;
}
.technical-white:nth-of-type(even)::after { right: auto; left: -360px; top: 42%; transform: rotate(-48deg); }
.technical-white .section-coordinate::after { content: ""; width: 48px; height: 1px; margin-left: 5px; background: linear-gradient(90deg, rgba(116,79,138,.48), transparent); }

.problem-layout .signal-list {
    margin-top: 54px;
    margin-right: -42px;
    padding-right: 42px;
    border-right: 1px solid rgba(116,79,138,.22);
}

.deliverables-grid {
    width: calc(100% - 44px);
    margin-left: 44px;
}

.deliverables-grid::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    left: -108px;
    top: -90px;
    border: 1px solid rgba(132,201,75,.35);
    border-radius: 50%;
    pointer-events: none;
}

.deliverable-card:nth-child(2),
.deliverable-card:nth-child(6) {
    top: -18px;
    background: rgba(255,255,255,.88);
    border-top: 3px solid var(--purple);
}

.deliverable-card:nth-child(4),
.deliverable-card:nth-child(8) { top: 18px; }

.offer-story { transform: translateY(-34px); }
.eligibility-panel { transform: translate(24px, 34px); box-shadow: -24px -24px 0 rgba(116,79,138,.055); }

.final-cta::after {
    content: "ATIVAR";
    position: absolute;
    right: -18px;
    bottom: -42px;
    color: rgba(255,255,255,.035);
    font: 700 clamp(7rem, 17vw, 16rem) "Space Grotesk", sans-serif;
    letter-spacing: -.08em;
    line-height: .8;
}

.final-cta-inner::before {
    content: "";
    position: absolute;
    left: -38px;
    top: 92px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(var(--green), rgba(132,201,75,.08));
    box-shadow: 0 0 22px rgba(132,201,75,.2);
}

.destination-coordinate {
    position: absolute;
    right: 0;
    top: 0;
    display: grid;
    justify-items: end;
    color: rgba(255,255,255,.58);
    font-family: "IBM Plex Mono", monospace;
    text-transform: uppercase;
}

.destination-coordinate span { color: var(--green); font-size: 8px; letter-spacing: .18em; }
.destination-coordinate strong { margin-top: 8px; font-size: 10px; letter-spacing: .12em; }
.destination-coordinate i { width: 86px; height: 1px; margin-top: 14px; background: linear-gradient(90deg, transparent, var(--green)); }

@media (max-width: 1020px) {
    :root { --shell: min(100% - 36px, 920px); }
    .desktop-nav { display: none; }
    .campaign-mark { margin-left: auto; }
    .hero { min-height: 880px; }
    .hero-layout { min-height: 880px; grid-template-columns: minmax(0, 1fr) 290px; gap: 36px; }
    .clarity-grid { grid-template-columns: 1fr 1fr; }
    .clarity-grid > div:nth-child(2) { border-right: none; }
    .clarity-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(30,53,19,.2); }
    .problem-layout, .result-layout, .process-layout, .offer-layout, .eligibility-layout, .faq-layout { gap: 6vw; }
    .deliverables-grid { grid-template-columns: repeat(2,1fr); }
    .pricing-list { grid-template-columns: 1fr; }
    .journey-rail { display: none; }
    .deliverables-grid { width: 100%; margin-left: 0; }
    .problem-layout .signal-list { margin-right: 0; padding-right: 0; }
}

@media (max-width: 760px) {
    :root { --shell: calc(100% - 32px); }
    html { scroll-padding-top: 74px; }
    body { padding-bottom: 80px; }
    .site-header { background: rgba(7,10,18,.76); backdrop-filter: blur(14px); }
    .header-inner { min-height: 70px; gap: 12px; }
    .brand { width: 145px; }
    .campaign-mark { display: none; }
    .header-inner > .button { margin-left: auto; min-height: 38px; padding-inline: 14px; font-size: 10px; }
    .hero { min-height: auto; }
    .hero-media { inset: 0 0 auto; height: 56%; }
    .hero-media img { object-position: 70% center; }
    .hero-shade { background: linear-gradient(0deg, var(--night) 38%, rgba(7,10,18,.2) 84%, rgba(7,10,18,.32) 100%), linear-gradient(90deg, rgba(7,10,18,.52), transparent); }
    .orbit-one { width: 340px; height: 340px; right: -190px; top: 120px; }
    .hero-layout { min-height: auto; display: block; padding-top: 290px; padding-bottom: 46px; }
    h1 { font-size: clamp(2.7rem, 12.8vw, 4rem); }
    .hero-lead { font-size: 15px; line-height: 1.65; }
    .hero-actions { display: grid; gap: 18px; }
    .hero-actions .button { width: 100%; }
    .hero .text-link { justify-self: start; }
    .hero-assurance { gap: 10px 16px; }
    .hero-offer { margin-top: 44px; margin-bottom: 0; }
    .offer-status { margin-bottom: 30px; }
    .offer-price { font-size: 5rem; }
    .clarity-grid { grid-template-columns: 1fr 1fr; }
    .clarity-grid > div { min-height: 92px; padding: 15px; gap: 10px; }
    .clarity-grid span { font-size: 10px; }
    .section { padding: 88px 0; }
    .problem-layout, .result-layout, .process-layout, .offer-layout, .eligibility-layout, .faq-layout, .split-heading, .footer-main { grid-template-columns: 1fr; gap: 52px; }
    .section-coordinate { display: none; }
    .section-heading h2, .result-copy h2, .process-intro h2, .offer-story h2, .faq-intro h2, .final-cta h2 { font-size: clamp(2.35rem, 11vw, 3.6rem); }
    .section-heading > p:last-child, .result-copy > p, .process-intro > p, .offer-story > p, .faq-intro > p { font-size: 15px; }
    .signal-list article { grid-template-columns: 46px 1fr; gap: 16px; }
    .result-layout { display: flex; flex-direction: column-reverse; }
    .profile-visual { padding: 28px 0 18px; }
    .profile-window { transform: none; }
    .visual-orbit { width: 330px; height: 330px; left: -150px; }
    .profile-cover { height: 128px; }
    .deliverables-section { padding-top: 96px; }
    .split-heading { margin-bottom: 42px; }
    .deliverables-grid { grid-template-columns: 1fr; }
    .deliverable-card { min-height: 0; }
    .deliverable-card:nth-child(2), .deliverable-card:nth-child(4), .deliverable-card:nth-child(6), .deliverable-card:nth-child(8) { top: 0; }
    .deliverable-card > span { margin-bottom: 34px; }
    .process-intro, .faq-intro { position: static; }
    .process-steps li { grid-template-columns: 50px 1fr; gap: 18px; padding: 30px 0; }
    .pricing-card { padding: 26px 20px; clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%); }
    .offer-section::after { background-size: 46px 46px; opacity: .18; }
    .decision-orbit-a { width: 440px; height: 440px; left: -310px; top: -100px; }
    .decision-orbit-b { width: 280px; height: 280px; right: -180px; bottom: -40px; }
    .decision-signal { margin-top: 22px; }
    .offer-story, .eligibility-panel { transform: none; }
    .pricing-head { display: grid; }
    .pricing-status { justify-self: start; }
    .pricing-value strong { font-size: 5rem; }
    .addon-panel { grid-template-columns: 1fr; }
    .addon-panel > strong { margin-top: 6px; }
    .eligibility-items { grid-template-columns: 1fr; }
    .faq-item summary { grid-template-columns: 34px 1fr 20px; gap: 10px; font-size: 13px; }
    .faq-item > div { padding: 0 20px 22px 44px; }
    .final-cta { padding: 88px 0; }
    .final-cta-inner { width: var(--shell); margin-inline: auto; }
    .destination-coordinate { position: static; align-items: start; justify-items: start; margin-bottom: 34px; }
    .final-cta-inner::before { display: none; }
    .final-orbit { width: 450px; height: 450px; right: -300px; }
    .final-actions { display: grid; }
    .final-actions .button { width: 100%; }
    .footer-main { gap: 42px; }
    .footer-links { gap: 24px; }
    .footer-bottom { display: grid; }
    .mobile-checkout { display: flex; }
    .whatsapp-float { right: 16px; bottom: calc(92px + env(safe-area-inset-bottom)); }
    .whatsapp-float-label { display: none; }
    .whatsapp-float-icon { width: 54px; height: 54px; flex-basis: 54px; }
    .consent-banner { left: 12px; bottom: 12px; width: calc(100vw - 24px); padding: 22px; }
    .consent-actions { display: grid; gap: 14px; }
    .consent-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    .reveal { opacity: 1; transform: none; }
}
