:root {
    --bg: #eef2f6;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-strong: #ffffff;
    --surface-dark: rgba(16, 22, 31, 0.9);
    --ink: #101010;
    --ink-soft: #4a5567;
    --line: rgba(43, 67, 99, 0.14);
    --accent: #ffcc29;
    --accent-strong: #c99700;
    --accent-soft: rgba(255, 204, 41, 0.2);
    --brand-blue: #2b4363;
    --brand-blue-strong: #1b2e47;
    --shadow: 0 24px 80px rgba(10, 17, 27, 0.16);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body.lp-revenda {
    margin: 0;
    min-height: 100vh;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 204, 41, 0.22), transparent 32%),
        radial-gradient(circle at right 18%, rgba(43, 67, 99, 0.13), transparent 28%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f6 42%, #e6ecf2 100%);
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.page-shell {
    overflow: clip;
}

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

.hero {
    position: relative;
    padding: 32px 0 44px;
}

.hero__backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, #eef4fa 0%, #dbe6f2 36%, #b6c8db 62%, #2b4363 100%);
    clip-path: polygon(0 0, 100% 0, 100% 89%, 0 100%);
}

.hero__backdrop::before,
.hero__backdrop::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.hero__backdrop::before {
    top: 20px;
    right: -70px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 204, 41, 0.64) 0%, rgba(255, 204, 41, 0.18) 40%, rgba(255, 204, 41, 0) 72%);
}

.hero__backdrop::after {
    left: -36px;
    bottom: 16px;
    width: 430px;
    height: 240px;
    transform: rotate(-12deg);
    background:
        linear-gradient(90deg, rgba(43, 67, 99, 0.18) 0 18%, transparent 18% 100%),
        repeating-linear-gradient(90deg, rgba(43, 67, 99, 0.14) 0 14px, rgba(43, 67, 99, 0) 14px 32px);
    opacity: 0.75;
}

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 430px);
    gap: 32px;
    align-items: stretch;
}

.hero__content,
.hero-side {
    position: relative;
    z-index: 1;
}

.hero__content {
    padding: 44px 0;
    color: var(--brand-blue);
}

.hero__brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(43, 67, 99, 0.16);
    box-shadow: 0 18px 42px rgba(43, 67, 99, 0.16);
}

.hero__brand img {
    display: block;
    width: clamp(168px, 24vw, 220px);
    height: auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 204, 41, 0.32);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-blue);
    background: rgba(255, 204, 41, 0.22);
}

.eyebrow--dark {
    color: #ffde73;
    border-color: rgba(255, 204, 41, 0.3);
    background: rgba(255, 204, 41, 0.08);
}

.hero h1,
.section-heading h2,
.proof-card h2,
.form-shell__intro h2 {
    margin: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3rem, 7vw, 5.35rem);
    line-height: 0.94;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.hero__lead,
