/* ====================================================
RKP PRODUTOS — Clean & Modern
Fonte: Inter + Sora | Palette: branco, #111, #1c00ff, #e48101
==================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #0f0f0f;
    --ink-2: #444;
    --ink-3: #888;
    --blue: #1c00ff;
    --blue-dk: #1400cc;
    --blue-lt: #f0eeff;
    --blue-mid: #e8e5ff;
    --orange: #e48101;
    --orange-dk: #c06b00;
    --white: #ffffff;
    --off: #f8f8fb;
    --border: #e8e8f0;
    --border-dk: #d0d0e0;
    --green: #16a34a;
    --font-head: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-full: 999px;
    --sh-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --sh-md: 0 4px 16px rgba(0,0,0,.08);
    --sh-lg: 0 12px 40px rgba(0,0,0,.10);
    --sh-xl: 0 24px 64px rgba(0,0,0,.12);
    --sh-blue: 0 8px 32px rgba(28,0,255,.22);
    --sh-orange: 0 8px 32px rgba(228,129,1,.25);
    --t: .2s cubic-bezier(.4,0,.2,1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
    background: #fff;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

a, button {
    touch-action: manipulation;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- HELPERS ---- */
.sec-eyebrow {
    font-family: var(--font-head);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
    display: block;
}

.sec-eyebrow--light {
    color: rgba(255,255,255,.7);
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14.1px;
    letter-spacing: .01em;
    padding: 13px 28px;
    border-radius: var(--r-sm);
    transition: all var(--t);
    white-space: nowrap;
    cursor: pointer;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 15.2px;
}

.btn--block {
    width: 100%;
}

.btn--primary {
    background: var(--blue);
    color: #fff;
    box-shadow: var(--sh-blue);
}

.btn--primary:hover {
    background: var(--blue-dk);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(28,0,255,.3);
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--border-dk);
}

.btn--ghost:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-lt);
}

.btn--outline {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue);
}

.btn--outline:hover {
    background: var(--blue);
    color: #fff;
}

/* ---- TOP BAR ---- */
.topbar {
    background: var(--ink);
    padding: 8px 0;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.topbar span {
    font-size: 12.5px;
    color: rgba(255,255,255,.55);
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar i {
    color: var(--blue);
    font-size: 12px;
}

.topbar__cta {
    color: rgba(255,255,255,.8) !important;
    font-weight: 500;
}

/* ---- HEADER ---- */
.nav {
    background: rgba(255,255,255,.95);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: all var(--t);
}

.nav.scrolled {
    padding: 12px 0;
    box-shadow: var(--sh-md);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-img {
    height: 40px;
    width: auto;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav__menu a {
    font-size: 13.3px;
    font-weight: 600;
    color: var(--ink-2);
    padding: 8px 14px;
    border-radius: var(--r-sm);
    transition: all var(--t);
}

.nav__menu a:hover {
    color: var(--blue);
    background: var(--blue-lt);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all var(--t);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
}

/* ---- HERO ---- */
.hero {
    padding: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

/* Foto ocupa metade direita real — não overlay */
.hero__photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    z-index: 0;
}

.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.hero__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255,255,255,.3) 40%, transparent 100%);
}

.hero > .container {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;
    width: 100%;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 56px;
    align-items: center;
}

.hero__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%,100%{opacity:1;
    }50%{opacity:.3;
    };
}

.hero__copy h1 {
    font-family: var(--font-head);
    font-size: clamp(38.4px, 4.5vw, 60.8px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

.hero__copy h1 em {
    font-style: normal;
    color: var(--blue);
}

.hero__desc {
    font-size: 16.8px;
    color: var(--ink-2);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 36px;
}

.hero__metrics {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px 28px;
    margin-bottom: 28px;
}

.metric {
    flex: 1;
    text-align: center;
}

.metric strong {
    font-family: var(--font-head);
    font-size: 35.2px;
    font-weight: 800;
    color: var(--blue);
    display: inline;
}

.metric span {
    font-family: var(--font-head);
    font-size: 22.4px;
    font-weight: 800;
    color: var(--blue);
}

.metric p {
    font-size: 11.5px;
    color: var(--ink-3);
    margin-top: 2px;
    line-height: 1.3;
}

.metric__div {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink-2);
}

.badge i {
    color: var(--blue);
    font-size: 12px;
}

/* Hero form */
.hero__form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 36px 32px;
    position: sticky;
    top: 88px;
    box-shadow: 0 24px 64px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
}

