:root {
    --brand-blue: #1b378c;
    --brand-blue-dark: #14245f;
    --brand-cyan: #118ebf;
    --brand-cyan-soft: #eaf8fc;
    --ink: #172033;
    --muted: #5c667a;
    --line: #dce5ef;
    --surface: #ffffff;
    --surface-soft: #f4f8fb;
    --success: #128c7e;
    --shadow: 0 20px 55px rgba(27, 55, 140, 0.14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

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

a {
    color: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 72px 0;
}

.section-soft {
    background: var(--surface-soft);
}

.lp-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 12px max(16px, calc((100vw - 1120px) / 2));
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(220, 229, 239, 0.86);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: var(--brand-blue);
    font-weight: 800;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--brand-blue);
    font-weight: 800;
}

.brand-text {
    font-size: 1.06rem;
    letter-spacing: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn-primary {
    color: #ffffff;
    background: var(--brand-blue);
    box-shadow: 0 12px 24px rgba(27, 55, 140, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--brand-blue-dark);
}

.btn-secondary {
    color: #ffffff;
    background: var(--success);
}

.btn-outline {
    color: var(--brand-blue);
    background: #ffffff;
    border-color: var(--line);
}

.badge,
.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--brand-blue);
    background: var(--brand-cyan-soft);
    font-size: 0.84rem;
    font-weight: 800;
}

.eyebrow {
    margin-bottom: 14px;
}

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

h1 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(2.1rem, 5vw, 3.55rem);
    line-height: 1.04;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(1.75rem, 4.8vw, 3rem);
    line-height: 1.12;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
    line-height: 1.25;
}

p {
    color: var(--muted);
}

.lead {
    color: #33405a;
    font-size: 1.08rem;
}

.microcopy {
    margin: 12px 0 0;
    color: #647086;
    font-size: 0.95rem;
}

.hero {
    padding-top: 44px;
    background:
        linear-gradient(135deg, rgba(234, 248, 252, 0.92), rgba(255, 255, 255, 0.78) 48%, rgba(244, 248, 251, 0.9)),
        #ffffff;
}

.hero-grid,
.split,
.form-grid,
.cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
}

.hero-copy .badge {
    margin-bottom: 18px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-media {
    position: relative;
}

.hero-media img {
    width: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.quick-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
}

.quick-cards span,
.trust-pills span {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    color: #26334d;
    font-size: 0.94rem;
    font-weight: 700;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

.section-heading.compact {
    max-width: 640px;
}

.card-grid,
.services-grid,
.steps {
    display: grid;
    gap: 16px;
}

.card,
.panel,
.service-card,
.steps article,
.reviews-box,
.lead-form,
.thanks-card,
.faq details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 10px 30px rgba(23, 32, 51, 0.06);
}

.card,
.panel,
.steps article,
.reviews-box {
    padding: 22px;
}

.card p,
.steps p,
.reviews-box p {
    margin-bottom: 0;
}

.problem .panel {
    background: var(--brand-blue);
}

.problem .panel h2,
.problem .panel p {
    color: #ffffff;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    min-height: 48px;
    padding: 13px 14px 13px 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    color: #2d3951;
    font-weight: 700;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 18px;
    width: 11px;
    height: 7px;
    border-left: 2px solid var(--brand-cyan);
    border-bottom: 2px solid var(--brand-cyan);
    transform: rotate(-45deg);
}

.service-card {
    overflow: hidden;
}

.service-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.service-body {
    padding: 22px;
}

.service-body ul {
    display: grid;
    gap: 8px;
    margin: 18px 0;
    padding-left: 18px;
    color: #33405a;
}

.text-cta {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0;
    border: 0;
    color: var(--brand-blue);
    background: transparent;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.text-cta::after {
    content: "→";
    margin-left: 8px;
}

.steps {
    counter-reset: steps;
}

.steps article span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--brand-cyan);
    font-weight: 800;
}