.section-heading p,
.proof-card p,
.form-shell__intro p {
    margin: 18px 0 0;
    max-width: 700px;
    font-size: 1.06rem;
    line-height: 1.75;
    color: rgba(43, 67, 99, 0.88);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.button--primary {
    color: #101010;
    background: linear-gradient(135deg, #ffe06a 0%, #ffcc29 100%);
    box-shadow: 0 14px 36px rgba(255, 204, 41, 0.3);
}

.button--ghost {
    color: var(--brand-blue);
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(43, 67, 99, 0.22);
}

.button--full {
    width: 100%;
}

.hero__highlights,
.capture-points {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.hero__highlights li,
.capture-points li {
    position: relative;
    padding-left: 28px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(43, 67, 99, 0.92);
}

.hero__highlights li::before,
.capture-points li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #111111 0 26%, transparent 27% 100%),
        linear-gradient(135deg, #ffe06a 0%, #ffcc29 100%);
    box-shadow: 0 0 0 4px rgba(255, 204, 41, 0.18);
}

.hero-side {
    display: grid;
    gap: 18px;
    align-self: end;
}

.hero-media,
.feature-banner,
.form-support-media,
.category-card__media {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-media {
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-media img,
.feature-banner img,
.form-support-media img,
.category-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media img {
    aspect-ratio: 16 / 11;
}

.hero-card {
    padding: 24px;
    border: 1px solid rgba(255, 204, 41, 0.34);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(30, 47, 70, 0.95), rgba(20, 31, 47, 0.95));
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    color: #f8fbff;
}

.hero-card__label,
.embed-card__eyebrow {
    margin: 0 0 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffde73;
}

.hero-card__top strong {
    font-size: 1.4rem;
    line-height: 1.35;
}

.hero-card__body {
    display: grid;
    gap: 14px;
    margin: 24px 0;
}

.metric {
    padding: 16px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 204, 41, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric__value {
    display: block;
    margin-bottom: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.metric__label {
    display: block;
    font-size: 0.94rem;
    line-height: 1.55;
    color: rgba(248, 251, 255, 0.82);
}

.hero-card__footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(248, 251, 255, 0.84);
}

.section {
    padding: 88px 0;
}

.section--visual {
    padding-top: 12px;
}

.section--dark {
    background:
        linear-gradient(180deg, rgba(13, 17, 23, 0.98), rgba(43, 67, 99, 0.98)),
        #111111;
    color: #f8fbff;
}

.section--form {
    padding-top: 32px;
    padding-bottom: 100px;
}

.section--faq {
    padding-top: 0;
    padding-bottom: 96px;
}

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

.section-heading h2,
.proof-card h2,
.form-shell__intro h2 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    color: var(--brand-blue);
}

.section-heading p,
.form-shell__intro p {
    color: var(--ink-soft);
}

.benefits-grid,
.steps-grid,
.categories-grid,
.proof-grid {
    display: grid;
    gap: 22px;
    margin-top: 34px;
}

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

.benefit-card,
.step-card,
.proof-card,
.category-card,
.embed-card,
.faq-item {
    position: relative;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 36px rgba(20, 19, 19, 0.06);
}

.benefit-card__index {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-blue);
    background: var(--accent-soft);
}

.benefit-card h3,
.step-card h3,
.category-card h3,
.embed-card h3 {
    margin: 0 0 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    line-height: 0.98;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--brand-blue);
}

.benefit-card p,
.step-card p,
.category-card p,
.embed-card p,
.faq-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.72;
    color: var(--ink-soft);
}

.feature-banner {
    min-height: 360px;
    border: 1px solid rgba(43, 67, 99, 0.1);
}

.feature-banner img {
    aspect-ratio: 16 / 8;
}

.category-card {
    display: grid;
    gap: 18px;
}

.category-card__media {
    min-height: 250px;
    border: 1px solid rgba(43, 67, 99, 0.1);
}

.category-card__media img {
    aspect-ratio: 1 / 1;
}

.proof-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
}

.proof-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 204, 41, 0.14);
    box-shadow: none;
}

.proof-card h2,
.proof-card p {
    color: #f8fbff;
}

.partner-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: flex-start;
}

.partner-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #f8fbff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.step-card span {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe06a 0%, #ffcc29 100%);
    color: #111111;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.form-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 28px;
    align-items: start;
}

.form-shell__intro {
    position: sticky;
    top: 24px;
}

.form-support-media {
    margin-top: 26px;
    min-height: 360px;
    border: 1px solid rgba(43, 67, 99, 0.1);
}

.form-support-media img {
    aspect-ratio: 9 / 11;
}

.form-shell__content {
    padding: 28px;
    border: 1px solid rgba(20, 19, 19, 0.08);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.embed-card {
    display: grid;
    gap: 18px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.embed-card__eyebrow {
    color: var(--brand-blue);
}

.embed-card__lead {
    margin-top: -2px;
}

.rd-form-placeholder {
    border: 1px dashed rgba(43, 67, 99, 0.3);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(43, 67, 99, 0.05), rgba(255, 204, 41, 0.08)),
        #ffffff;
    padding: 18px;
}

.rd-form-placeholder__inner {
    display: grid;
    gap: 10px;
    min-height: 320px;
    align-content: center;
    justify-items: start;
    padding: 28px;
    border-radius: calc(var(--radius-lg) - 8px);
    background: rgba(255, 255, 255, 0.78);
}

.rd-form-placeholder strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--brand-blue);
}