.hero__form-eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .1em;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.hero__form h2 {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 6px;
}

.hero__form > p {
    font-size: 13.6px;
    color: var(--ink-3);
    margin-bottom: 24px;
}

/* ---- FORMS ---- */
.form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form__field label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink-2);
}

.form__field input,
.form__field select,
.form__field textarea {
    background: #fff;
    border: 1.5px solid var(--border-dk);
    border-radius: var(--r-sm);
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 14.4px;
    color: var(--ink);
    outline: none;
    transition: border-color var(--t), box-shadow var(--t);
    width: 100%;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(28,0,255,.08);
}

.form__field select {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.form__field--sel {
    position: relative;
}

.form__field--sel i {
    position: absolute;
    right: 14px;
    bottom: 14px;
    color: var(--ink-3);
    font-size: 12px;
    pointer-events: none;
}

.form__field textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}

.form--light .form__field input,
.form--light .form__field select,
.form--light .form__field textarea {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    color: #fff;
}

.form--light .form__field input::placeholder,
.form--light .form__field textarea::placeholder {
    color: rgba(255,255,255,.4);
}

.form--light .form__field label {
    color: rgba(255,255,255,.7);
}

.form--light .form__field--sel i {
    color: rgba(255,255,255,.4);
}

.form--light .form__field select option {
    background: var(--ink);
    color: #fff;
}

.form__footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 8px;
}