.trust {
    background: linear-gradient(135deg, #173074, #118ebf);
}

.trust h2,
.trust h3,
.trust p,
.trust cite {
    color: #ffffff;
}

.trust .eyebrow {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.trust-pills span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

.reviews-box {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.rating {
    font-weight: 800;
}

blockquote {
    margin: 18px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

blockquote p {
    margin-bottom: 10px;
}

cite {
    font-style: normal;
    font-weight: 800;
}

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

.cta-band {
    padding: 44px 0;
    background: var(--brand-blue);
}

.cta-band h2,
.cta-band p {
    color: #ffffff;
}

.cta-band p {
    margin-bottom: 0;
}

.form-section {
    background: #ffffff;
}

.form-copy {
    align-self: start;
}

.inline-whatsapp {
    display: inline-flex;
    margin-top: 8px;
    color: var(--success);
    font-weight: 800;
}

.form-assurances {
    display: grid;
    gap: 10px;
    margin: 18px 0 16px;
    padding: 0;
    list-style: none;
}

.form-assurances li {
    position: relative;
    padding-left: 28px;
    color: #33405a;
    font-weight: 700;
}

.form-assurances li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 13px;
    height: 8px;
    border-left: 2px solid var(--brand-cyan);
    border-bottom: 2px solid var(--brand-cyan);
    transform: rotate(-45deg);
}

.lead-form {
    display: grid;
    gap: 16px;
    padding: 20px;
    transition: box-shadow 180ms ease, border-color 180ms ease;
}

.lead-form.is-highlighted {
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 4px rgba(17, 142, 191, 0.16), var(--shadow);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

label {
    display: grid;
    gap: 7px;
    color: #27334c;
    font-size: 0.95rem;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    border: 1px solid #cfd9e6;
    border-radius: 8px;
    color: var(--ink);
    background: #ffffff;
    font: inherit;
    font-weight: 500;
}

textarea {
    min-height: 132px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(17, 142, 191, 0.18);
    border-color: var(--brand-cyan);
}

[aria-invalid="true"] {
    border-color: #c62828;
}

.field-error {
    min-height: 18px;
    color: #b3261e;
    font-size: 0.82rem;
    font-weight: 700;
}

.optional {
    color: var(--muted);
    font-weight: 600;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #33405a;
    font-weight: 600;
}

.consent input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    margin-top: 3px;
}

.form-submit {
    width: 100%;
}

.form-note {
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

.form-alert {
    padding: 14px;
    border: 1px solid #f0b8b3;
    border-radius: 8px;
    color: #7f1d1d;
    background: #fff1f0;
    font-weight: 700;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq details {
    padding: 18px 20px;
}

.faq summary {
    color: #24314a;
    font-weight: 800;
    cursor: pointer;
}

.faq details p {
    margin: 12px 0 0;
}

.lp-footer {
    padding: 28px 0 92px;
    background: #101b3e;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-inner p,
.footer-inner a {
    color: #ffffff;
}

.footer-inner p {
    margin: 0;
    font-weight: 800;
}

.footer-inner nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-inner a {
    text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
    text-decoration: underline;
}

.floating-whatsapp {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--success);
    box-shadow: 0 14px 30px rgba(18, 140, 126, 0.28);
    font-weight: 800;
    text-decoration: none;
}

.mobile-sticky-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 35;
    display: none;
    grid-template-columns: minmax(0, 1.25fr) minmax(112px, 0.75fr);
    gap: 10px;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 28px rgba(23, 32, 51, 0.1);
    backdrop-filter: blur(14px);
}

.mobile-sticky-actions .btn {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.9rem;
}

.thank-you-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--brand-cyan-soft), #ffffff 55%, #f4f8fb);
}

.thanks-shell {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 32px 16px;
}

.thanks-card {
    width: min(680px, 100%);
    padding: 28px;
}

.thanks-card .brand {
    margin-bottom: 28px;
}

.thanks-card h1 {
    margin-top: 16px;
    font-size: clamp(2rem, 7vw, 3.2rem);
}

@media (min-width: 680px) {
    .quick-cards,
    .card-grid.two,
    .field-row,
    .columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lead-form {
        padding: 28px;
    }

    .footer-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* Landing exclusiva de recrutamento e seleção para empresas. */
body[data-page="recrutamento-empresas-lp"] {
    min-height: 100vh;
    padding-bottom: 0;
    background: #ffffff;
}

body[data-page="recrutamento-empresas-lp"].modal-open {
    overflow: hidden;
}

.company-identified .audience-modal,
.audience-modal[hidden],
.recruitment-whatsapp[hidden] {
    display: none !important;
}

.audience-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 16px;
    background: rgba(10, 20, 48, 0.72);
    backdrop-filter: blur(8px);
}

.audience-dialog {
    width: min(560px, 100%);
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    padding: clamp(24px, 5vw, 38px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 26px 80px rgba(10, 20, 48, 0.32);
}

.audience-dialog h2 {
    margin: 16px 0 10px;
    font-size: clamp(1.75rem, 6vw, 2.45rem);
}

.audience-actions {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.audience-actions .btn {
    min-height: 54px;
    white-space: normal;
}

.recruitment-header {
    position: relative;
    min-height: 76px;
}

.recruitment-header .brand-logo {
    width: auto;
    height: 52px;
}

.recruitment-hero {
    padding: 42px 0 64px;
    background:
        radial-gradient(circle at 12% 10%, rgba(17, 142, 191, 0.13), transparent 34%),
        linear-gradient(135deg, #f4f9fc, #ffffff 55%);
}

.recruitment-hero-grid {
    display: grid;
    gap: 30px;
}

.recruitment-copy {
    align-self: start;
}

.recruitment-copy-secondary {
    align-self: start;
}

.recruitment-copy h1 {
    margin-top: 18px;
    font-size: clamp(2.25rem, 6vw, 4rem);
}

.recruitment-copy .lead {
    font-size: clamp(1.08rem, 2vw, 1.24rem);
    font-weight: 700;
}

.company-notice {
    padding: 14px 16px;
    border-left: 4px solid var(--brand-cyan);
    border-radius: 0 8px 8px 0;
    background: #ffffff;
}

.response-call {
    color: var(--brand-blue);
    font-weight: 800;
}

.hero-benefits {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.hero-benefits li {
    position: relative;
    padding-left: 30px;
    color: #26334d;
    font-weight: 750;
}

.hero-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--brand-cyan);
    font-size: 0.78rem;
    font-weight: 900;
}

.hero-form-shell {
    scroll-margin-top: 24px;
    outline: none;
}

.recruitment-form {
    gap: 14px;
    box-shadow: var(--shadow);
}

.form-heading h2 {
    margin: 8px 0 10px;
    font-size: clamp(1.65rem, 4vw, 2.15rem);
}

.form-heading p {
    margin-bottom: 0;
}

.location-row {
    grid-template-columns: minmax(0, 1.6fr) minmax(130px, 0.7fr);
}

.recruitment-form button:disabled {
    opacity: 0.68;
    cursor: wait;
    transform: none;
}

.success-panel {
    min-height: 420px;
    align-content: center;
    justify-items: start;
    padding: clamp(28px, 6vw, 48px);
    box-shadow: var(--shadow);
}

.success-panel h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
}

.success-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--success);
    font-size: 1.8rem;
    font-weight: 900;
}

.recruitment-whatsapp {
    background: var(--success);
}

.recruitment-whatsapp.is-visible {
    animation: recruitment-whatsapp-in 260ms ease-out both;
}

@keyframes recruitment-whatsapp-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.recruitment-section .section-heading {
    margin-bottom: 30px;
}

.pain-grid {
    display: grid;
    gap: 14px;
}

.pain-grid .card {
    display: flex;
    align-items: center;
    min-height: 110px;
}

.pain-grid h3 {
    margin: 0;
    font-size: 1.02rem;
}

.section-closing {
    max-width: 820px;
    margin: 28px 0 0;
    color: var(--brand-blue);
    font-size: 1.08rem;
    font-weight: 800;
}

.recruitment-steps {
    display: grid;
    gap: 16px;
}

.recruitment-steps article,
.list-panel {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(23, 32, 51, 0.06);
}

.recruitment-steps article > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--brand-blue);
    font-weight: 900;
}