.rd-form-placeholder code {
    display: inline-flex;
    padding: 10px 12px;
    border-radius: 10px;
    background: #101820;
    color: #ffde73;
    font-size: 0.92rem;
}

.form-actions {
    display: grid;
    gap: 14px;
}

.form-actions p {
    color: var(--ink-soft);
}

.faq-shell {
    display: grid;
    gap: 34px;
}

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

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    line-height: 1;
    text-transform: uppercase;
    color: var(--brand-blue);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding: 0 28px 24px;
}

.site-footer {
    padding: 24px 0 40px;
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.site-footer p {
    margin: 0;
}

.thank-you-page {
    display: grid;
    min-height: 100vh;
    align-items: center;
    padding: 32px 0;
}

.thank-you-shell {
    display: grid;
    gap: 28px;
    max-width: 920px;
    margin: 0 auto;
}

.thank-you-card {
    position: relative;
    padding: 40px;
    border: 1px solid rgba(43, 67, 99, 0.12);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 80px rgba(10, 17, 27, 0.16);
    overflow: hidden;
}

.thank-you-card::before {
    content: '';
    position: absolute;
    inset: auto -80px -90px auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 204, 41, 0.4) 0%, rgba(255, 204, 41, 0) 72%);
}

.thank-you-brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(43, 67, 99, 0.16);
    box-shadow: 0 18px 42px rgba(43, 67, 99, 0.12);
}

.thank-you-brand img {
    width: clamp(168px, 24vw, 220px);
    height: auto;
}

.thank-you-card h1 {
    margin: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 0.94;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #2b4363;
}

.thank-you-lead {
    margin: 18px 0 0;
    font-size: 1.08rem;
    line-height: 1.75;
    color: #4a5567;
    max-width: 700px;
}

.thank-you-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.thank-you-item {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(43, 67, 99, 0.12);
    background: rgba(255, 255, 255, 0.84);
}

.thank-you-item strong {
    display: block;
    margin-bottom: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #2b4363;
}

.thank-you-item p {
    margin: 0;
    color: #4a5567;
    line-height: 1.7;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.google-conversion-note {
    padding: 22px 24px;
    border-radius: 24px;
    border: 1px dashed rgba(43, 67, 99, 0.24);
    background: rgba(255, 255, 255, 0.68);
    color: #4a5567;
    line-height: 1.75;
}

.google-conversion-note strong {
    color: #2b4363;
}

.google-conversion-note p {
    margin: 8px 0 0;
}

.google-conversion-note code {
    display: inline-flex;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #101820;
    color: #ffde73;
    font-size: 0.92rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--delay {
    transition-delay: 0.12s;
}

.reveal--delay-2 {
    transition-delay: 0.2s;
}

@media (max-width: 1080px) {
    .hero__grid,
    .benefits-grid,
    .categories-grid,
    .steps-grid,
    .proof-grid,
    .form-shell {
        grid-template-columns: 1fr;
    }

    .form-shell__intro {
        position: static;
    }
}

@media (max-width: 720px) {
    .hero {
        padding-top: 18px;
    }

    .hero__content {
        padding-top: 22px;
    }

    .section {
        padding: 72px 0;
    }

    .section--faq {
        padding-top: 0;
        padding-bottom: 72px;
    }

    .benefit-card,
    .step-card,
    .proof-card,
    .category-card,
    .form-shell__content,
    .faq-item {
        padding: 22px;
    }

    .faq-item {
        padding: 0;
    }

    .hero__actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero h1,
    .section-heading h2,
    .proof-card h2,
    .form-shell__intro h2 {
        font-size: clamp(2.4rem, 12vw, 3.6rem);
    }

    .faq-item summary {
        padding: 22px 22px 16px;
        font-size: 1.55rem;
    }

    .faq-item p {
        padding: 0 22px 22px;
    }

    .rd-form-placeholder__inner {
        min-height: 260px;
        padding: 22px;
    }

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

    .thank-you-card {
        padding: 28px 22px;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions .button {
        width: 100%;
    }
}