.form__footer span {
    font-size: 11.5px;
    color: var(--ink-3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.form__footer span i {
    color: var(--blue);
}

.form--light .form__footer span {
    color: rgba(255,255,255,.4);
}

/* ---- CLIENTS STRIP ---- */
.clients-strip {
    background: var(--off);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

.clients-strip .container {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.clients-strip__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: nowrap;
}

.clients-strip__logos {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.clients-strip__logos span {
    font-size: 13.1px;
    color: var(--ink-2);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.clients-strip__logos i {
    color: var(--blue);
}

/* ---- SEC HEADER ---- */
.sec-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 56px;
}

.sec-head--center {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sec-head h2 {
    font-family: var(--font-head);
    font-size: clamp(28.8px, 3vw, 41.6px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -.02em;
}

.sec-head__right p {
    color: var(--ink-2);
    font-size: 15.2px;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ---- CATEGORIAS ---- */
.categorias {
    padding: 96px 0;
    background: #fff;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 24px;
}

.cat-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px;
    background: #fff;
    position: relative;
    transition: all var(--t);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.cat-item:hover {
    background: var(--blue-lt);
    z-index: 1;
}

.cat-item:hover .cat-item__arrow {
    opacity: 1;
    transform: translate(3px,-3px);
}

.cat-item:hover .cat-item__body h3 {
    color: var(--blue);
}

.cat-item--hl {
    background: var(--blue);
}

.cat-item--hl:hover {
    background: var(--blue-dk);
}

.cat-item--hl .cat-item__num, .cat-item--hl .cat-item__icon, .cat-item--hl .cat-item__body h3, .cat-item--hl .cat-item__body p, .cat-item--hl .cat-item__arrow {
    color: rgba(255,255,255,.9) !important;
}

.cat-item--hl:hover .cat-item__body h3 {
    color: #fff !important;
}

.cat-item__tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--orange);
    color: #fff;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: var(--r-full);
}

.cat-item__num {
    font-family: var(--font-head);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--ink-3);
    letter-spacing: .1em;
}

.cat-item__icon {
    font-size: 28.8px;
    color: var(--blue);
}

.cat-item--hl .cat-item__icon {
    color: rgba(255,255,255,.8);
}

.cat-item__body h3 {
    font-family: var(--font-head);
    font-size: 15.7px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    transition: color var(--t);
}

.cat-item__body p {
    font-size: 13.1px;
    color: var(--ink-3);
    line-height: 1.5;
}

.cat-item__arrow {
    margin-top: auto;
    font-size: 13.6px;
    color: var(--blue);
    opacity: 0;
    transition: all var(--t);
}

.cat-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px 28px;
    flex-wrap: wrap;
}

.cat-cta p {
    font-size: 14.4px;
    color: var(--ink-2);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ---- DIFERENCIAIS ---- */
.diferenciais {
    padding: 64px 0;
    background: var(--off);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.dif__layout {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 64px;
    align-items: start;
}

.dif__left-col {
    display: flex;
    flex-direction: column;
}

.dif__left-col h2 {
    font-family: var(--font-head);
    font-size: clamp(25.6px, 2.5vw, 35.2px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 12px;
}

.dif__left-col .dif__desc {
    color: var(--ink-2);
    line-height: 1.7;
    margin-bottom: 28px;
}

.dif__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.dif__list-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 13px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: all var(--t);
}

.dif__list-item:hover {
    border-color: var(--blue);
    box-shadow: var(--sh-sm);
}

.dif__list-item--hl {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: var(--sh-blue);
}

.dif__list-item--hl h4 {
    color: #ffffff !important;
}

.dif__list-item--hl p {
    color: rgba(255,255,255,.82) !important;
}

.dif__list-item--hl .dif__num {
    color: rgba(255,255,255,.4) !important;
}

.dif__num {
    font-family: var(--font-head);
    font-size: .68rem;
    font-weight: 700;
    color: var(--ink-3);
    min-width: 22px;
    padding-top: 2px;
    flex-shrink: 0;
}

.dif__list-item h4 {
    font-family: var(--font-head);
    font-size: 13.9px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}

.dif__list-item p {
    font-size: 12.8px;
    color: var(--ink-2);
    line-height: 1.5;
}

.dif__proof-row {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.dif__proof-row .metric strong {
    color: var(--blue);
}

.dif__proof-row .metric span {
    color: var(--blue);
}

.dif__proof-row .metric p {
    color: var(--ink-3);
}

/* Coluna direita: imagem em card com moldura */
.dif__img-card {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.14);
    position: relative;
}

.dif__img-card img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.dif__img-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,15,15,.55) 0%, transparent 50%);
}

.dif__img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    background: var(--blue);
    border-radius: var(--r-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dif__img-badge i {
    color: #fff;
    font-size: 22.4px;
    flex-shrink: 0;
}

.dif__img-badge strong {
    display: block;
    font-family: var(--font-head);
    font-size: 14.7px;
    font-weight: 800;
    color: #fff;
}

.dif__img-badge span {
    font-size: 12px;
    color: rgba(255,255,255,.7);
}

/* ---- PROCESSO ---- */
.processo {
    padding: 96px 0;
    background: #fff;
}

.steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 56px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.step__num {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    margin-bottom: -4px;
}

.step__icon {
    width: 56px;
    height: 56px;
    background: var(--blue);
    color: #fff;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20.8px;
    margin: 0 auto 14px;
    box-shadow: var(--sh-blue);
}

.step h3 {
    font-family: var(--font-head);
    font-size: 15.2px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.step p {
    font-size: 13.4px;
    color: var(--ink-2);
    line-height: 1.6;
}

.step__line {
    flex-shrink: 0;
    height: 2px;
    width: 40px;
    background: var(--border);
    margin-top: 62px;
}

/* ---- DEPOIMENTOS ---- */
.depoimentos {
    padding: 96px 0;
    background: var(--off);
    border-top: 1px solid var(--border);
}

.dep-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 56px;
}

.dep {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: all var(--t);
}

.dep:hover {
    border-color: var(--blue);
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

.dep--hl {
    background: var(--blue);
    border-color: var(--blue);
}

.dep--hl blockquote, .dep--hl .dep__author strong, .dep--hl .dep__author span {
    color: rgba(255,255,255,.9) !important;
}

.dep--hl .dep__av {
    background: rgba(255,255,255,.2);
    color: #fff;
}

.dep__stars {
    color: var(--orange);
    font-size: 15.2px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.dep blockquote {
    font-size: 14.1px;
    color: var(--ink);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 20px;
}

.dep__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dep__av {
    width: 38px;
    height: 38px;
    background: var(--blue-lt);
    color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13.6px;
    flex-shrink: 0;
}

.dep__author strong {
    display: block;
    font-size: 13.6px;
    color: var(--ink);
    font-weight: 700;
}

.dep__author span {
    font-size: 12px;
    color: var(--ink-3);
}

/* ---- FAQ ---- */
.faq {
    padding: 96px 0;
    background: #fff;
}

.faq__inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
}

.faq__left h2 {
    font-family: var(--font-head);
    font-size: clamp(28.8px, 2.5vw, 35.2px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 12px;
}

.faq__left p {
    color: var(--ink-2);
    font-size: 14.4px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color var(--t);
}

.faq-item.open {
    border-color: var(--blue);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 17px 20px;
    text-align: left;
    font-family: var(--font-head);
    font-size: 14.1px;
    font-weight: 600;
    color: var(--ink);
    transition: color var(--t);
}

.faq-q i {
    color: var(--blue);
    flex-shrink: 0;
    font-size: 12.8px;
    transition: transform var(--t);
}

.faq-item.open .faq-q {
    color: var(--blue);
}

.faq-item.open .faq-q i {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4,0,.2,1);
}

.faq-a p {
    padding: 0 20px 16px;
    font-size: 14.1px;
    color: var(--ink-2);
    line-height: 1.7;
}

/* ---- CTA FINAL ---- */
/* ---- CTA FINAL ---- */
.cta-final {
    padding: 96px 0;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

/* Foto de fundo — equipe RKP */
.cta-final__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-final__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    filter: grayscale(15%);
}

.cta-final__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( 100deg, rgba(4,0,30,.95) 0%, rgba(6,0,60,.90) 42%, rgba(10,0,80,.70) 65%, rgba(10,0,60,.55) 100% );
}

.cta-final__grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Copy esquerda */
.cta-final__copy h2 {
    font-family: var(--font-head);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}

.cta-final__copy > p {
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    margin-bottom: 36px;
    font-size: 15.5px;
}

.cta-final__contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.cta-final__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cta-final__contact-item i {
    color: var(--blue);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 16px;
}

.cta-final__contact-item strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 2px;
}

.cta-final__contact-item a, .cta-final__contact-item span {
    font-size: 14.4px;
    color: rgba(255,255,255,.65);
}

.cta-final__contact-item a:hover {
    color: #fff;
}

.cta-final__bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.cta-final__bullets span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13.1px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
}

.cta-final__bullets i {
    color: #4ade80;
    font-size: 12.5px;
    flex-shrink: 0;
}

/* Formulário direita: card branco */
.cta-final__form-card {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 40px 36px;
    box-shadow: 0 32px 80px rgba(0,0,0,.3);
}

.cta-final__form-card h3 {
    font-family: var(--font-head);
    font-size: 20.8px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 6px;
}

.cta-final__form-card > p {
    font-size: 13.4px;
    color: var(--ink-3);
    margin-bottom: 24px;
}

/* ---- FOOTER ---- */
.footer {
    background: #070707;
    padding: 64px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer__brand p {
    font-size: 13.4px;
    color: rgba(255,255,255,.38);
    margin: 14px 0 20px;
    line-height: 1.7;
}

.footer__logo {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .7;
}

.footer__social {
    display: flex;
    gap: 8px;
}

.footer__social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.35);
    font-size: 12px;
    transition: all var(--t);
}