.recruitment-steps article p {
    margin-bottom: 0;
}

.recruitment-lists {
    display: grid;
    gap: 22px;
}

.list-panel h2 {
    font-size: clamp(1.65rem, 4vw, 2.35rem);
}

.recruitment-final-cta {
    background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
}

.recruitment-final-cta h2,
.recruitment-final-cta p {
    color: #ffffff;
}

.recruitment-final-cta .btn-primary {
    color: var(--brand-blue);
    background: #ffffff;
    box-shadow: none;
}

#page-title:focus {
    outline: none;
}

@media (min-width: 700px) {
    .pain-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (min-width: 980px) {
    .recruitment-hero {
        padding: 58px 0 80px;
    }

    .recruitment-hero-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
        grid-template-areas:
            "primary form"
            "secondary form";
        align-items: start;
        column-gap: 52px;
        row-gap: 24px;
    }

    .recruitment-copy-primary {
        grid-area: primary;
        padding-top: 18px;
    }

    .hero-form-shell {
        grid-area: form;
    }

    .recruitment-copy-secondary {
        grid-area: secondary;
    }

    .pain-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .recruitment-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .recruitment-final-cta .cta-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }
}

@media (max-width: 679px) {
    .recruitment-header {
        justify-content: center;
    }

    .recruitment-hero {
        padding-top: 30px;
    }

    .recruitment-copy h1 {
        font-size: 2.35rem;
    }

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

    .recruitment-whatsapp.floating-whatsapp {
        right: 12px;
        bottom: 12px;
        left: 12px;
        min-height: 50px;
    }
}

