:root {
    --cf-ink: #0c2f25;
    --cf-ink-soft: #36554c;
    --cf-green: #4cb476;
    --cf-green-dark: #123c2f;
    --cf-green-deep: #082c22;
    --cf-mint: #edf8f2;
    --cf-mint-strong: #dff2e7;
    --cf-orange: #f47b48;
    --cf-yellow: #ffd36a;
    --cf-white: #ffffff;
    --cf-border: rgba(18, 60, 47, .13);
    --cf-shadow: 0 28px 70px rgba(20, 65, 50, .14);
    --cf-radius: 30px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cf-white);
}

.cf-page,
.cf-page * {
    box-sizing: border-box;
}

.cf-page {
    overflow: clip;
    color: var(--cf-ink);
    background: var(--cf-white);
}

.cf-page h1,
.cf-page h2,
.cf-page h3,
.cf-page p,
.cf-page ol {
    margin: 0;
    padding: 0;
}

.cf-page h1,
.cf-page h2,
.cf-page h3,
.cf-page strong,
.cf-page p,
.cf-page span,
.cf-page small,
.cf-page summary {
    color: inherit;
}

.cf-section-shell {
    width: min(100% - 48px, 1240px);
    margin-inline: auto;
}

.cf-button {
    min-height: 58px;
    padding: 15px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, color .25s ease, background .25s ease, border-color .25s ease;
}