.footer__social a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.footer__col h4 {
    font-family: var(--font-head);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.4);
    margin-bottom: 14px;
}

.footer__col ul li a {
    font-size: 13.3px;
    color: rgba(255,255,255,.35);
    display: block;
    padding: 4px 0;
    transition: color var(--t);
}

.footer__col ul li a:hover {
    color: #fff;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.1px;
    color: rgba(255,255,255,.35);
    padding: 5px 0;
}

.footer__contact li i {
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer__contact li a:hover {
    color: #fff;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    gap: 12px;
    flex-wrap: wrap;
}

.footer__bottom p {
    font-size: 12.3px;
    color: rgba(255,255,255,.2);
}

.footer__cert {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.25);
}

.footer__cert i {
    color: var(--orange);
}

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 999;
    transition: all var(--t);
    animation: float-wa 4s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.1) !important;
    animation: none;
}

.wa-float span {
    position: absolute;
    right: 66px;
    background: var(--ink);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: var(--r-full);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t);
}

.wa-float:hover span {
    opacity: 1;
}

@keyframes float-wa {
    0%,100%{transform:translateY(0);
    }50%{transform:translateY(-7px);
    };
}

.back-top {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.8px;
    box-shadow: var(--sh-blue);
    z-index: 998;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: all var(--t);
}