/* Seletor inicial de perfil. */
body[data-page="recrutamento-empresas-lp"] .audience-modal {
    padding: 20px;
    background:
        radial-gradient(circle at 16% 12%, rgba(26, 182, 217, 0.22), transparent 28%),
        rgba(9, 20, 49, 0.76);
    backdrop-filter: blur(12px) saturate(0.9);
}

body[data-page="recrutamento-empresas-lp"] .audience-dialog {
    position: relative;
    width: min(620px, 100%);
    padding: clamp(28px, 5vw, 42px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(26, 182, 217, 0.1), transparent 30%),
        #ffffff;
    box-shadow: 0 36px 100px rgba(8, 18, 45, 0.38);
}

body[data-page="recrutamento-empresas-lp"] .audience-dialog::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan), #1ab6d9);
}

.audience-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.audience-brand img {
    width: auto;
    height: 44px;
    object-fit: contain;
}

.audience-brand > span {
    padding: 7px 11px;
    border: 1px solid rgba(17, 142, 191, 0.15);
    border-radius: 999px;
    color: var(--brand-blue);
    background: var(--brand-cyan-soft);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body[data-page="recrutamento-empresas-lp"] .audience-dialog h2 {
    max-width: 500px;
    margin: 0 0 10px;
    color: #172a63;
    font-size: clamp(2rem, 5vw, 2.65rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

body[data-page="recrutamento-empresas-lp"] .audience-dialog > p:not(.audience-reassurance) {
    max-width: 500px;
    margin-bottom: 0;
    color: #5d6a80;
    font-size: 0.98rem;
}

body[data-page="recrutamento-empresas-lp"] .audience-actions {
    gap: 13px;
    margin-top: 28px;
}

.audience-choice {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 82px;
    padding: 14px 16px;
    border: 1px solid transparent;
    border-radius: 18px;
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.audience-choice-company {
    color: #ffffff;
    background: linear-gradient(135deg, #173074, #234b9a);
    box-shadow: 0 18px 36px -20px rgba(27, 55, 140, 0.85);
}

.audience-choice-candidate {
    color: #20304d;
    border-color: #d8e1ec;
    background: rgba(248, 251, 253, 0.92);
}

.audience-choice:hover,
.audience-choice:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.audience-choice-company:hover,
.audience-choice-company:focus-visible {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 22px 42px -20px rgba(27, 55, 140, 0.9);
}

.audience-choice-candidate:hover,
.audience-choice-candidate:focus-visible {
    border-color: rgba(17, 142, 191, 0.38);
    background: #ffffff;
    box-shadow: 0 16px 34px -24px rgba(27, 55, 140, 0.52);
}

.audience-choice-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 15px;
}

.audience-choice-company .audience-choice-icon {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.audience-choice-candidate .audience-choice-icon {
    color: var(--brand-blue);
    background: #eaf8fc;
}

.audience-choice-icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.audience-choice-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.audience-choice-copy strong {
    font-size: 1.05rem;
    line-height: 1.25;
}

.audience-choice-copy small {
    color: inherit;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.78;
}

.audience-choice-arrow {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.15rem;
    transition: transform 180ms ease;
}

.audience-choice-company .audience-choice-arrow {
    background: rgba(255, 255, 255, 0.13);
}

.audience-choice-candidate .audience-choice-arrow {
    color: var(--brand-blue);
    background: #edf3f8;
}

.audience-choice:hover .audience-choice-arrow,
.audience-choice:focus-visible .audience-choice-arrow {
    transform: translateX(3px);
}

.audience-reassurance {
    margin: 18px 0 0;
    color: #7a8698;
    font-size: 0.78rem;
    text-align: center;
}

@media (max-width: 520px) {
    body[data-page="recrutamento-empresas-lp"] .audience-modal {
        padding: 14px;
    }

    body[data-page="recrutamento-empresas-lp"] .audience-dialog {
        padding: 26px 20px 22px;
        border-radius: 22px;
    }

    .audience-brand {
        margin-bottom: 20px;
    }

    .audience-brand img {
        height: 38px;
        max-width: 130px;
    }

    .audience-brand > span {
        display: none;
    }

    body[data-page="recrutamento-empresas-lp"] .audience-dialog h2 {
        font-size: 2rem;
    }

    .audience-choice {
        grid-template-columns: 46px minmax(0, 1fr) 26px;
        gap: 11px;
        min-height: 78px;
        padding: 12px;
        border-radius: 16px;
    }

    .audience-choice-icon {
        width: 46px;
        height: 46px;
        border-radius: 13px;
    }

    .audience-choice-icon svg {
        width: 23px;
        height: 23px;
    }

    .audience-choice-copy strong {
        font-size: 0.98rem;
    }

    .audience-choice-copy small {
        font-size: 0.76rem;
    }
}

@media (min-width: 900px) {
    .section {
        padding: 88px 0;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
        align-items: start;
    }

    .split,
    .form-grid,
    .cta-inner {
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
        align-items: start;
    }

    .split.reverse {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    }

    .card-grid.three,
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .services-grid .service-card:first-child {
        grid-column: span 2;
    }

    .steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .cta-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .form-grid {
        grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
    }

    .lp-footer {
        padding-bottom: 32px;
    }
}

@media (max-width: 520px) {
    .lp-header {
        min-height: 64px;
        padding: 10px 14px;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
    }

    .brand-text {
        font-size: 0.98rem;
    }

    .lp-header .btn {
        max-width: 176px;
        min-height: 42px;
        padding: 10px 12px;
        font-size: 0.86rem;
    }

    .section {
        padding: 54px 0;
    }

    .hero {
        padding-top: 34px;
    }

    .actions,
    .actions .btn {
        width: 100%;
    }

    .floating-whatsapp {
        display: none;
    }

    .mobile-sticky-actions {
        display: grid;
    }

    .lp-footer {
        padding-bottom: 96px;
    }
}

@media (min-width: 521px) and (max-width: 760px) {
    .floating-whatsapp {
        right: 12px;
        bottom: 78px;
        min-height: 44px;
        padding: 10px 13px;
        font-size: 0.9rem;
    }

    .mobile-sticky-actions {
        display: grid;
    }

    .lp-footer {
        padding-bottom: 108px;
    }
}

/* Visual alignment with the main Ultra+ RH website. */
:root {
    --brand-blue: #0a226b;
    --brand-blue-dark: #07194f;
    --brand-blue-soft: #23468c;
    --brand-cyan: #118ebf;
    --brand-cyan-bright: #1ab6d9;
    --ink: #0a226b;
    --muted: #23468c;
    --line: rgba(35, 70, 140, 0.24);
    --surface-soft: #f2f2f2;
    --success: #25d366;
    --success-dark: #1aa850;
    --shadow: 0 22px 45px -24px rgba(35, 70, 140, 0.38);
    --radius: 24px;
}

body {
    background: var(--surface-soft);
    font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
}

.lp-header {
    background: rgba(255, 255, 255, 0.92);
}

.brand-logo {
    width: auto;
    height: 48px;
    max-width: min(210px, 52vw);
    object-fit: contain;
}

.btn {
    border-radius: 12px;
}

.btn-primary {
    background: var(--brand-blue-soft);
}

.btn-secondary,
.floating-whatsapp {
    background: linear-gradient(135deg, var(--success), var(--success-dark));
    box-shadow: 0 10px 20px -12px rgba(37, 211, 102, 0.9);
}

.badge,
.eyebrow {
    background: #f2f2f2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero {
    background-image:
        radial-gradient(circle at 15% 0%, rgba(26, 182, 217, 0.2), transparent 38%),
        radial-gradient(circle at 100% 100%, rgba(27, 55, 140, 0.16), transparent 35%),
        linear-gradient(180deg, #f7fbff 0%, #f2f2f2 100%);
}

.hero-media img,
.service-card,
.lead-form,
.card,
.panel,
.steps article,
.reviews-box,
.thanks-card,
.faq details {
    border-radius: 24px;
}

.quick-cards span,
.trust-pills span,
.check-list li {
    border-radius: 18px;
}

.hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 620px;
    margin-top: 24px;
}

.hero-trust span {
    min-height: 58px;
    padding: 14px 16px;
    border-radius: 18px;
    color: var(--brand-blue);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(35, 70, 140, 0.08);
    font-size: 0.94rem;
    font-weight: 800;
}

.problem .panel,
.cta-band {
    background:
        linear-gradient(125deg, rgba(27, 55, 140, 0.97), rgba(35, 70, 140, 0.93)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 8px, rgba(255, 255, 255, 0.01) 8px, rgba(255, 255, 255, 0.01) 16px);
    border-color: rgba(26, 182, 217, 0.28);
}

.trust {
    background:
        linear-gradient(125deg, rgba(27, 55, 140, 0.98), rgba(17, 142, 191, 0.95)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 8px, rgba(255, 255, 255, 0.01) 8px, rgba(255, 255, 255, 0.01) 16px);
}

.form-section {
    background:
        radial-gradient(circle at 10% 0%, rgba(26, 182, 217, 0.14), transparent 36%),
        #ffffff;
}

.conversion-note {
    display: grid;
    gap: 5px;
    margin: 18px 0 0;
    padding: 16px;
    border: 1px solid rgba(17, 142, 191, 0.22);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(35, 70, 140, 0.08);
}

.conversion-note strong {
    color: var(--brand-blue);
    font-size: 1rem;
}

.conversion-note span {
    color: var(--muted);
    font-size: 0.94rem;
}

input,
select,
textarea {
    border-radius: 12px;
}

.floating-whatsapp::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 999px;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: whatsappPulse 1.9s infinite;
}

.thank-you-page {
    background-image:
        radial-gradient(circle at 15% 0%, rgba(26, 182, 217, 0.2), transparent 38%),
        radial-gradient(circle at 100% 100%, rgba(27, 55, 140, 0.16), transparent 35%),
        linear-gradient(180deg, #f7fbff 0%, #f2f2f2 100%);
}

@keyframes whatsappPulse {
    0% {
        transform: scale(0.94);
        opacity: 0.9;
    }
    70% {
        transform: scale(1.05);
        opacity: 0;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

@media (min-width: 680px) {
    .hero-trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .hero-grid {
        align-items: center;
    }
}

@media (max-width: 520px) {
    .brand-logo {
        height: 42px;
        max-width: 150px;
    }
}

/* Refinamento visual da landing de recrutamento. */
body[data-page="recrutamento-empresas-lp"] {
    --recruitment-radius: 20px;
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, sans-serif;
    color: #172033;
    background: #f8fbfd;
    -webkit-font-smoothing: antialiased;
}

body[data-page="recrutamento-empresas-lp"] .recruitment-header {
    min-height: 82px;
    border-bottom-color: rgba(27, 55, 140, 0.1);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 8px 28px rgba(27, 55, 140, 0.06);
}

body[data-page="recrutamento-empresas-lp"] .recruitment-header .brand-logo {
    height: 58px;
    transition: transform 180ms ease;
}

body[data-page="recrutamento-empresas-lp"] .recruitment-header .brand:hover .brand-logo {
    transform: scale(1.025);
}

body[data-page="recrutamento-empresas-lp"] .recruitment-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(26, 182, 217, 0.17), transparent 30%),
        radial-gradient(circle at 94% 18%, rgba(27, 55, 140, 0.1), transparent 26%),
        linear-gradient(145deg, #f4fbfe 0%, #ffffff 52%, #f3f7fc 100%);
}

body[data-page="recrutamento-empresas-lp"] .recruitment-hero::before,
body[data-page="recrutamento-empresas-lp"] .recruitment-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
}

body[data-page="recrutamento-empresas-lp"] .recruitment-hero::before {
    top: 120px;
    left: -170px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(17, 142, 191, 0.16);
}

body[data-page="recrutamento-empresas-lp"] .recruitment-hero::after {
    right: -90px;
    bottom: 90px;
    width: 220px;
    height: 220px;
    background: rgba(26, 182, 217, 0.06);
}

body[data-page="recrutamento-empresas-lp"] .badge,
body[data-page="recrutamento-empresas-lp"] .eyebrow {
    border: 1px solid rgba(17, 142, 191, 0.14);
    border-radius: 999px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

body[data-page="recrutamento-empresas-lp"] .recruitment-copy h1 {
    max-width: 650px;
    color: #173074;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

body[data-page="recrutamento-empresas-lp"] .recruitment-copy .lead {
    max-width: 610px;
    color: #2b3954;
    line-height: 1.55;
}

body[data-page="recrutamento-empresas-lp"] .hero-benefits {
    gap: 12px;
}

body[data-page="recrutamento-empresas-lp"] .hero-benefits li {
    min-height: 54px;
    padding: 14px 15px 14px 48px;
    border: 1px solid rgba(27, 55, 140, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 24px rgba(27, 55, 140, 0.06);
}

body[data-page="recrutamento-empresas-lp"] .hero-benefits li::before {
    left: 15px;
    top: 15px;
    width: 24px;
    height: 24px;
    box-shadow: 0 6px 14px rgba(17, 142, 191, 0.25);
}

body[data-page="recrutamento-empresas-lp"] .hero-form-shell {
    position: relative;
}

body[data-page="recrutamento-empresas-lp"] .recruitment-form,
body[data-page="recrutamento-empresas-lp"] .success-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(27, 55, 140, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 30px 70px -30px rgba(27, 55, 140, 0.42);
}

body[data-page="recrutamento-empresas-lp"] .recruitment-form::before,
body[data-page="recrutamento-empresas-lp"] .success-panel::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan), #1ab6d9);
}

body[data-page="recrutamento-empresas-lp"] .form-heading {
    padding-bottom: 4px;
}

body[data-page="recrutamento-empresas-lp"] .form-heading h2 {
    color: #173074;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

body[data-page="recrutamento-empresas-lp"] .recruitment-form label {
    color: #24314a;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
}

body[data-page="recrutamento-empresas-lp"] .recruitment-form input,
body[data-page="recrutamento-empresas-lp"] .recruitment-form select,
body[data-page="recrutamento-empresas-lp"] .recruitment-form textarea {
    border-color: #d5deea;
    border-radius: 12px;
    background: #fbfdff;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

body[data-page="recrutamento-empresas-lp"] .recruitment-form input:hover,
body[data-page="recrutamento-empresas-lp"] .recruitment-form select:hover,
body[data-page="recrutamento-empresas-lp"] .recruitment-form textarea:hover {
    border-color: #b7c8da;
    background: #ffffff;
}

body[data-page="recrutamento-empresas-lp"] .recruitment-form input:focus,
body[data-page="recrutamento-empresas-lp"] .recruitment-form select:focus,
body[data-page="recrutamento-empresas-lp"] .recruitment-form textarea:focus {
    border-color: var(--brand-cyan);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(17, 142, 191, 0.11);
    outline: none;
}

body[data-page="recrutamento-empresas-lp"] .form-submit {
    min-height: 54px;
    border-radius: 13px;
    background: linear-gradient(135deg, #1b378c, #23468c);
    box-shadow: 0 16px 30px -16px rgba(27, 55, 140, 0.75);
}

.national-service-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    padding: 17px 18px;
    border: 1px solid rgba(17, 142, 191, 0.2);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(234, 248, 252, 0.98), rgba(255, 255, 255, 0.96));
    box-shadow: 0 14px 30px rgba(27, 55, 140, 0.07);
}

.national-service-card > span:last-child {
    display: grid;
    gap: 4px;
    color: #526078;
    font-size: 0.92rem;
    line-height: 1.5;
}

.national-service-card strong {
    color: #173074;
    font-size: 1rem;
}

.national-service-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
    box-shadow: 0 10px 20px rgba(17, 142, 191, 0.2);
}

.national-service-icon svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

body[data-page="recrutamento-empresas-lp"] .company-notice {
    border: 1px solid rgba(27, 55, 140, 0.1);
    border-left: 4px solid var(--brand-cyan);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(27, 55, 140, 0.05);
}

body[data-page="recrutamento-empresas-lp"] .section-soft {
    background: #f3f7fb;
}

body[data-page="recrutamento-empresas-lp"] .pain-grid .card,
body[data-page="recrutamento-empresas-lp"] .recruitment-steps article,
body[data-page="recrutamento-empresas-lp"] .list-panel,
body[data-page="recrutamento-empresas-lp"] .faq details {
    border-color: rgba(27, 55, 140, 0.09);
    border-radius: var(--recruitment-radius);
    box-shadow: 0 16px 36px -26px rgba(27, 55, 140, 0.38);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body[data-page="recrutamento-empresas-lp"] .pain-grid .card:hover,
body[data-page="recrutamento-empresas-lp"] .recruitment-steps article:hover {
    transform: translateY(-3px);
    border-color: rgba(17, 142, 191, 0.22);
    box-shadow: 0 22px 44px -28px rgba(27, 55, 140, 0.48);
}

body[data-page="recrutamento-empresas-lp"] .pain-grid .card {
    position: relative;
    overflow: hidden;
    padding-top: 27px;
}

body[data-page="recrutamento-empresas-lp"] .pain-grid .card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
}

body[data-page="recrutamento-empresas-lp"] .recruitment-steps article > span {
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
    box-shadow: 0 9px 20px rgba(27, 55, 140, 0.2);
}

body[data-page="recrutamento-empresas-lp"] .faq summary {
    padding-right: 30px;
}

.recruitment-whatsapp-inline {
    gap: 9px;
    color: #ffffff;
    background: #128c7e;
}

.recruitment-whatsapp-inline svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.recruitment-whatsapp.recruitment-whatsapp-fab {
    right: 18px;
    bottom: 18px;
    left: auto;
    width: 60px;
    height: 60px;
    min-height: 60px;
    padding: 0;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 18px 38px rgba(18, 140, 126, 0.34);
}

.recruitment-whatsapp-fab svg {
    width: 31px;
    height: 31px;
    fill: #ffffff;
}

@media (min-width: 980px) {
    body[data-page="recrutamento-empresas-lp"] .hero-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 679px) {
    body[data-page="recrutamento-empresas-lp"] .recruitment-header .brand-logo {
        height: 50px;
        max-width: 170px;
    }

    body[data-page="recrutamento-empresas-lp"] .recruitment-copy h1 {
        font-size: clamp(2.15rem, 10.8vw, 2.7rem);
    }

    body[data-page="recrutamento-empresas-lp"] .recruitment-form {
        padding: 24px 20px;
    }

    .national-service-card {
        padding: 15px;
    }

    .recruitment-whatsapp.recruitment-whatsapp-fab {
        right: 14px;
        bottom: 14px;
        left: auto;
        width: 56px;
        height: 56px;
        min-height: 56px;
    }
}