.cf-button svg {
    width: 21px;
    height: 21px;
    color: inherit;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.cf-button:hover,
.cf-button:focus-visible {
    transform: translateY(-3px);
    outline: none;
}

.cf-page .cf-button-primary {
    color: #fff;
    background: var(--cf-green);
    box-shadow: 0 14px 30px rgba(76, 180, 118, .25);
}

.cf-page .cf-button-primary svg,
.cf-page .cf-button-orange svg {
    color: #fff;
    stroke: #fff;
}

.cf-page .cf-button-primary:hover,
.cf-page .cf-button-primary:focus-visible {
    color: #fff;
    background: #399d61;
    box-shadow: 0 18px 36px rgba(51, 145, 89, .3);
}

.cf-button-secondary {
    border-color: rgba(18, 60, 47, .42);
    color: var(--cf-green-dark);
    background: rgba(255, 255, 255, .88);
}

.cf-button-secondary:hover,
.cf-button-secondary:focus-visible {
    border-color: var(--cf-green);
    color: var(--cf-green-dark);
    background: #fff;
    box-shadow: 0 14px 30px rgba(18, 60, 47, .12);
}

/* Hero */
.cf-hero {
    position: relative;
    height: calc(100svh - 80px);
    min-height: 720px;
    max-height: 900px;
    display: grid;
    place-items: center;
    isolation: isolate;
    background: #f7fcf9;
}

.cf-hero-image {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cf-hero-wash {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at center, rgba(255, 255, 255, .2) 0 28%, rgba(255, 255, 255, 0) 58%);
    pointer-events: none;
}

.cf-hero-content {
    width: min(92vw, 690px);
    margin-top: -22px;
    padding: 36px 28px;
    text-align: center;
}

.cf-hero h1 {
    max-width: 690px;
    margin-inline: auto;
    color: #071f18;
    font-size: clamp(52px, 5.7vw, 86px);
    font-weight: 800;
    letter-spacing: -.065em;
    line-height: .94;
}

.cf-hero h1 span {
    color: var(--cf-green);
}

.cf-hero-content > p {
    max-width: 590px;
    margin: 28px auto 0;
    color: #344a43;
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.55;
}

.cf-hero-actions {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.cf-hero-actions .cf-button {
    min-width: 228px;
}

.cf-hero-bridge {
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 92px;
    z-index: -1;
    height: 110px;
}

.cf-hero-bridge svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.cf-bridge-base,
.cf-bridge-line {
    fill: none;
    stroke-width: 4;
    vector-effect: non-scaling-stroke;
}

.cf-bridge-base {
    stroke: rgba(76, 180, 118, .16);
}

.cf-bridge-line {
    stroke: var(--cf-green);
    stroke-dasharray: 1300;
    stroke-dashoffset: 1300;
    animation: cfDrawBridge 1.8s .35s cubic-bezier(.22, .8, .25, 1) forwards;
}

.cf-bridge-dot {
    position: absolute;
    width: 13px;
    height: 13px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--cf-orange);
    box-shadow: 0 4px 14px rgba(244, 123, 72, .3);
    opacity: 0;
    animation: cfDotIn .45s 1.35s ease forwards;
}

.cf-bridge-dot-one { left: 18%; top: 70%; }
.cf-bridge-dot-two { right: 14%; top: 42%; animation-delay: 1.75s; }

.cf-scroll-cue {
    position: absolute;
    bottom: 22px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: var(--cf-green-dark);
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
    transform: translateX(-50%);
}

.cf-scroll-cue svg {
    width: 30px;
    height: 30px;
    padding: 6px;
    border: 1px solid rgba(18, 60, 47, .32);
    border-radius: 50%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    animation: cfNudge 1.8s ease-in-out infinite;
}

/* Candidate flow */
.cf-candidate {
    padding: 130px 0 145px;
    background: linear-gradient(180deg, #fff 0%, #f2faf6 55%, #fff 100%);
}

.cf-candidate-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
    gap: 48px;
    align-items: start;
}

.cf-section-heading {
    max-width: 560px;
}

.cf-section-heading h2,
.cf-employer-heading h2,
.cf-closing > .cf-section-shell > h2,
.cf-faq-grid > h2 {
    color: var(--cf-ink);
    font-size: clamp(42px, 4.5vw, 68px);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1.01;
}

.cf-section-heading > p {
    max-width: 510px;
    margin-top: 25px;
    color: var(--cf-ink-soft);
    font-size: 18px;
    line-height: 1.65;
}

.cf-steps {
    position: relative;
    margin-top: 54px;
    list-style: none;
}

.cf-steps::before {
    content: "";
    position: absolute;
    top: 29px;
    bottom: 34px;
    left: 24px;
    width: 2px;
    background: #d8e9df;
}

.cf-step {
    position: relative;
    min-height: 142px;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    color: #638078;
    transition: color .35s ease, transform .35s ease;
    cursor: pointer;
}

.cf-step:focus-visible { outline: 3px solid rgba(76, 180, 118, .45); outline-offset: 5px; border-radius: 10px; }

.cf-step-number {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    border: 1px solid #cee1d6;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--cf-green-dark);
    background: #f4fbf7;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 0 0 7px #f7fcf9;
    transition: color .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.cf-step h3 {
    margin-top: 2px;
    color: currentColor;
    font-size: 21px;
    font-weight: 760;
    line-height: 1.2;
}

.cf-step p {
    max-width: 400px;
    margin-top: 8px;
    color: currentColor;
    font-size: 15px;
    line-height: 1.55;
}

.cf-step.is-active {
    color: var(--cf-ink);
    transform: translateX(8px);
}

.cf-step.is-active .cf-step-number {
    border-color: var(--cf-green);
    color: #fff;
    background: var(--cf-green);
    box-shadow: 0 0 0 7px rgba(76, 180, 118, .12), 0 8px 22px rgba(76, 180, 118, .25);
}

.cf-candidate-cta {
    margin-top: 6px;
}

.cf-button .cf-whatsapp-icon {
    color: #fff;
    fill: #fff;
    stroke: none;
}

.cf-candidate-cta > .cf-whatsapp-icon { display: none; }
.cf-candidate-cta::before,
.cf-result-whatsapp::before {
    content: "";
    display: block;
    flex: 0 0 auto;
    background: url('../img/whatsapp-oficial-branco.svg') center / contain no-repeat;
}
.cf-candidate-cta::before { width: 21px; height: 21px; }

.cf-candidate-demo {
    position: sticky;
    top: 100px;
    min-height: 760px;
}

.cf-portrait-shape {
    position: absolute;
    left: 0;
    bottom: 68px;
    width: 310px;
    height: 490px;
    border-radius: 160px 160px 50px 50px;
    background: linear-gradient(160deg, var(--cf-yellow), #ffc14c 48%, var(--cf-orange));
    transform: rotate(-4deg);
}

.cf-worker {
    position: absolute;
    left: -66px;
    bottom: 0;
    z-index: 1;
    width: 430px;
    height: 645px;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 26px 30px rgba(16, 54, 42, .16));
}

.cf-phone {
    position: absolute;
    top: 5px;
    right: 0;
    z-index: 2;
    width: 335px;
    height: 700px;
    border: 9px solid #17221e;
    border-radius: 48px;
    overflow: hidden;
    color: #17241f;
    background: #f4f1ea;
    box-shadow: var(--cf-shadow), inset 0 0 0 1px #394640;
}

.cf-phone-top {
    position: relative;
    height: 34px;
    padding: 9px 17px 0 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: #14231d;
    background: linear-gradient(#fff, #fbfcfb);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .1px;
    box-shadow: inset 0 -1px 0 rgba(20, 35, 29, .035);
}

.cf-phone-time,
.cf-phone-status { position: relative; z-index: 1; }
.cf-dynamic-island {
    position: absolute;
    top: 5px;
    left: 50%;
    width: 66px;
    height: 17px;
    border-radius: 999px;
    background: #050706;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04), 0 1px 2px rgba(0, 0, 0, .12);
    transform: translateX(-50%);
}

.cf-phone-status { display: inline-flex; align-items: center; gap: 5px; color: #17221e; }
.cf-phone-status svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.cf-status-signal { width: 16px; height: 11px; }
.cf-status-wifi { width: 14px; height: 11px; }
.cf-status-battery { position: relative; width: 18px; height: 9px; border: 1.35px solid currentColor; border-radius: 2.5px; display: block; }
.cf-status-battery::after { content: ""; position: absolute; top: 2px; right: -3px; width: 2px; height: 4px; border-radius: 0 1px 1px 0; background: currentColor; }
.cf-status-battery i { display: block; width: 12px; height: 5px; margin: 1px; border-radius: 1px; background: currentColor; }

.cf-chat-head {
    height: 66px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #12251d;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.cf-chat-logo {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    display: block;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(18, 60, 47, .15);
    flex: 0 0 auto;
}

.cf-chat-head div { display: flex; flex-direction: column; }
.cf-chat-head strong { font-size: 14px; }
.cf-chat-head small { color: #718078; font-size: 10px; }
.cf-chat-body {
    height: 520px;
    padding: 16px 12px;
    overflow: hidden;
    background-color: #f3efe7;
    background-image: radial-gradient(rgba(18, 60, 47, .055) .7px, transparent .7px);
    background-size: 8px 8px;
}

.cf-chat-day {
    width: max-content;
    margin: 0 auto 11px;
    padding: 4px 10px;
    border-radius: 8px;
    color: #718078;
    background: rgba(255, 255, 255, .8);
    font-size: 9px;
}

.cf-bubble {
    position: relative;
    width: fit-content;
    max-width: 84%;
    margin-bottom: 9px;
    padding: 9px 10px 15px;
    border-radius: 8px;
    color: #25332d;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
    font-size: 11px;
    line-height: 1.35;
    opacity: 0;
    transform: translateY(12px) scale(.98);
    transition: opacity .45s ease, transform .45s ease;
}

.cf-bubble.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cf-bubble-sent {
    margin-left: auto;
    background: #d9f6ca;
}

.cf-bubble small {
    position: absolute;
    right: 6px;
    bottom: 3px;
    color: #75827b;
    font-size: 7px;
}

.cf-chat-input {
    height: 51px;
    margin: 5px 7px 9px;
    padding-left: 16px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #919993;
    background: #fff;
    font-size: 11px;
}

.cf-chat-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.cf-paperclip {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #718078;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cf-mic {
    width: 35px;
    height: 35px;
    margin-right: 7px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--cf-green);
}

.cf-mic svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Employer flow */
.cf-employer {
    position: relative;
    padding: 120px 0 0;
    color: #fff;
    background: var(--cf-green-deep);
    isolation: isolate;
}

.cf-employer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .36;
    background-image: radial-gradient(rgba(255, 255, 255, .16) .6px, transparent .6px);
    background-size: 7px 7px;
    mask-image: linear-gradient(110deg, transparent 20%, #000 58%, transparent 96%);
}

.cf-employer-heading {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 70px;
    align-items: end;
}

.cf-employer-heading h2 {
    color: #fff;
}

.cf-employer-heading h2 span {
    color: var(--cf-green);
}

.cf-employer-heading > div > p {
    max-width: 540px;
    margin-top: 22px;
    color: #b9d3c9;
    font-size: 18px;
    line-height: 1.6;
}

.cf-employer-steps {
    display: grid;
    gap: 16px;
    list-style: none;
}

.cf-employer-steps li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    align-items: center;
}

.cf-employer-steps li > span {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(76, 180, 118, .55);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(76, 180, 118, .15);
    font-size: 14px;
    font-weight: 800;
}

.cf-employer-steps li div { display: flex; flex-direction: column; gap: 2px; }
.cf-employer-steps strong { color: #fff; font-size: 17px; }
.cf-employer-steps small { color: #9ebeb1; font-size: 13px; line-height: 1.45; }

.cf-search-stage {
    position: relative;
    min-height: 790px;
    margin-top: 74px;
}

.cf-search-window {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: calc(100% - 300px);
    min-height: 760px;
    padding: 0 18px 18px;
    border: 1px solid rgba(160, 219, 189, .3);
    border-radius: var(--cf-radius);
    overflow: hidden;
    color: #1e293b;
    background: #f4f7f5;
    box-shadow: 0 36px 90px rgba(0, 0, 0, .27);
}

.cf-window-top {
    height: 58px;
    margin: 0 -18px;
    padding: 0 18px;
    border-bottom: 1px solid #e4e9e6;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    color: #53645d;
    background: #fff;
    font-size: 12px;
}

.cf-window-top > img { width: 150px; height: 30px; object-fit: contain; object-position: left center; justify-self: start; }
.cf-window-label { color: #52635c; font-size: 11px; font-weight: 700; }
.cf-window-dots { display: flex; gap: 6px; }
.cf-window-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--cf-orange); }
.cf-window-dots i:nth-child(2) { background: var(--cf-yellow); }
.cf-window-dots i:nth-child(3) { background: var(--cf-green); }

.cf-search-panel {
    margin-top: 16px;
    padding: 14px;
    border: 1px solid #e1e7e3;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
}

.cf-search-panel-head {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cf-search-panel-head > div { display: flex; flex-direction: column; gap: 3px; }
.cf-search-panel-head strong { color: #1e293b; font-size: 14px; line-height: 1.25; }
.cf-search-panel-head > div > span { color: #64748b; font-size: 10px; font-weight: 650; }

.cf-ai-toggle {
    min-height: 26px;
    padding: 3px 8px 3px 4px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    background: #b9c0ca;
    font-size: 8px;
    font-weight: 750;
    white-space: nowrap;
}

.cf-ai-toggle { display: none; }

.cf-ai-toggle > i { width: 19px; height: 19px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(15, 23, 42, .18); }
.cf-ai-toggle svg { width: 12px; height: 12px; fill: currentColor; }
.cf-search-controls { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }

.cf-search-box {
    min-width: 0;
    height: 44px;
    padding: 0 13px;
    border: 1.5px solid var(--cf-green);
    border-radius: 9px;
    display: flex;
    align-items: center;
    gap: 0;
    color: #1e293b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(76, 180, 118, .1);
    font-size: 14px;
}

.cf-search-box svg { width: 18px; height: 18px; margin-right: 13px; color: #64748b; }
.cf-search-box svg,
.cf-price-details svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.cf-search-box i {
    width: 1px;
    height: 20px;
    margin-left: 2px;
    background: #17221e;
    animation: cfCaret 1s steps(1) infinite;
}

.cf-page .cf-search-submit {
    min-width: 154px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--cf-green), #3ba164);
    box-shadow: 0 5px 13px rgba(76, 180, 118, .18);
    font-size: 11px;
    font-weight: 750;
    white-space: nowrap;
}

.cf-submit-short { display: none; }

.cf-candidate-row {
    min-height: 172px;
    margin-top: 11px;
    padding: 13px 14px;
    border: 1px solid #e9eeeb;
    border-radius: 12px;
    color: #334155;
    background: #fff;
    box-shadow: 0 5px 15px rgba(15, 23, 42, .028);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease, border-color .25s ease, background .25s ease;
}

.cf-search-stage.is-animated .cf-candidate-row { opacity: 1; transform: translateY(0); }
.cf-search-stage.is-animated .cf-candidate-row[data-result="2"] { transition-delay: .14s; }
.cf-search-stage.is-animated .cf-candidate-row[data-result="3"] { transition-delay: .28s; }
.cf-search-stage.is-animated .cf-candidate-row.is-refreshing { opacity: 0; transform: translateY(12px); transition-delay: 0s; }

.cf-candidate-row-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cf-candidate-name { min-width: 0; display: flex; align-items: center; gap: 6px; }
.cf-candidate-name strong { color: #1e293b; font-size: 14px; white-space: nowrap; }
.cf-ddd,
.cf-new { padding: 4px 6px; border-radius: 5px; color: #526276; background: #f1f5f9; font-size: 8px; font-weight: 750; white-space: nowrap; }
.cf-new { color: #2f8450; background: #eaf7ef; box-shadow: inset 0 0 0 1px #cfead9; }
.cf-result-actions { display: flex; align-items: center; justify-content: flex-end; gap: 6px; margin-left: auto; }
.cf-result-action { min-height: 30px; padding: 0 9px; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; gap: 5px; font-size: 8px; font-weight: 750; white-space: nowrap; }
.cf-result-action svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.cf-result-action-secondary { border: 1px solid #e2e8f0; color: #536277; background: #f8fafc; }
.cf-page .cf-result-whatsapp { color: #fff; background: linear-gradient(135deg, var(--cf-green), #3ba164); }
.cf-page .cf-result-whatsapp svg { display: none; }
.cf-result-whatsapp::before { width: 13px; height: 13px; }
.cf-result-action-secondary { display: none; }
.cf-candidate-row > p { width: 100%; margin: 13px 0 0; color: #506178; font-size: 13.5px; line-height: 1.58; }
.cf-candidate-row > p strong,
.cf-candidate-row > p b { color: #1e293b; font-weight: 750; }

.cf-manager {
    position: absolute;
    right: -85px;
    bottom: 24px;
    z-index: 3;
    width: 420px;
    height: 630px;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(-20px 26px 35px rgba(0, 0, 0, .34));
}

.cf-price-band {
    position: relative;
    z-index: 4;
    min-height: 180px;
    margin-top: 0;
    padding: 35px 0;
    border-top: 1px solid rgba(166, 219, 191, .2);
    display: grid;
    grid-template-columns: 1.05fr .9fr auto;
    gap: 42px;
    align-items: center;
}

.cf-price-copy { display: flex; align-items: baseline; gap: 16px; }
.cf-price-copy > span { color: #d5e9df; font-size: 25px; white-space: nowrap; }
.cf-price-copy strong { color: var(--cf-yellow); font-size: clamp(48px, 5.4vw, 74px); font-weight: 800; letter-spacing: -.06em; line-height: 1; white-space: nowrap; }
.cf-price-details { display: grid; gap: 14px; }
.cf-price-details span { display: flex; align-items: center; gap: 11px; color: #edf8f2; font-size: 14px; }
.cf-price-details svg { width: 22px; height: 22px; color: var(--cf-yellow) !important; stroke: var(--cf-yellow) !important; }
.cf-price-details svg * { stroke: var(--cf-yellow) !important; }

.cf-page .cf-button-orange {
    min-width: 240px;
    color: #fff;
    background: var(--cf-green);
    box-shadow: 0 18px 38px rgba(76, 180, 118, .22);
}

.cf-page .cf-button-orange:hover,
.cf-page .cf-button-orange:focus-visible { color: #fff; background: #5bc586; box-shadow: 0 20px 42px rgba(76, 180, 118, .32); }

/* Closing */
.cf-closing {
    padding-top: 125px;
    color: var(--cf-ink);
    background: #fff;
}

.cf-closing > .cf-section-shell > h2 { text-align: center; }

.cf-choice-line {
    position: relative;
    width: min(74%, 880px);
    height: 80px;
    margin: 7px auto -14px;
    border-top: 2px solid var(--cf-green);
    border-right: 2px solid var(--cf-orange);
    border-left: 2px solid var(--cf-green);
    border-radius: 90px 90px 0 0;
}

.cf-choice-line span {
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--cf-green);
    transform: translateX(-50%);
}

.cf-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

.cf-choice {
    min-height: 280px;
    padding: 0 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cf-choice-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--cf-green-dark);
    background: var(--cf-mint-strong);
}

.cf-choice-hire .cf-choice-icon { color: #cf5c2f; background: #fff2d2; }
.cf-choice-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cf-choice h3 { margin-top: 18px; color: var(--cf-ink); font-size: 26px; font-weight: 780; letter-spacing: -.025em; }
.cf-choice p { max-width: 340px; margin-top: 8px; color: var(--cf-ink-soft); font-size: 16px; line-height: 1.55; }
.cf-choice .cf-button { min-width: 220px; margin-top: 22px; }

.cf-faq-band {
    padding: 80px 0;
    background: var(--cf-mint);
}

.cf-faq-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 80px;
    align-items: start;
}

.cf-faq-grid > h2 { font-size: clamp(38px, 4.1vw, 58px); }
.cf-faq { display: grid; gap: 12px; }

.cf-faq details {
    border: 1px solid rgba(18, 60, 47, .1);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 8px 30px rgba(18, 60, 47, .06);
}

.cf-faq details[open] { border-left: 3px solid var(--cf-green); }
.cf-faq summary { min-height: 66px; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--cf-ink); font-size: 16px; font-weight: 750; cursor: pointer; list-style: none; }
.cf-faq summary::-webkit-details-marker { display: none; }
.cf-faq summary span { position: relative; width: 17px; height: 17px; flex: 0 0 auto; }
.cf-faq summary span::before,
.cf-faq summary span::after { content: ""; position: absolute; top: 8px; left: 1px; width: 15px; height: 2px; background: var(--cf-green-dark); transition: transform .25s ease; }
.cf-faq summary span::after { transform: rotate(90deg); }
.cf-faq details[open] summary span::after { transform: rotate(0); }
.cf-faq details p { padding: 0 22px 20px; color: var(--cf-ink-soft); font-size: 14px; line-height: 1.6; }

.cf-final-line {
    min-height: 250px;
    padding: 58px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    background: #fff;
}

.cf-final-line > span { position: relative; width: 45px; height: 45px; }
.cf-final-line > span::before,
.cf-final-line > span::after { content: ""; position: absolute; left: 0; width: 39px; height: 5px; border-radius: 5px; background: var(--cf-orange); transform-origin: right; }
.cf-final-line > span::before { top: 10px; transform: rotate(15deg); }
.cf-final-line > span::after { bottom: 10px; transform: rotate(-15deg); }
.cf-final-line p { position: relative; color: var(--cf-ink); font-size: clamp(34px, 4.2vw, 58px); font-weight: 800; letter-spacing: -.05em; line-height: 1.05; }
.cf-final-line p::after { content: ""; position: absolute; right: 2%; bottom: -15px; width: 63%; height: 7px; border-radius: 50%; border-top: 4px solid var(--cf-yellow); transform: rotate(-1deg); }
.cf-mobile-break { display: none; }

/* Reveal motion */
.cf-page [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s cubic-bezier(.2, .7, .2, 1), transform .75s cubic-bezier(.2, .7, .2, 1);
}

.cf-page [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes cfDrawBridge { to { stroke-dashoffset: 0; } }
@keyframes cfDotIn { to { opacity: 1; transform: scale(1); } }
@keyframes cfNudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@keyframes cfCaret { 50% { opacity: 0; } }

@media (min-width: 1440px) {
    .cf-candidate-grid {
        width: min(100% - 96px, 1440px);
        grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
        gap: 64px;
    }

    .cf-section-heading { max-width: 650px; }
    .cf-section-heading h2 { font-size: 64px; }
    .cf-section-heading h2 > span { white-space: nowrap; }
    .cf-section-heading > p { max-width: 590px; }
    .cf-step p { max-width: 510px; }
}

@media (min-width: 681px) and (max-width: 1439px) {
    .cf-hero {
        height: min(900px, calc(100svh - 80px));
        min-height: 720px;
        max-height: 900px;
    }

    .cf-hero-image {
        object-fit: contain;
        object-position: center bottom;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .cf-hero-wash {
        inset: auto 0 0;
        height: min(100%, 47.34vw);
        background: linear-gradient(to bottom, #f7fcf9 0%, rgba(247, 252, 249, .88) 5%, rgba(247, 252, 249, .42) 11%, rgba(247, 252, 249, 0) 18%);
    }

    .cf-hero-content {
        margin-top: -12px;
    }
}

@media (min-width: 901px) and (max-width: 1120px) {
    #topo .sanduiche {
        display: none !important;
    }
}

@media (max-width: 1120px) {
    .cf-hero-content { width: min(88vw, 620px); }
    .cf-candidate-grid { grid-template-columns: .9fr 1.1fr; gap: 24px; }
    .cf-candidate-demo { transform: scale(.9); transform-origin: top right; }
    .cf-search-window { width: 100%; }
    .cf-manager { display: none; }
    .cf-result-action-secondary { width: 30px; padding-inline: 0; }
    .cf-result-action-secondary > span { display: none; }
    .cf-result-actions { margin-right: 0; }
    .cf-price-band { gap: 24px; }
}

@media (max-width: 1024px) {
    .cf-section-shell { width: min(100% - 36px, 760px); }
    .cf-hero {
        height: clamp(700px, calc(100svh - 60px), 780px);
        min-height: 700px;
        max-height: 780px;
    }
    .cf-hero-content { margin-top: -15px; }
    .cf-hero-actions .cf-button { min-width: 210px; }
    .cf-hero-bridge { left: 8%; right: 8%; }

    .cf-candidate { padding: 58px 0 72px; }
    .cf-candidate-grid { display: block; }
    .cf-section-heading { max-width: 680px; }
    .cf-section-heading > p { max-width: 620px; }
    .cf-steps { max-width: 620px; margin-top: 34px; }
    .cf-step { min-height: 112px; }
    .cf-candidate-demo { position: relative; top: auto; width: min(100%, 680px); min-height: 700px; margin: 48px auto 0; transform: none; }
    .cf-worker { left: -10px; }

    .cf-employer { padding-top: 95px; }
    .cf-employer-heading { grid-template-columns: 1fr; gap: 45px; }
    .cf-employer-steps { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .cf-employer-steps li { grid-template-columns: 40px 1fr; }
    .cf-search-stage { min-height: 790px; margin-top: 60px; }
    .cf-search-window { width: 100%; }
    .cf-manager { display: none; }
    .cf-price-band { margin-top: 0; grid-template-columns: 1fr 1fr; }
    .cf-price-band .cf-button { grid-column: 1 / -1; width: min(100%, 360px); justify-self: center; }

    .cf-closing { padding-top: 95px; }
    .cf-choice-line { width: 70%; }
    .cf-choices { gap: 30px; }
    .cf-choice { padding-inline: 10px; }
    .cf-faq-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 680px) {
    html { scroll-padding-top: 60px; }
    .cf-section-shell { width: min(100% - 30px, 560px); }
    .cf-button { width: 100%; min-height: 56px; padding: 14px 20px; font-size: 14px; }

    .cf-hero {
        height: auto;
        min-height: auto;
        max-height: none;
        padding: 54px 18px 0;
        display: flex;
        flex-direction: column;
        background: linear-gradient(180deg, #f3faf6 0%, #fff 72%);
    }

    .cf-hero-image {
        position: relative;
        inset: auto;
        order: 3;
        z-index: -1;
        width: calc(100% + 36px);
        height: auto;
        margin: 28px -18px 0;
        object-fit: contain;
    }

    .cf-hero-wash,
    .cf-hero-bridge { display: none; }
    .cf-hero-content { order: 1; width: 100%; margin: 0; padding: 0; }
    .cf-hero h1 { font-size: clamp(43px, 13vw, 60px); line-height: .98; }
    .cf-hero-content > p { margin-top: 22px; font-size: 16px; line-height: 1.5; }
    .cf-hero-actions { margin-top: 26px; flex-direction: column; gap: 10px; }
    .cf-hero-actions .cf-button { min-width: 0; }
    .cf-scroll-cue { position: relative; bottom: auto; left: auto; order: 4; margin: 18px 0 24px; transform: none; }

    .cf-candidate { padding: 46px 0 54px; }
    .cf-section-heading h2,
    .cf-employer-heading h2,
    .cf-closing > .cf-section-shell > h2,
    .cf-faq-grid > h2 { font-size: clamp(34px, 8vw, 40px); }
    .cf-section-heading h2 br { display: none; }
    .cf-section-heading > p { margin-top: 14px; font-size: 14px; line-height: 1.45; }
    .cf-steps { margin-top: 22px; }
    .cf-step { min-height: 88px; grid-template-columns: 38px 1fr; gap: 11px; }
    .cf-steps::before { top: 20px; bottom: 24px; left: 18px; }
    .cf-step-number { width: 38px; height: 38px; font-size: 15px; box-shadow: 0 0 0 4px #f7fcf9; }
    .cf-step h3 { font-size: 17px; }
    .cf-step p { margin-top: 4px; font-size: 12.5px; line-height: 1.38; }
    .cf-step.is-active { transform: translateX(3px); }
    .cf-candidate-cta { margin-top: 8px; }
    .cf-candidate-demo { min-height: 600px; margin-top: 32px; }
    .cf-portrait-shape { left: -54px; bottom: 0; width: 240px; height: 400px; }
    .cf-worker { left: -94px; bottom: -35px; width: 330px; height: 500px; }
    .cf-phone { top: 0; right: -6px; width: min(77vw, 300px); height: 610px; border-width: 7px; border-radius: 40px; }
    .cf-chat-body { height: 428px; }
    .cf-bubble { font-size: 10px; }

    .cf-employer { padding-top: 82px; }
    .cf-employer-heading { gap: 38px; }
    .cf-employer-heading h2 br { display: none; }
    .cf-employer-heading > div > p { margin-top: 18px; font-size: 16px; }
    .cf-employer-steps { grid-template-columns: 1fr; }
    .cf-employer-steps small { font-size: 12px; }
    .cf-search-stage { min-height: 0; margin-top: 48px; }
    .cf-search-window { position: relative; min-height: 0; padding: 0 10px 10px; border-radius: 22px; }
    .cf-window-top { height: 48px; margin: 0 -10px; padding: 0 10px; grid-template-columns: 1fr; font-size: 9px; }
    .cf-window-top > img { width: 106px; height: 22px; }
    .cf-window-label { font-size: 8px; }
    .cf-window-dots { gap: 4px; }
    .cf-window-dots i { width: 6px; height: 6px; }
    .cf-search-panel { margin-top: 10px; padding: 10px; }
    .cf-search-panel-head { margin-bottom: 8px; gap: 8px; }
    .cf-search-panel-head strong { font-size: 12px; }
    .cf-search-panel-head > div > span { font-size: 8px; }
    .cf-ai-toggle { min-height: 22px; padding-right: 6px; font-size: 7px; }
    .cf-ai-toggle > i { width: 15px; height: 15px; }
    .cf-ai-toggle svg { display: none; }
    .cf-search-controls { grid-template-columns: minmax(0, 1fr) 68px; gap: 6px; }
    .cf-search-box { height: 40px; margin: 0; padding-inline: 10px; gap: 7px; font-size: 11px; }
    .cf-search-box svg { width: 15px; height: 15px; }
    .cf-page .cf-search-submit { min-width: 68px; min-height: 40px; padding-inline: 6px; font-size: 9px; text-align: center; }
    .cf-submit-full { display: none; }
    .cf-submit-short { display: inline; }
    .cf-candidate-row { min-height: 154px; margin-top: 8px; padding: 10px; }
    .cf-candidate-row-top { gap: 7px; }
    .cf-candidate-name { gap: 4px; }
    .cf-candidate-name strong { font-size: 11px; }
    .cf-ddd,
    .cf-new { padding: 3px 4px; font-size: 6px; }
    .cf-result-actions { gap: 4px; }
    .cf-result-action-secondary { display: none; }
    .cf-page .cf-result-whatsapp { min-height: 27px; padding: 0 7px; }
    .cf-result-whatsapp span { display: none; }
    .cf-result-whatsapp::after { content: "WhatsApp"; }
    .cf-candidate-row > p { margin-top: 9px; display: -webkit-box; overflow: hidden; font-size: 10.5px; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
    .cf-manager { display: none; }
    .cf-price-band { margin-top: 0; padding: 34px 0 42px; grid-template-columns: 1fr; gap: 25px; }
    .cf-price-copy { flex-direction: column; gap: 5px; }
    .cf-price-copy > span { font-size: 18px; }
    .cf-price-copy strong { font-size: 58px; }
    .cf-price-details span { font-size: 13px; }
    .cf-price-band .cf-button { grid-column: auto; width: 100%; }

    .cf-closing { padding-top: 80px; }
    .cf-choice-line { width: 2px; height: 54px; margin: 12px auto 0; border: 0; background: linear-gradient(var(--cf-green), var(--cf-orange)); }
    .cf-choice-line span { top: -6px; }
    .cf-choices { grid-template-columns: 1fr; gap: 55px; margin-bottom: 80px; }
    .cf-choice { min-height: 0; padding: 0; }
    .cf-choice h3 { font-size: 23px; }
    .cf-faq-band { padding: 66px 0; }
    .cf-faq-grid { gap: 30px; }
    .cf-faq summary { min-height: 62px; padding: 17px; font-size: 14px; }
    .cf-faq details p { padding: 0 17px 17px; font-size: 13px; }
    .cf-final-line { min-height: 210px; padding: 48px 20px; gap: 18px; }
    .cf-final-line > span { width: 32px; height: 38px; flex: 0 0 32px; }
    .cf-final-line > span::before,
    .cf-final-line > span::after { width: 30px; height: 4px; }
    .cf-final-line p { font-size: clamp(31px, 9vw, 42px); }
    .cf-mobile-break { display: block; }

    #homeRodape.mgTop70 { margin-top: 0 !important; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .cf-page *,
    .cf-page *::before,
    .cf-page *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .cf-page [data-reveal],
    .cf-bubble,
    .cf-candidate-row { opacity: 1; transform: none; }
    .cf-bridge-line { stroke-dashoffset: 0; }
}