.back-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-top:hover {
    background: var(--blue-dk);
}

/* ---- AOS ---- */
[data-aos] {
    opacity: 0;
    transition: opacity .6s ease, transform .6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(28px);
}

[data-aos="fade-right"] {
    transform: translateX(-28px);
}

[data-aos="fade-left"] {
    transform: translateX(28px);
}

[data-aos="zoom-in"] {
    transform: scale(.94);
}

[data-aos].aos-in {
    opacity: 1;
    transform: none;
}

/* ====================================================
RESPONSIVE
==================================================== */
@media (max-width: 1024px) {
/* Hero */
.hero {
    min-height: auto;
    flex-direction: column;
}

.hero__photo {
    display: none;
}

.hero > .container {
    padding-top: 72px;
    padding-bottom: 72px;
}

.hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
}

.hero__form {
    position: static;
    max-width: 560px;
}

.hero__copy h1 {
    font-size: clamp(32px, 6vw, 48px);
}

.hero__desc {
    max-width: 100%;
}

/* Diferenciais */
.dif__layout {
    grid-template-columns: 1fr;
    gap: 48px;
}

.dif__img-card img {
    height: 360px;
}

/* CTA Final */
.cta-final__grid {
    grid-template-columns: 1fr;
    gap: 48px;
}

/* Others */
.faq__inner {
    grid-template-columns: 1fr;
    gap: 40px;
}

.cat-grid {
    grid-template-columns: repeat(2,1fr);
}

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

.footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.steps {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.step {
    min-width: 180px;
    flex: 0 1 calc(50% - 12px);
}

.step__line {
    display: none;
}

.sec-head {
    grid-template-columns: 1fr;
    gap: 16px;
}

}

@media (max-width: 768px) {
.topbar__inner {
    gap: 12px;
}

.topbar span:first-child, .topbar span:nth-child(2) {
    display: none;
}

.nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 72px 20px 24px;
    box-shadow: var(--sh-xl);
    transition: right .35s cubic-bezier(.4,0,.2,1);
    z-index: 2000;
    overflow-y: auto;
}

.nav__menu.open {
    right: 0;
}

.nav__menu li {
    border-bottom: 1px solid var(--border);
}

.nav__menu li a {
    display: block;
    padding: 13px 0;
    font-size: 14.1px;
}

.nav__actions .btn--ghost {
    display: none;
}

.hamburger {
    display: flex;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t);
}

.menu-overlay.show {
    opacity: 1;
    pointer-events: all;
}

/* Hero mobile */
.hero > .container {
    padding-top: 56px;
    padding-bottom: 56px;
}

.hero__metrics {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
}

.metric {
    flex: 0 1 calc(50% - 6px);
}

.metric__div {
    display: none;
}

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

/* Diferenciais mobile */
.dif__proof-row {
    flex-direction: column;
    gap: 16px;
}

.dif__img-card img {
    height: 280px;
}

/* CTA mobile */
.cta-final__bullets {
    grid-template-columns: 1fr;
}

.cta-final__form-card {
    padding: 28px 20px;
}

/* Others */
.clients-strip .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.clients-strip__logos {
    gap: 12px;
}

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

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

.dep--hl {
    order: -1;
}

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

.footer__bottom {
    flex-direction: column;
    text-align: center;
}

.step {
    flex: 0 1 100%;
    max-width: 280px;
}

}

/* ---- DIFERENCIAIS + CTA FINAL RESPONSIVE ---- */
@media (max-width: 1024px) {
.diferenciais {
    grid-template-columns: 1fr;
    min-height: auto;
}

.dif__img-col {
    min-height: 320px;
}

.dif__img-col img {
    min-height: 320px;
    height: 320px;
}

.dif__col-right {
    padding: 56px 40px;
}

.cta-final {
    grid-template-columns: 1fr;
    min-height: auto;
}

.cta-final__img-col {
    min-height: 400px;
}

.cta-final__img-col img {
    min-height: 400px;
    height: 400px;
}

.cta-final__img-overlay {
    top: 32px;
    left: 28px;
    right: 28px;
}

.cta-final__form-col {
    padding: 48px 40px;
}

}

@media (max-width: 768px) {
.dif__col-right {
    padding: 40px 24px;
}

.dif__img-col {
    min-height: 260px;
}

.dif__img-col img {
    min-height: 260px;
    height: 260px;
}

.dif__img-caption {
    bottom: 16px;
    left: 16px;
    right: 16px;
}

.cta-final__img-col {
    min-height: 340px;
}

.cta-final__img-col img {
    min-height: 340px;
    height: 340px;
}

.cta-final__img-overlay h2 {
    font-size: clamp(24px, 5vw, 32px);
}

.cta-final__form-col {
    padding: 36px 24px;
}

.cta-final__img-checks {
    gap: 8px;
}

}

@media (max-width: 480px) {
.container {
    padding: 0 16px;
}

.hero {
    padding: 50px 0 60px;
}

.hero__copy h1 {
    font-size: clamp(28.8px, 8vw, 38.4px);
}

.hero__form {
    padding: 24px 20px;
}

.hero__metrics {
    flex-direction: column;
    gap: 0;
    background: transparent;
    border: none;
    padding: 0;
}

.metric {
    flex: 1;
    text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.metric:last-child {
    border-bottom: none;
}

.metric p {
    margin-top: 0;
}

.hero__badges {
    gap: 6px;
}

.badge {
    font-size: 11.5px;
    padding: 5px 10px;
}

.categorias, .diferenciais, .processo, .depoimentos, .faq, .cta-final {
    padding: 64px 0;
}

.cat-item {
    padding: 20px 16px;
}

.dif__item {
    gap: 12px;
}

.cta-final__form-card {
    padding: 24px 18px;
}

.wa-float {
    width: 50px;
    height: 50px;
    font-size: 20.8px;
    bottom: 16px;
    right: 16px;
}

.back-top {
    width: 36px;
    height: 36px;
    bottom: 78px;
    right: 16px;
}

}

.diferenciais .sec-eyebrow {
    color: var(--blue);
}

/* ---- CTA FINAL: form identico ao hero ---- */
.cta-form-box {
    position: static !important;
    background: #fff !important;
    border-radius: var(--r-xl) !important;
    overflow: hidden !important;
    box-shadow: 0 32px 80px rgba(0,0,0,.45) !important;
}

.cta-form-box .hero__form-top {
    background: linear-gradient(135deg, var(--blue), #4433ff);
    padding: 24px 28px;
    color: #fff;
}

.cta-form-box .form-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.25);
    font-family: var(--font-head);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--r-full);
    margin-bottom: 10px;
}

.cta-form-box .hero__form-top h2 {
    font-family: var(--font-head);
    font-size: 22.4px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 4px;
    color: #fff;
}

.cta-form-box .hero__form-top h2 span {
    color: var(--orange);
}

.cta-form-box .hero__form-top p {
    font-size: 13.1px;
    opacity: .8;
    color: #fff;
}

.cta-form-box .hform {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
}

.cta-form-box .hform__field {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--off);
    border: 2px solid var(--border-dk);
    border-radius: var(--r-sm);
    padding: 0 14px;
    transition: border-color var(--t);
}

.cta-form-box .hform__field:focus-within {
    border-color: var(--blue);
    background: #fff;
}

.cta-form-box .hform__field i {
    color: var(--ink-3);
    font-size: 13.6px;
    flex-shrink: 0;
}

.cta-form-box .hform__field input,
.cta-form-box .hform__field select {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 14.4px;
    color: var(--ink);
    outline: none;
}

.cta-form-box .hform__field select {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.cta-form-box .hform__field--sel {
    position: relative;
}

.cta-form-box .sel-arrow {
    position: absolute;
    right: 14px;
    color: var(--blue);
    font-size: 12.8px;
    font-weight: 700;
    pointer-events: none;
}

.cta-form-box .btn--cta {
    background: var(--orange);
    color: #fff;
    box-shadow: var(--sh-orange);
}

.cta-form-box .btn--cta:hover {
    background: var(--orange-dk);
}

.cta-form-box .hform__trust {
    display: flex;
    justify-content: space-around;
    padding: 12px 24px 16px;
    border-top: 1px solid var(--border);
    background: #fff;
}

.cta-form-box .hform__trust span {
    font-size: 11.5px;
    color: var(--ink-3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.cta-form-box .hform__trust i {
    color: var(--blue);
}