/* ==========================================================
   TemplateSmart - Tema WordPress v1.2.0
   Stylesheet principal
   ========================================================== */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    /* IMPORTANTE: overflow-x: hidden no html/body QUEBRA position:sticky em mobile/tablet
       (o body vira scroll-container e o header gruda no top do body, que rola junto).
       overflow-x: clip tem o mesmo efeito visual (clipa o overflow horizontal) mas
       NÃO cria scroll-container, então sticky continua funcionando perfeitamente.
       Fallback para hidden em browsers antigos (raros — Safari <16). */
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100%;
}
body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--rp-text, #1F2937);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100%;
    position: relative;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--rp-primary, #0066FF); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--rp-primary-dark, #0052CC); }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4,h5,h6 { margin: 0 0 .6em; font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
ul, ol { padding: 0; margin: 0 0 1em 1.2em; }
.screen-reader-text { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.rp-skip-link { position: absolute; top: -100px; left: 0; background: #000; color: #fff; padding: 10px 20px; z-index: 9999; }
.rp-skip-link:focus { top: 0; }

/* === LAYOUT === */
.rp-container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.rp-narrow { max-width: 800px; }
.rp-text-center { text-align: center; }

/* === ANIMAÇÕES DE ENTRADA (v1.2.2) ===
   Estratégia segura contra cache/quebras de JS:
   - Por padrão, .rp-anim é totalmente visível (opacity: 1, sem transform).
   - As regras "esconder + animar" só ativam quando o JS confirma que está
     funcionando, adicionando html.rp-anims-enabled.
   - Se o JS não rodar (cache antigo, plugin de minificação quebrado, etc.)
     a classe nunca é adicionada e o conteúdo nunca fica escondido.
   - Failsafe extra no JS: após 3s força .is-visible em todos os elementos. */
html.rp-anims-enabled .rp-anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(.4, 0, .2, 1),
                transform .8s cubic-bezier(.4, 0, .2, 1);
    will-change: opacity, transform;
}
html.rp-anims-enabled .rp-anim[data-anim="fade-left"]  { transform: translateX(24px); }
html.rp-anims-enabled .rp-anim[data-anim="fade-right"] { transform: translateX(-24px); }
html.rp-anims-enabled .rp-anim[data-anim="zoom-in"]    { transform: scale(.94); }
html.rp-anims-enabled .rp-anim[data-anim="fade"]       { transform: none; }
html.rp-anims-enabled .rp-anim.is-visible {
    opacity: 1;
    transform: none;
}
/* Delays escalonados para staggers */
html.rp-anims-enabled .rp-anim[data-delay="1"] { transition-delay: .08s; }
html.rp-anims-enabled .rp-anim[data-delay="2"] { transition-delay: .16s; }
html.rp-anims-enabled .rp-anim[data-delay="3"] { transition-delay: .24s; }
html.rp-anims-enabled .rp-anim[data-delay="4"] { transition-delay: .32s; }
html.rp-anims-enabled .rp-anim[data-delay="5"] { transition-delay: .40s; }
html.rp-anims-enabled .rp-anim[data-delay="6"] { transition-delay: .48s; }

/* Stagger automático em grids de cards (sem precisar editar cada item) */
html.rp-anims-enabled .rp-features-grid > .rp-anim:nth-child(2) { transition-delay: .08s; }
html.rp-anims-enabled .rp-features-grid > .rp-anim:nth-child(3) { transition-delay: .16s; }
html.rp-anims-enabled .rp-features-grid > .rp-anim:nth-child(4) { transition-delay: .24s; }
html.rp-anims-enabled .rp-features-grid > .rp-anim:nth-child(5) { transition-delay: .08s; }
html.rp-anims-enabled .rp-features-grid > .rp-anim:nth-child(6) { transition-delay: .16s; }
html.rp-anims-enabled .rp-features-grid > .rp-anim:nth-child(7) { transition-delay: .24s; }
html.rp-anims-enabled .rp-features-grid > .rp-anim:nth-child(8) { transition-delay: .32s; }
html.rp-anims-enabled .rp-stats-grid > .rp-anim:nth-child(2) { transition-delay: .1s; }
html.rp-anims-enabled .rp-stats-grid > .rp-anim:nth-child(3) { transition-delay: .2s; }
html.rp-anims-enabled .rp-stats-grid > .rp-anim:nth-child(4) { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
    html.rp-anims-enabled .rp-anim {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* ============================================================
   BACKGROUND TECNOLÓGICO + MOUSE SPOTLIGHT (v1.2.0)
   ============================================================ */
.rp-tech-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
/* Grid sutil em movimento */
.rp-tech-bg-grid {
    position: absolute;
    inset: -10%;
    background-image:
        linear-gradient(rgba(var(--rp-shadow-rgb, 0, 102, 255),.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--rp-shadow-rgb, 0, 102, 255),.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: rp-grid-drift 60s linear infinite;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
@keyframes rp-grid-drift {
    to { transform: translate(60px, 60px); }
}
/* Blobs gradientes que respiram */
.rp-tech-bg-blob {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .25;
}
.rp-tech-bg-blob-1 {
    background: radial-gradient(circle, var(--rp-primary, #0066FF), transparent 70%);
    top: -200px; left: -200px;
    animation: rp-blob-float-1 25s ease-in-out infinite;
}
.rp-tech-bg-blob-2 {
    background: radial-gradient(circle, var(--rp-secondary, #00C896), transparent 70%);
    bottom: -200px; right: -200px;
    animation: rp-blob-float-2 30s ease-in-out infinite;
}
@keyframes rp-blob-float-1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(120px, 80px); }
}
@keyframes rp-blob-float-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-100px, -60px); }
}
/* Spotlight do mouse — cor configurável via Customizer */
.rp-tech-bg-spotlight {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        500px circle at var(--mx, 50%) var(--my, 50%),
        rgba(var(--rp-spotlight-rgb, 0, 102, 255), .08),
        transparent 50%
    );
    transition: background .2s;
    z-index: -1;
}
@media (prefers-reduced-motion: reduce) {
    .rp-tech-bg-grid, .rp-tech-bg-blob-1, .rp-tech-bg-blob-2 { animation: none !important; }
    .rp-tech-bg-spotlight { display: none; }
}

/* === BOTÕES === */
.rp-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid transparent;   /* base mantém — permite transitions suaves nos variants */
    cursor: pointer;
    transition: transform .25s cubic-bezier(.4, 0, .2, 1), box-shadow .25s, background .25s, color .25s, border-color .25s;
    white-space: nowrap;
    line-height: 1.2;
    overflow: hidden;
}
.rp-btn-primary {
    background: var(--rp-gradient, linear-gradient(135deg, #0066FF 0%, #00C896 100%));
    /* FIX DEFINITIVO (v1.9.2): background-clip:padding-box restringe o gradient à área
       interna (padding-box), NÃO mostrando o gradient no anel de 2px do `border: solid transparent`.
       Sem isso, com background-clip:border-box (padrão), o gradient se computa sobre TODA a área
       (incluindo as bordas transparentes), fazendo as posições EXTREMAS do gradient (cores puras)
       aparecerem nos cantos rounded — efeito de "pontinha colorida diferente do interior".
       Com padding-box, o gradient se computa só sobre a área visualmente preenchida. */
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
    color: #fff !important;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, .12),
        0 1px 3px rgba(0, 0, 0, .08);
}
.rp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, .18),
        0 2px 6px rgba(0, 0, 0, .1);
    color: #fff !important;
}
.rp-btn-primary:active { transform: translateY(-1px) scale(.98); }

/* Shimmer effect — passa um brilho sobre o botão */
.rp-btn-shimmer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .7s ease;
    pointer-events: none;
}
.rp-btn-shimmer:hover::before { transform: translateX(100%); }

.rp-btn-outline {
    background: transparent;
    color: var(--rp-primary, #0066FF);
    border-color: var(--rp-primary, #0066FF);
}
.rp-btn-outline:hover {
    /* Hover do outline: vira gradient (consistente com .rp-btn-primary) com shadow neutra
       + background-clip:padding-box pra mesmo motivo: evitar o gradient mostrar nas bordas
       transparentes quando border-color vira transparent. */
    background: var(--rp-gradient, linear-gradient(135deg, #0066FF 0%, #00C896 100%));
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, .15),
        0 2px 4px rgba(0, 0, 0, .08);
}
.rp-btn-ghost {
    background: rgba(255,255,255,.7);
    color: var(--rp-text, #1F2937);
    border-color: rgba(0,0,0,.1);
    backdrop-filter: blur(8px);
}
.rp-btn-ghost:hover {
    background: #fff;
    border-color: var(--rp-primary, #0066FF);
    color: var(--rp-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.rp-btn-white { background: #fff; color: var(--rp-primary, #0066FF) !important; box-shadow: 0 8px 30px rgba(0,0,0,.15); }
.rp-btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,.25); }
.rp-btn-lg { padding: 16px 34px; font-size: 16px; }
.rp-btn-sm { padding: 8px 18px; font-size: 13px; }
.rp-btn-block { display: flex; width: 100%; }


/* ============================================================
   TOPBAR
   ============================================================ */
.rp-topbar {
    /* Gradient sutil em vez de cor chapada */
    background: linear-gradient(90deg, var(--rp-dark, #0A0E27) 0%, #1A2238 50%, var(--rp-dark, #0A0E27) 100%);
    color: rgba(255,255,255,.88);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.05);
    z-index: 50;
}
.rp-topbar .rp-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
/* Indicador "online" pulsante (v1.8.0) */
.rp-topbar-info { display: flex; align-items: center; gap: 10px; }
.rp-topbar-pulse {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}
.rp-topbar-pulse-dot {
    position: relative;
    z-index: 2;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ADE80;
    box-shadow: 0 0 8px rgba(74, 222, 128, .7);
}
.rp-topbar-pulse-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(74, 222, 128, .35);
    animation: rp-topbar-pulse-ring 2s ease-out infinite;
}
@keyframes rp-topbar-pulse-ring {
    0%   { transform: scale(.6); opacity: .9; }
    100% { transform: scale(2.2); opacity: 0; }
}
.rp-topbar-text {
    background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.78));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: .01em;
}

/* Shimmer sutil que passa de tempos em tempos (~12s) — toque vivo e premium */
.rp-topbar-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(var(--rp-primary-rgb, 0, 102, 255), .14) 50%, transparent 65%);
    transform: translateX(-100%);
    animation: rp-topbar-shimmer 12s ease-in-out infinite;
    pointer-events: none;
}
@keyframes rp-topbar-shimmer {
    0%, 70% { transform: translateX(-100%); }
    100%    { transform: translateX(100%); }
}

.rp-topbar-actions { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.rp-topbar-link {
    color: rgba(255,255,255,.85);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    transition: background .25s, color .25s, transform .25s;
    transition: color .2s;
}
.rp-topbar-link:hover {
    color: #fff;
    background: rgba(var(--rp-primary-rgb, 0, 102, 255), .15);
    transform: translateY(-1px);
}
.rp-topbar-link svg { opacity: .8; }
.rp-topbar-link:hover svg { opacity: 1; }


/* ============================================================
   HEADER (com sticky float - v1.2.0)
   ============================================================ */
.rp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: padding .5s cubic-bezier(.4, 0, .2, 1);
    padding: 0;
}
.rp-header-shell {
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    /* Transition simétrica: anima APENAS max-width.
       Margin fica fixo em "0 auto" sempre — assim o shell sempre está centralizado
       e expande/comprime para os DOIS lados ao mesmo tempo (sem o efeito de
       "vindo da esquerda" que acontecia quando margin animava de 0 → 0 auto). */
    transition: max-width .55s cubic-bezier(.4, 0, .2, 1),
                background .35s ease,
                border-radius .35s ease,
                box-shadow .35s ease,
                border-color .35s ease;
    max-width: 100%;
    margin: 0 auto;
}
/* Modo flutuante:
   - desce 22px do topo (mais perceptível)
   - max-width = 1240px MATCH com .rp-container, então logo e botão NÃO mudam de posição;
     só o espaço vazio nos lados (entre o conteúdo e a borda do viewport) é compactado. */
.rp-header.is-floating {
    padding: 22px 0 0;
}
.rp-header.is-floating .rp-header-shell {
    max-width: 1240px;
    /* margin: 0 auto já está no estado base, não precisa repetir */
    border-radius: 20px;
    box-shadow: 0 14px 40px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.04);
    background: rgba(255,255,255,.92);
    border-bottom-color: transparent;
}
.rp-header.is-floating .rp-header-inner { height: 66px; }

/* Em viewports menores, padding lateral pra cantos arredondados não serem cortados */
@media (max-width: 1280px) {
    .rp-header.is-floating { padding: 22px 16px 0; }
}

.rp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 90px; /* mais alto para a logo respirar (era 76px) */
    transition: height .35s cubic-bezier(.4, 0, .2, 1);
}

/* Logo com padding interno extra para não encostar nas bordas */
.rp-header-logo {
    display: flex;
    align-items: center;
    padding: 8px 0;
}
.rp-header-logo img { max-height: 56px; }
.rp-header-logo img { max-height: 48px; width: auto; }
.rp-logo-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
    color: var(--rp-dark, #0A0E27);
    letter-spacing: -.02em;
}
.rp-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--rp-gradient);
    font-size: 18px;
    color: #fff;
}

/* Menu — underline estiloso (v1.2.0) */
.rp-nav { flex: 1; }
.rp-menu {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
}
.rp-menu li { position: relative; }
.rp-menu > li > a {
    display: inline-block;
    padding: 10px 14px;
    color: var(--rp-text, #1F2937);
    font-weight: 500;
    font-size: 15px;
    transition: color .25s;
    position: relative;
}
.rp-menu > li > a::after {
    content: '';
    position: absolute;
    left: 14px; right: 14px;
    bottom: 4px;
    height: 2px;
    background: var(--rp-gradient);
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .35s cubic-bezier(.6, .2, .2, 1.2);
}
.rp-menu > li:not(:has(a[href*="#"])) > a.is-current::after,
.rp-menu > li:not(:has(a[href*="#"])).current-menu-item > a::after,
.rp-menu > li > a:hover::after { transform: scaleX(1); }
.rp-menu > li > a:hover { color: var(--rp-primary, #0066FF); }
.rp-menu > li:not(:has(a[href*="#"])).current-menu-item > a { color: var(--rp-primary, #0066FF); }

/* Submenu */
.rp-menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,.12);
    border-radius: 14px;
    padding: 8px;
    min-width: 220px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .2s;
}
.rp-menu li:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.rp-menu .sub-menu a { display: block; padding: 10px 14px; border-radius: 8px; color: var(--rp-text); }
.rp-menu .sub-menu a:hover { background: rgba(var(--rp-shadow-rgb, 0, 102, 255),.06); color: var(--rp-primary); }

.rp-header-cta { display: flex; align-items: center; gap: 12px; }
.rp-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 10px;
    border-radius: 8px;
}

/* Rodapé do drawer mobile — escondido no desktop */
.rp-nav-footer { display: none; }
.rp-burger span { width: 22px; height: 2px; background: var(--rp-text); border-radius: 2px; transition: all .25s; }
.rp-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rp-burger.is-open span:nth-child(2) { opacity: 0; }
.rp-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO + Mapa animado (v1.2.0 — sem cerca virtual, ruas alinhadas)
   ============================================================ */
.rp-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
}
.rp-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.rp-hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .25;
}
.rp-hero-glow-1 { background: var(--rp-primary, #0066FF); top: -200px; left: -200px; animation: rp-float 20s ease-in-out infinite; }
.rp-hero-glow-2 { background: var(--rp-secondary, #00C896); bottom: -200px; right: -200px; animation: rp-float 25s ease-in-out infinite reverse; }
@keyframes rp-float {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(80px, 80px) scale(1.1); }
}
.rp-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--rp-shadow-rgb, 0, 102, 255),.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--rp-shadow-rgb, 0, 102, 255),.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.rp-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.rp-hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(var(--rp-shadow-rgb, 0, 102, 255), .08);
    color: var(--rp-primary, #0066FF);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(var(--rp-shadow-rgb, 0, 102, 255),.15);
}
.rp-hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--rp-dark, #0A0E27);
    margin-bottom: 24px;
}
.rp-hero-title span {
    background: var(--rp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.rp-hero-subtitle {
    font-size: 18px;
    color: #4B5563;
    max-width: 540px;
    margin-bottom: 32px;
}
.rp-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.rp-hero-trust { display: flex; align-items: center; gap: 16px; }
.rp-hero-avatars { display: flex; }
.rp-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border: 3px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.rp-avatar:first-child { margin-left: 0; }
.rp-hero-trust-text { display: flex; flex-direction: column; font-size: 14px; color: #6B7280; }
.rp-hero-trust-text strong { color: var(--rp-dark); font-size: 15px; }

/* Hero map container */
.rp-hero-visual { position: relative; }

/* === HERO COM IMAGEM CUSTOMIZADA — layout panorâmico diagonal (v1.8.2) ===
   Quando o usuário sobe uma imagem própria via Customizer, a hero ganha um
   layout em que a imagem "fura" o container e ocupa ~58% da viewport à direita,
   com clip-path diagonal na borda esquerda (parece uma faixa cortada).
   O conteúdo (badge, título, botões, trust) fica por cima — z-index 2 vence z-index 1. */
.rp-hero-has-image { overflow: hidden; }
.rp-hero-has-image .rp-hero-inner {
    /* IMPORTANTE: position static (não relative) — assim a imagem se posiciona
       relativa à própria .rp-hero (section), preenchendo TODA a altura,
       incluindo os paddings top:80px e bottom:100px da seção. */
    position: static;
    grid-template-columns: 1fr;       /* 1 coluna: conteúdo manda; imagem é absolute */
    min-height: 540px;                /* altura mínima do bloco de conteúdo */
    align-items: center;
}
.rp-hero-has-image .rp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 60%;                   /* limita largura do texto pra não invadir a área da imagem */
}
.rp-hero-has-image .rp-hero-visual {
    position: absolute;
    right: 0;                         /* section é full-width: borda direita = viewport */
    top: 0;
    bottom: 0;                        /* preenche TODA a altura da section, padding incluído */
    width: 58vw;
    margin: 0;
    z-index: 1;
    pointer-events: none;             /* botões dentro do content continuam clicáveis na sobreposição */
}
.rp-hero-has-image .rp-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Clip-path diagonal: top-left a 15% da largura do elemento, bottom-left no 0%.
       O resultado é um trapezóide que se alarga para baixo, deixando uma faixa
       diagonal "cortada" na esquerda. Top-left=(15%,0) → Bottom-left=(0%,100%) */
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    border-radius: 0;
    /* Sombra sutil na borda diagonal não funciona com clip-path nativo,
       mas um leve filter dá profundidade ao recorte */
    filter: contrast(1.04) saturate(1.06);
}

/* Tablet pequeno (≤1024px): reduz ocupação ou desativa diagonal pra preservar leitura */
@media (max-width: 1024px) {
    .rp-hero-has-image .rp-hero-inner {
        min-height: auto;
        grid-template-columns: 1fr;
    }
    .rp-hero-has-image .rp-hero-content {
        max-width: 100%;               /* recupera largura total no tablet/mobile */
    }
    .rp-hero-has-image .rp-hero-visual {
        position: relative;            /* volta pro fluxo normal */
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }
    .rp-hero-has-image .rp-hero-img {
        clip-path: none;               /* mobile/tablet: imagem retangular normal pra não cortar info */
        -webkit-clip-path: none;
        border-radius: 20px;
    }
}

.rp-hero-map {
    position: relative;
    width: 100%;
    aspect-ratio: 6/5;
    background: linear-gradient(135deg, var(--rp-primary, #0066FF) 0%, var(--rp-primary-dark, #0052CC) 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(var(--rp-shadow-rgb, 0, 102, 255), .35),
        0 0 0 1px rgba(255,255,255,.08) inset;
}
.rp-hero-map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.rp-hero-map-brand {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    z-index: 3;
}
.rp-hero-map-brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: var(--rp-gradient);
    border-radius: 8px;
    font-size: 14px;
}
.rp-hero-map-brand-text {
    font-weight: 800;
    font-size: 15px;
    color: var(--rp-dark, #0A0E27);
    letter-spacing: -.01em;
}
.rp-hero-map-status {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
}
.rp-hero-map-status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #4ADE80;
    box-shadow: 0 0 0 3px rgba(74,222,128,.3);
    animation: rp-status-blink 2s ease-in-out infinite;
}
@keyframes rp-status-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}
.rp-hero-map-info-card {
    position: absolute;
    bottom: 18px;
    left: 18px;
    padding: 12px 16px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    z-index: 3;
}
.rp-hero-map-info-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #6B7280;
    margin-bottom: 2px;
}
.rp-hero-map-info-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--rp-dark);
    line-height: 1;
}
.rp-hero-map-info-value small {
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
}
.rp-hero-map-info-extra {
    display: block;
    font-size: 11px;
    color: #6B7280;
    margin-top: 2px;
    font-weight: 600;
}

/* === SENSORS CARD (canto inferior direito) — espelho visual do "MEU CARRO" === */
.rp-hero-map-sensors-card {
    position: absolute;
    bottom: 18px;
    right: 18px;
    padding: 11px 14px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
    z-index: 3;
    min-width: 175px;
}
.rp-hero-map-sensors-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #6B7280;
    margin-bottom: 8px;
}
.rp-hero-map-sensors-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.rp-hero-map-sensor {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    color: var(--rp-dark, #0A0E27);
    line-height: 1;
}
.rp-hero-map-sensor-icon {
    font-size: 13px;
    line-height: 1;
}
.rp-hero-map-sensor-name {
    font-weight: 600;
    flex: 1;
    color: #4B5563;
}
.rp-hero-map-sensor-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 11px;
    padding: 3px 8px 3px 6px;
    border-radius: 999px;
    transition: all .3s;
}
.rp-hero-map-sensor-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all .3s;
}
.rp-hero-map-sensor-on {
    background: rgba(74, 222, 128, .14);
    color: #15803D;
}
.rp-hero-map-sensor-on .rp-hero-map-sensor-dot {
    background: #4ADE80;
    box-shadow: 0 0 6px rgba(74, 222, 128, .65);
    animation: rp-status-blink 2s ease-in-out infinite;
}
.rp-hero-map-sensor-off {
    background: rgba(148, 163, 184, .14);
    color: #64748B;
}
.rp-hero-map-sensor-off .rp-hero-map-sensor-dot {
    background: #94A3B8;
}

/* DARK MODE: cor de fundo das ruas = azul-noite (a cor da marca aparece como ACCENT na rota) */
.rp-map-base { fill: #0E1626; }

/* Rota usa a cor primária do tema como accent neon sobre o dark map */
.rp-map-route { stroke: var(--rp-primary, #0066FF); }

/* MOOD LIGHTING: poças coloridas usam mix-blend-mode screen para somar luz
   (em vez de simplesmente sobrepor cor). Resultado: o asfalto ganha glow neon
   onde a luz toca, sem chapar a cor. Breathe sutil simula flutuação atmosférica. */
.rp-map-mood {
    mix-blend-mode: screen;
    animation: rp-mood-breathe 9s ease-in-out infinite;
}
.rp-map-haze {
    mix-blend-mode: overlay;
    opacity: .85;
}
@keyframes rp-mood-breathe {
    0%, 100% { opacity: .9; }
    50%      { opacity: 1; }
}

/* === EFEITOS TECH (v1.2.8) === */

/* #6 Grade holográfica — drift lento e sutil sobre tudo */
.rp-map-holo-overlay {
    transform-box: fill-box;
    transform-origin: 0 0;
    animation: rp-holo-drift 22s linear infinite;
    mix-blend-mode: overlay;
}
@keyframes rp-holo-drift {
    from { transform: translate(0, 0); }
    to   { transform: translate(22px, 22px); }
}

/* #4 Data points pulsantes — outros veículos rastreados em background */
.rp-map-data-pulse {
    transform-origin: center;
    transform-box: fill-box;
    animation: rp-data-pulse 4s ease-out infinite;
}
.rp-map-data-point[data-pulse="0"] .rp-map-data-pulse { animation-delay: 0s; }
.rp-map-data-point[data-pulse="1"] .rp-map-data-pulse { animation-delay: .55s; }
.rp-map-data-point[data-pulse="2"] .rp-map-data-pulse { animation-delay: 1.1s; }
.rp-map-data-point[data-pulse="3"] .rp-map-data-pulse { animation-delay: 1.65s; }
.rp-map-data-point[data-pulse="4"] .rp-map-data-pulse { animation-delay: 2.2s; }
.rp-map-data-point[data-pulse="5"] .rp-map-data-pulse { animation-delay: 2.75s; }
@keyframes rp-data-pulse {
    0%   { transform: scale(.4); opacity: 0; }
    15%  { transform: scale(.4); opacity: 1; }
    100% { transform: scale(2.6); opacity: 0; }
}

/* #2 Scan line — varre o mapa top→bottom estilo radar */
.rp-map-scan {
    transform-box: fill-box;
    animation: rp-scan-sweep 7s ease-in-out infinite;
}
@keyframes rp-scan-sweep {
    0%   { transform: translateY(0); opacity: 0; }
    5%   { opacity: .8; }
    50%  { transform: translateY(580px); opacity: .8; }
    52%  { transform: translateY(580px); opacity: 0; }
    100% { transform: translateY(580px); opacity: 0; }
}

/* Carro único — anima de Casa → Hospital → Casa com curvas suaves nas esquinas.
   O Q (quadratic bezier) faz o carro rotacionar gradualmente em vez de snap brusco. */
.rp-map-car {
    transform-box: fill-box;
    offset-path: path('M 300 414 L 300 178 Q 300 168 310 168 L 438 168 Q 448 168 448 178 L 448 250');
    offset-rotate: auto;
    animation: rp-drive 18s linear infinite;
}

/* #7 Trilha fantasma — 2 cópias do carro com delay pequeno e opacity reduzida.
   O wrapper <g> tem opacity fixa (multiplica com a opacity do keyframe 0→1→0). */
.rp-map-car-ghost-wrap-1 { opacity: .42; }
.rp-map-car-ghost-wrap-2 { opacity: .18; }
.rp-map-car-ghost-1 { animation-delay: .18s; }
.rp-map-car-ghost-2 { animation-delay: .36s; }
@keyframes rp-drive {
    /* Ida: Casa → Hospital (3% a 44% = ~7,4s de viagem) */
    0%      { offset-distance: 0%;   offset-rotate: auto 0deg;   opacity: 0; }
    3%      { offset-distance: 0%;   offset-rotate: auto 0deg;   opacity: 1; }
    44%     { offset-distance: 100%; offset-rotate: auto 0deg;   opacity: 1; }
    /* Pausa no Hospital, fade out (44% a 47%) */
    47%     { offset-distance: 100%; offset-rotate: auto 0deg;   opacity: 0; }
    /* Flip da rotação enquanto invisível (47% a 49%) */
    49%     { offset-distance: 100%; offset-rotate: auto 180deg; opacity: 0; }
    /* Fade in voltando (50%) */
    50%     { offset-distance: 100%; offset-rotate: auto 180deg; opacity: 1; }
    /* Volta: Hospital → Casa (50% a 91% = ~7,4s de viagem) */
    91%     { offset-distance: 0%;   offset-rotate: auto 180deg; opacity: 1; }
    /* Pausa em Casa, fade out (91% a 94%) */
    94%     { offset-distance: 0%;   offset-rotate: auto 180deg; opacity: 0; }
    /* Reset rotação enquanto invisível (94% a 96%) */
    96%     { offset-distance: 0%;   offset-rotate: auto 0deg;   opacity: 0; }
    100%    { offset-distance: 0%;   offset-rotate: auto 0deg;   opacity: 0; }
}

/* Pulse ao redor dos POIs (Casa e Hospital) */
.rp-map-poi-pulse {
    transform-origin: center;
    transform-box: fill-box;
    animation: rp-poi-pulse 2.5s ease-out infinite;
}
.rp-map-poi:nth-of-type(2) .rp-map-poi-pulse {
    animation-delay: 1.25s;
}
@keyframes rp-poi-pulse {
    0%   { transform: scale(.5); opacity: 1; }
    100% { transform: scale(2);  opacity: 0; }
}

/* Trilha animada (dashes brancas fluindo sobre a rota azul) */
.rp-map-route-flow {
    animation: rp-route-flow 1.5s linear infinite;
}
@keyframes rp-route-flow {
    to { stroke-dashoffset: -24; }
}

/* Logo customizada do cliente (quando upload em Identidade do Site) */
.rp-hero-map-brand-logo {
    max-height: 28px;
    width: auto;
    display: block;
}

/* Fallback: navegadores muito antigos sem offset-path mostram só o mapa estático */
@supports not (offset-path: path('M 0 0 L 1 1')) {
    .rp-map-car { display: none; }
}


/* ============================================================
   SECTION HEADER
   ============================================================ */
.rp-section-header { text-align: center; max-width: 740px; margin: 0 auto 60px; }
.rp-section-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(var(--rp-shadow-rgb, 0, 102, 255), .08);
    color: var(--rp-primary, #0066FF);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: 16px;
}
.rp-section-eyebrow-light { background: rgba(255,255,255,.15); color: #fff; }
.rp-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--rp-dark, #0A0E27);
    margin-bottom: 16px;
}
.rp-section-title-light { color: #fff; }
.rp-section-subtitle {
    font-size: 18px;
    color: #6B7280;
    margin: 0;
}


/* ============================================================
   TRUSTBAR (v1.2.5 — visual melhorado)
   ============================================================ */
.rp-trustbar {
    position: relative;
    background: linear-gradient(135deg, var(--rp-dark, #0A0E27) 0%, #14182F 100%);
    color: rgba(255,255,255,.85);
    padding: 28px 0;
    overflow: hidden;
}
.rp-trustbar-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(var(--rp-primary-rgb, 0, 102, 255), .15), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(var(--rp-shadow-rgb, 0, 200, 150), .1), transparent 50%);
    pointer-events: none;
    opacity: .6;
}
.rp-trustbar-inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.rp-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}
.rp-trust-item:hover { transform: translateY(-2px); }
.rp-trust-icon-wrap {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all .25s ease;
}
.rp-trust-item:hover .rp-trust-icon-wrap {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.2);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(var(--rp-shadow-rgb, 0, 102, 255), .15);
}
.rp-trust-icon { font-size: 22px; line-height: 1; }
.rp-trust-text { display: flex; flex-direction: column; line-height: 1.3; }
.rp-trust-text strong {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 1px;
}
.rp-trust-text span {
    color: rgba(255,255,255,.6);
    font-size: 12px;
}


/* ============================================================
   FEATURES (cards clicáveis - v1.2.0)
   ============================================================ */
.rp-features { padding: 100px 0; position: relative; }
.rp-features::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(var(--rp-shadow-rgb, 0, 102, 255),.04), transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(0,200,150,.04), transparent 40%);
    pointer-events: none;
}
.rp-features-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.rp-feature-card {
    display: block;
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(0,0,0,.05);
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    color: var(--rp-text) !important;
    text-decoration: none;
}
.rp-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--rp-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}
.rp-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(var(--rp-shadow-rgb, 0, 102, 255),.15);
    border-color: transparent;
    background: #fff;
}
.rp-feature-card:hover::before { transform: scaleX(1); }
.rp-feature-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(var(--rp-shadow-rgb, 0, 102, 255),.1), rgba(0,200,150,.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: transform .3s;
}
.rp-feature-card:hover .rp-feature-icon { transform: scale(1.1) rotate(-5deg); }
.rp-feature-title { font-size: 19px; color: var(--rp-dark); margin-bottom: 10px; }
.rp-feature-desc { color: #6B7280; font-size: 15px; margin: 0 0 12px; }
.rp-feature-arrow {
    position: absolute;
    top: 32px; right: 28px;
    color: var(--rp-primary);
    opacity: 0;
    transform: translateX(-8px);
    transition: all .3s;
}
.rp-feature-card:hover .rp-feature-arrow { opacity: 1; transform: translateX(0); }
.rp-feature-link-hint {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--rp-primary);
    opacity: 0;
    transform: translateY(8px);
    transition: all .3s;
}
.rp-feature-card:hover .rp-feature-link-hint {
    opacity: 1;
    transform: translateY(0);
}
.rp-features-cta-all {
    text-align: center;
    margin-top: 50px;
    position: relative;
}


/* ============================================================
   LOGOS DE CLIENTES — carrossel infinito (v1.4.0)
   ============================================================ */
.rp-logos {
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
}
.rp-logos-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}
.rp-logos-title-line {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,.12), transparent);
}
.rp-logos-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .15em;
    color: #6B7280;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
}
.rp-logos-viewport {
    overflow: hidden;
    /* Máscara de fade nas bordas para o scroll parecer infinito */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.rp-logos-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 24px;
    animation: rp-logos-scroll 40s linear infinite;
}
.rp-logos-track:hover {
    animation-play-state: paused;
}
/* Card branco uniforme — todos os logos no MESMO tamanho independente do tamanho real do PNG.
   180×120px com object-fit:contain centraliza cada logo respeitando proporção, sem distorcer. */
.rp-logos-item {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
    padding: 18px;
    transition: all .3s ease;
}
.rp-logos-item:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: rgba(var(--rp-primary-rgb, 0, 102, 255), .2);
    box-shadow: 0 12px 24px rgba(var(--rp-primary-rgb, 0, 102, 255), .12);
}
.rp-logos-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Modo demo (sem logos uploadados) — usa placeholders SVG */
.rp-logos-item-demo {
    opacity: 1;
    filter: none;
}
.rp-logos-item-demo svg {
    width: 100%;
    height: auto;
    max-height: 60px;
}
.rp-logos-demo-note {
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #6B7280;
    background: rgba(var(--rp-primary-rgb, 0, 102, 255), .06);
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px dashed rgba(var(--rp-primary-rgb, 0, 102, 255), .25);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.rp-logos-demo-note a {
    font-weight: 700;
}
.rp-logos-demo-note em {
    display: block;
    font-size: 11px;
    color: #9CA3AF;
    margin-top: 4px;
}

/* Loop seamless: translateX precisa ser exatamente "1 set + 1 gap" pra o item após
   o último do set 1 (que é o primeiro do set 2) cair na posição do primeiro do set 1.
   Fórmula: translate = -50% - (gap / 2). Para gap: 24px → -50% - 12px. */
@keyframes rp-logos-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-50% - 12px)); }
}


/* ============================================================
   BANNER DE GARANTIA 30 DIAS (home v1.4.0)
   ============================================================ */
.rp-guarantee-banner {
    padding: 60px 0;
    position: relative;
}
.rp-guarantee-banner-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 50px;
    background: linear-gradient(135deg, #fff 0%, #FAFBFE 100%);
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 25px 70px rgba(var(--rp-shadow-rgb, 0, 102, 255), .12);
    overflow: hidden;
}
.rp-guarantee-banner-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 0% 0%, rgba(var(--rp-primary-rgb, 0, 102, 255), .1), transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(0, 200, 150, .08), transparent 40%);
}
.rp-guarantee-banner-seal {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.rp-guarantee-banner-seal svg {
    filter: drop-shadow(0 8px 25px rgba(var(--rp-shadow-rgb, 0, 102, 255), .3));
}
.rp-guarantee-banner-content {
    position: relative;
    z-index: 1;
}
.rp-guarantee-banner-content h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--rp-dark, #0A0E27);
    margin: 0 0 8px;
    line-height: 1.2;
}
.rp-guarantee-banner-content p {
    color: #6B7280;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
.rp-guarantee-banner-badges {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rp-guarantee-banner-badge {
    padding: 6px 12px;
    background: rgba(var(--rp-primary-rgb, 0, 102, 255), .08);
    color: var(--rp-primary, #0066FF);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .rp-guarantee-banner-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 24px;
        text-align: center;
    }
    .rp-guarantee-banner-seal { margin: 0 auto; }
    .rp-guarantee-banner-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* ============================================================
   CALCULADORA DE ROI (v1.4.0)
   ============================================================ */
.rp-calc {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.rp-calc::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(var(--rp-primary-rgb, 0, 102, 255), .04), transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 200, 150, .04), transparent 50%);
    pointer-events: none;
}
.rp-calc-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 30px 80px rgba(var(--rp-shadow-rgb, 0, 102, 255), .12);
}

/* Inputs */
.rp-calc-inputs-title {
    font-size: 18px;
    color: var(--rp-dark, #0A0E27);
    margin-bottom: 24px;
}
.rp-calc-field {
    margin-bottom: 28px;
}
.rp-calc-field label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    color: var(--rp-dark, #0A0E27);
    margin-bottom: 12px;
}
.rp-calc-value-display {
    font-size: 18px;
    font-weight: 800;
    background: var(--rp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.rp-calc-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.rp-calc-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    cursor: pointer;
    transition: all .25s;
    font-size: 13px;
    font-weight: 600;
    color: var(--rp-text);
}
.rp-calc-type:hover {
    border-color: var(--rp-primary);
}
.rp-calc-type.is-active {
    background: linear-gradient(135deg, rgba(var(--rp-primary-rgb, 0, 102, 255), .08), rgba(0, 200, 150, .04));
    border-color: var(--rp-primary);
    box-shadow: 0 6px 20px rgba(var(--rp-shadow-rgb, 0, 102, 255), .15);
}
.rp-calc-type-icon {
    font-size: 28px;
    line-height: 1;
}

/* Slider */
.rp-calc-field input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    background: linear-gradient(90deg,
        rgba(var(--rp-primary-rgb, 0, 102, 255), .15),
        rgba(0, 200, 150, .25));
    border-radius: 3px;
    outline: none;
    margin: 6px 0;
}
.rp-calc-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--rp-gradient);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(var(--rp-shadow-rgb, 0, 102, 255), .35);
    transition: transform .15s;
}
.rp-calc-field input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}
.rp-calc-field input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--rp-primary);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(var(--rp-shadow-rgb, 0, 102, 255), .35);
}
.rp-calc-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #9CA3AF;
    font-weight: 600;
    margin-top: 4px;
}
.rp-calc-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px dashed rgba(0,0,0,.1);
}
.rp-calc-stat {
    text-align: center;
}
.rp-calc-stat-num {
    display: block;
    font-size: 22px;
    font-weight: 800;
    background: var(--rp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 4px;
}
.rp-calc-stat-label {
    font-size: 11px;
    color: #6B7280;
    line-height: 1.4;
}

/* Results */
.rp-calc-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.rp-calc-card {
    position: relative;
    padding: 24px 26px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.06);
    background: #fff;
    transition: transform .3s;
}
.rp-calc-card:hover {
    transform: translateY(-2px);
}
.rp-calc-card-icon {
    position: absolute;
    top: 20px; right: 24px;
    font-size: 32px;
    opacity: .6;
}
.rp-calc-card-bad {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
    border-color: rgba(239, 68, 68, .15);
}
.rp-calc-card-good {
    background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
    border-color: rgba(34, 197, 94, .2);
}
.rp-calc-card header {
    margin-bottom: 12px;
}
.rp-calc-card-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: 4px;
}
.rp-calc-card-bad .rp-calc-card-eyebrow { color: #DC2626; }
.rp-calc-card-good .rp-calc-card-eyebrow { color: #15803D; }
.rp-calc-card h4 {
    font-size: 14px;
    color: var(--rp-text);
    margin: 0;
    font-weight: 600;
}
.rp-calc-card-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}
.rp-calc-card-value strong {
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.02em;
    transition: color .3s;
}
.rp-calc-card-bad .rp-calc-card-value strong { color: #DC2626; }
.rp-calc-card-good .rp-calc-card-value strong { color: #16A34A; }
.rp-calc-card-value small {
    font-size: 14px;
    color: #6B7280;
    font-weight: 600;
}
.rp-calc-card-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.rp-calc-card-details li {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.5;
}

.rp-calc-conclusion {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 24px 28px;
    background: var(--rp-gradient);
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 50px rgba(var(--rp-shadow-rgb, 0, 102, 255), .35);
}
.rp-calc-conclusion-icon {
    font-size: 38px;
    line-height: 1;
}
.rp-calc-conclusion-text {
    line-height: 1.3;
}
.rp-calc-conclusion-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    color: rgba(255,255,255,.85);
    margin-bottom: 4px;
}
.rp-calc-conclusion-text strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -.02em;
}
.rp-calc-conclusion-text strong small {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
}
.rp-calc-conclusion-sub {
    font-size: 13px;
    color: rgba(255,255,255,.85);
}
.rp-calc-conclusion .rp-btn {
    background: #fff;
    color: var(--rp-primary) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.rp-calc-conclusion .rp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
}

@media (max-width: 768px) {
    .rp-calc { padding: 60px 0; }
    .rp-calc-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 22px;
    }
    .rp-calc-conclusion {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 14px;
    }
    .rp-calc-conclusion .rp-btn { justify-self: center; }
}


/* ============================================================
   ABOUT TEASER — versão compacta na home (v1.4.6)
   ============================================================ */
.rp-about-teaser {
    padding: 80px 0;
    position: relative;
}
.rp-about-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Visual: círculo grande + 2 badges flutuantes */
.rp-about-teaser-visual {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 380px;
    margin: 0 auto;
}
.rp-about-teaser-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--rp-shadow-rgb, 0, 102, 255), .25), transparent 70%);
    animation: rp-about-teaser-pulse 4s ease-in-out infinite;
}
@keyframes rp-about-teaser-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .8; }
    50%      { transform: translate(-50%, -50%) scale(1.15); opacity: .4; }
}

.rp-about-teaser-circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 240px; height: 240px;
    background: var(--rp-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 30px 60px rgba(var(--rp-shadow-rgb, 0, 102, 255), .35),
                inset 0 0 40px rgba(255,255,255,.1);
    text-align: center;
    padding: 20px;
    z-index: 1;
}
.rp-about-teaser-stat-num {
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
}
.rp-about-teaser-stat-label {
    font-size: 13px;
    margin-top: 8px;
    opacity: .92;
    letter-spacing: .02em;
}

.rp-about-teaser-badge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 14px 30px rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    animation: rp-float 5s ease-in-out infinite;
}
.rp-about-teaser-badge-icon {
    font-size: 22px;
    line-height: 1;
}
.rp-about-teaser-badge small {
    font-size: 12px;
    color: var(--rp-dark);
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
}
.rp-about-teaser-badge-1 {
    top: 8%; left: -8%;
}
.rp-about-teaser-badge-2 {
    bottom: 10%; right: -8%;
    animation-delay: 1.8s;
}

/* Conteúdo (texto + botão) */
.rp-about-teaser-content {
    /* nada especial, só herda */
}
.rp-about-teaser-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--rp-dark, #0A0E27);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -.02em;
}
.rp-about-teaser-text {
    color: #4B5563;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 28px;
}

@media (max-width: 768px) {
    .rp-about-teaser { padding: 60px 0; }
    .rp-about-teaser-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .rp-about-teaser-visual {
        max-width: 280px;
    }
    .rp-about-teaser-circle {
        width: 200px; height: 200px;
    }
    .rp-about-teaser-stat-num {
        font-size: 30px;
    }
    .rp-about-teaser-badge {
        padding: 8px 12px;
    }
    .rp-about-teaser-badge small {
        font-size: 11px;
    }
}


/* ============================================================
   APP FEATURES — 3 cards de destaque (v1.4.5)
   ============================================================ */
.rp-app-features {
    padding: 100px 0;
    background: #fff;
    position: relative;
}
.rp-app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.rp-app-feature-card {
    position: relative;
    padding: 36px 30px;
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,.05);
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
    --card-color: var(--rp-primary, #0066FF);
    --card-bg: rgba(var(--rp-primary-rgb, 0, 102, 255), .08);
}
/* Cores diferentes por card */
.rp-app-feature-card-1 {
    --card-color: var(--rp-primary, #0066FF);
    --card-bg: rgba(var(--rp-primary-rgb, 0, 102, 255), .12);
}
.rp-app-feature-card-2 {
    --card-color: #EF4444;
    --card-bg: rgba(239, 68, 68, .12);
}
.rp-app-feature-card-3 {
    --card-color: #F59E0B;
    --card-bg: rgba(245, 158, 11, .14);
}

.rp-app-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: var(--card-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}
.rp-app-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(var(--rp-shadow-rgb, 0, 102, 255), .15);
    border-color: transparent;
}
.rp-app-feature-card:hover::before { transform: scaleX(1); }

.rp-app-feature-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    margin-bottom: 22px;
    transition: transform .35s;
    position: relative;
}
.rp-app-feature-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--card-color);
    opacity: 0;
    transition: opacity .35s;
    z-index: 0;
}
.rp-app-feature-card:hover .rp-app-feature-icon {
    transform: scale(1.08) rotate(-6deg);
}
.rp-app-feature-card:hover .rp-app-feature-icon::after {
    opacity: .15;
}
.rp-app-feature-icon span {
    position: relative;
    z-index: 1;
    font-size: 38px;
    line-height: 1;
}
.rp-app-feature-card h3 {
    font-size: 22px;
    color: var(--rp-dark);
    margin-bottom: 10px;
    letter-spacing: -.01em;
    transition: color .25s;
}
.rp-app-feature-card:hover h3 {
    color: var(--card-color);
}
.rp-app-feature-card p {
    color: #6B7280;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

/* "E muito mais" — link pra todas as funcionalidades */
.rp-app-features-more {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 28px 36px;
    background: linear-gradient(135deg, rgba(var(--rp-primary-rgb, 0, 102, 255), .04), rgba(0, 200, 150, .04));
    border-radius: 20px;
    border: 1px solid rgba(var(--rp-primary-rgb, 0, 102, 255), .1);
}
.rp-app-features-more-icon {
    font-size: 40px;
    line-height: 1;
    flex-shrink: 0;
}
.rp-app-features-more p {
    flex: 1;
    margin: 0;
    color: var(--rp-dark);
    font-size: 15px;
    line-height: 1.5;
}
.rp-app-features-more .rp-btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .rp-app-features { padding: 60px 0; }
    .rp-app-features-grid { gap: 20px; }
    .rp-app-feature-card { padding: 28px 24px; }
    .rp-app-feature-icon { width: 64px; height: 64px; }
    .rp-app-feature-icon span { font-size: 32px; }
    .rp-app-features-more {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px;
    }
}


/* ============================================================
   APP QR CODES (página /app/ — v1.4.4)
   ============================================================ */
.rp-app-qr {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, #F8FAFF 100%);
    position: relative;
}
.rp-app-qr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.rp-app-qr-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 24px;
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 14px 40px rgba(var(--rp-shadow-rgb, 0, 102, 255), .1);
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    color: var(--rp-dark) !important;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.rp-app-qr-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--rp-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}
.rp-app-qr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(var(--rp-shadow-rgb, 0, 102, 255), .2);
    border-color: transparent;
    color: var(--rp-dark) !important;
}
.rp-app-qr-card:hover::before { transform: scaleX(1); }
.rp-app-qr-img {
    flex-shrink: 0;
    padding: 8px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.06);
    transition: transform .3s;
}
.rp-app-qr-card:hover .rp-app-qr-img {
    transform: scale(1.04);
}
.rp-app-qr-img img {
    width: 130px;
    height: 130px;
    display: block;
    border-radius: 6px;
}
.rp-app-qr-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.rp-app-qr-platform {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rp-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .03em;
}
.rp-app-qr-platform svg {
    flex-shrink: 0;
}
.rp-app-qr-info strong {
    font-size: 22px;
    color: var(--rp-dark);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.2;
}
.rp-app-qr-cta {
    color: #6B7280;
    font-size: 13px;
    margin-top: 4px;
    transition: color .25s;
}
.rp-app-qr-card:hover .rp-app-qr-cta {
    color: var(--rp-primary);
    font-weight: 700;
}

/* Estado vazio (admin-only) */
.rp-app-qr-empty {
    max-width: 600px;
    margin: 30px auto 0;
    padding: 36px;
    background: rgba(var(--rp-primary-rgb, 0, 102, 255), .04);
    border: 2px dashed rgba(var(--rp-primary-rgb, 0, 102, 255), .25);
    border-radius: 18px;
    text-align: center;
    color: var(--rp-text);
}
.rp-app-qr-empty-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 16px;
}
.rp-app-qr-empty p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px;
}
.rp-app-qr-empty p strong {
    color: var(--rp-dark);
}
.rp-app-qr-empty p a {
    font-weight: 700;
}
.rp-app-qr-empty small {
    color: #9CA3AF;
    font-size: 12px;
}

@media (max-width: 768px) {
    .rp-app-qr { padding: 60px 0; }
    .rp-app-qr-card { flex-direction: column; text-align: center; gap: 16px; padding: 28px 24px; }
    .rp-app-qr-info { align-items: center; }
}


/* ============================================================
   VÍDEO DEMO (v1.4.0)
   ============================================================ */
.rp-video-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, #F8FAFF 100%);
}
.rp-video-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}
.rp-video-player {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    background: var(--rp-dark, #0A0E27);
    box-shadow: 0 40px 100px rgba(var(--rp-shadow-rgb, 0, 102, 255), .25);
    cursor: pointer;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
.rp-video-player:hover {
    transform: translateY(-4px);
}
.rp-video-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.rp-video-player:hover .rp-video-thumb {
    transform: scale(1.04);
}
.rp-video-thumb-fallback {
    background: var(--rp-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}
.rp-video-thumb-icon {
    font-size: 80px;
    opacity: .8;
}
.rp-video-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    transition: transform .3s;
    z-index: 2;
}
.rp-video-play svg {
    filter: drop-shadow(0 10px 30px rgba(0,0,0,.4));
    transition: transform .3s;
}
.rp-video-player:hover .rp-video-play svg {
    transform: scale(1.1);
}
.rp-video-duration {
    position: absolute;
    bottom: 18px; right: 22px;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}
/* Quando o video está tocando, esconde overlays */
.rp-video-player.is-playing .rp-video-play,
.rp-video-player.is-playing .rp-video-duration {
    display: none;
}

/* Modo placeholder — quando ainda não há URL configurada */
.rp-video-player-placeholder {
    cursor: default;
    background: linear-gradient(135deg, var(--rp-dark, #0A0E27) 0%, #1a1f3a 100%);
}
.rp-video-player-placeholder:hover { transform: none; }
.rp-video-thumb-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 50%, rgba(var(--rp-primary-rgb, 0, 102, 255), .25), transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 200, 150, .2), transparent 50%);
}
.rp-video-placeholder-content {
    text-align: center;
    color: #fff;
    max-width: 480px;
    padding: 30px;
}
.rp-video-placeholder-content .rp-video-thumb-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 16px;
    opacity: .85;
}
.rp-video-placeholder-content h3 {
    font-size: 22px;
    color: #fff;
    margin: 0 0 12px;
}
.rp-video-placeholder-content p {
    color: rgba(255,255,255,.85);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px;
}
.rp-video-placeholder-content p a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}
.rp-video-placeholder-content small {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .rp-video-section { padding: 60px 0; }
    .rp-video-play svg { width: 60px; height: 60px; }
}


/* ============================================================
   COMO FUNCIONA — passos (v1.2.0)
   ============================================================ */
.rp-how {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, #F8FAFF 50%, transparent 100%);
}
.rp-how-track {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
    max-width: 1180px;
    margin: 0 auto;
}

/* Conectores entre os passos com setas animadas (v1.4.1 — CSS classes) */
.rp-how-connector {
    align-self: center;
    width: 90px;
    height: 32px;
    margin: 0 -8px;
    z-index: 0;
}
.rp-how-connector-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.rp-how-line-flow {
    fill: none;
    stroke: var(--rp-primary, #0066FF);
    stroke-width: 3;
    stroke-dasharray: 6 5;
    stroke-linecap: round;
    animation: rp-how-flow 1s linear infinite;
}
.rp-how-arrow {
    fill: var(--rp-secondary, #00C896);
}
@keyframes rp-how-flow {
    to { stroke-dashoffset: -22; }
}
.rp-how-step {
    position: relative;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    padding: 36px 26px 28px;
    border: 1px solid rgba(0,0,0,.05);
    transition: all .35s;
    z-index: 1;
}
.rp-how-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(var(--rp-shadow-rgb, 0, 102, 255),.15);
}
.rp-how-step-num {
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    background: var(--rp-gradient);
    color: #fff;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(var(--rp-shadow-rgb, 0, 102, 255),.4);
    border: 4px solid #fff;
}
.rp-how-step-icon {
    margin: 30px auto 16px;
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(var(--rp-shadow-rgb, 0, 102, 255),.1), rgba(0,200,150,.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rp-primary);
    transition: transform .3s;
}
.rp-how-step:hover .rp-how-step-icon { transform: scale(1.1) rotate(-5deg); }
.rp-how-step h3 {
    font-size: 20px;
    color: var(--rp-dark);
    margin-bottom: 10px;
}
.rp-how-step p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}
.rp-how-step-time {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 200, 150, .1);
    color: #00876D;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}
.rp-how-cta { text-align: center; margin-top: 50px; }


/* ============================================================
   ABOUT / STATS / etc. (mantidos do v1.1.0)
   ============================================================ */
.rp-about { padding: 100px 0; }
.rp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.rp-about-content { color: #4B5563; font-size: 16px; line-height: 1.75; margin-bottom: 32px; }
.rp-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.rp-pillar {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.04);
}
.rp-pillar-icon {
    font-size: 28px;
    width: 44px; height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
}
.rp-pillar strong { display: block; color: var(--rp-dark); font-size: 15px; margin-bottom: 2px; }
.rp-pillar span { color: #6B7280; font-size: 13px; line-height: 1.4; }
.rp-about-visual { position: relative; }
.rp-about-mockup { position: relative; max-width: 480px; margin: 0 auto; }
.rp-about-card-main {
    background: #fff;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 20px 50px rgba(var(--rp-shadow-rgb, 0, 102, 255),.15);
    border: 1px solid rgba(0,0,0,.04);
}
.rp-about-stat-big { text-align: center; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px dashed rgba(0,0,0,.08); }
.rp-about-stat-num {
    display: block;
    font-size: 56px;
    font-weight: 800;
    background: var(--rp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.rp-about-stat-label { color: #6B7280; font-size: 14px; }
.rp-about-bars { display: flex; flex-direction: column; gap: 18px; }
.rp-about-bar { position: relative; }
.rp-about-bar label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 7px;
}
.rp-about-bar label strong {
    color: var(--rp-primary, #0066FF);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: -.01em;
}
.rp-about-bar > span {
    display: block;
    height: 9px;
    background: var(--rp-gradient);
    border-radius: 5px;
    transition: width 1s ease-out;
    box-shadow: 0 2px 8px rgba(var(--rp-shadow-rgb, 0, 102, 255), .25);
    /* Largura definida inline (style="width:X%"); JS anima de 0 → X% ao entrar no viewport */
}
.rp-about-card-float {
    position: absolute;
    background: #fff;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: rp-float 5s ease-in-out infinite;
}
.rp-about-float-icon { font-size: 28px; }
.rp-about-card-float strong { display: block; color: var(--rp-dark); font-size: 14px; }
.rp-about-card-float span { color: #6B7280; font-size: 12px; }
.rp-about-float-1 { top: 8%; right: -20px; }
.rp-about-float-2 { bottom: 12%; left: -30px; animation-delay: 1.5s; }

.rp-stats {
    padding: 80px 0;
    background: var(--rp-gradient);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.rp-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,.1), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,.1), transparent 50%);
}
.rp-stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}
.rp-stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}
.rp-stat-suffix { color: rgba(255,255,255,.85); }
.rp-stat-label { font-size: 15px; color: rgba(255,255,255,.85); }


/* ============================================================
   PLANS - NOVO DESIGN COM SELETOR (v1.2.0)
   ============================================================ */
.rp-plans { padding: 100px 0; position: relative; }
.rp-plans-selector {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

/* Pills mobile (escondidas no desktop) */
.rp-plans-pills {
    display: none;
    grid-column: 1 / -1;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 4px 4px 12px;
    gap: 10px;
}
.rp-plans-pills::-webkit-scrollbar { display: none; }
.rp-plans-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    border: 2px solid rgba(0,0,0,.08);
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    color: var(--rp-text);
    cursor: pointer;
    white-space: nowrap;
    transition: all .25s;
    flex-shrink: 0;
}
.rp-plans-pill-icon { font-size: 18px; }
.rp-plans-pill.is-active {
    background: var(--rp-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(var(--rp-shadow-rgb, 0, 102, 255),.3);
}

/* Painel de benefícios (esquerda) */
.rp-plans-benefits {
    background: linear-gradient(180deg, rgba(255,255,255,.8) 0%, rgba(248,250,255,.8) 100%);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 10px 30px rgba(var(--rp-shadow-rgb, 0, 102, 255),.08);
    position: relative;
    overflow: hidden;
}
.rp-plans-panel { transition: opacity .3s; }
.rp-plans-panel.is-hidden { display: none; }
.rp-plans-panel-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.rp-plans-panel-icon {
    font-size: 40px;
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--rp-shadow-rgb, 0, 102, 255),.1), rgba(0,200,150,.1));
    border-radius: 16px;
    flex-shrink: 0;
}
.rp-plans-panel-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: .15em;
    color: var(--rp-primary);
    font-weight: 700;
    margin-bottom: 4px;
}
.rp-plans-panel-name {
    font-size: 28px;
    color: var(--rp-dark);
    margin: 0;
    line-height: 1.1;
}
.rp-plans-panel-desc {
    color: #4B5563;
    font-size: 16px;
    margin: 0 0 24px;
}
.rp-plans-panel-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
}
.rp-plans-panel-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
}
.rp-plans-check {
    flex-shrink: 0;
    width: 22px; height: 22px;
    background: var(--rp-secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.rp-plans-panel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,.08);
    flex-wrap: wrap;
}
.rp-plans-panel-price {
    display: flex;
    align-items: baseline;
}
.rp-plans-panel-currency {
    font-size: 18px;
    color: var(--rp-dark);
    font-weight: 600;
    margin-right: 4px;
}
.rp-plans-panel-value {
    font-size: 56px;
    font-weight: 800;
    background: var(--rp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.rp-plans-panel-period {
    font-size: 14px;
    color: #6B7280;
    margin-left: 6px;
}

/* Cards de tipo (direita) */
.rp-plans-types {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.rp-plans-types-label {
    display: block;
    font-size: 12px;
    letter-spacing: .12em;
    color: #6B7280;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.rp-plans-type {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border: 2px solid rgba(0,0,0,.08);
    border-radius: 16px;
    cursor: pointer;
    transition: all .3s;
    position: relative;
    text-align: left;
    color: var(--rp-text);
}
.rp-plans-type:hover {
    border-color: var(--rp-primary);
    transform: translateX(4px);
}
.rp-plans-type.is-active {
    background: linear-gradient(135deg, rgba(var(--rp-shadow-rgb, 0, 102, 255),.06), rgba(0,200,150,.06));
    border-color: var(--rp-primary);
    box-shadow: 0 10px 30px rgba(var(--rp-shadow-rgb, 0, 102, 255),.18);
}
.rp-plans-type.is-active .rp-plans-type-arrow {
    color: var(--rp-primary);
    transform: translateX(0) scale(1.2);
}
.rp-plans-type-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--rp-shadow-rgb, 0, 102, 255),.1), rgba(0,200,150,.1));
    border-radius: 12px;
    font-size: 24px;
    flex-shrink: 0;
}
.rp-plans-type-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.rp-plans-type-info strong {
    color: var(--rp-dark);
    font-size: 16px;
    margin-bottom: 2px;
}
.rp-plans-type-info span { color: #6B7280; font-size: 13px; }
.rp-plans-type-arrow {
    color: rgba(0,0,0,.25);
    transition: all .3s;
}
.rp-plans-type-badge {
    position: absolute;
    top: -10px; right: 14px;
    padding: 3px 10px;
    background: var(--rp-gradient);
    color: #fff;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .03em;
}
.rp-plans-type-highlight { border-color: rgba(var(--rp-shadow-rgb, 0, 102, 255),.3); }

/* ============================================================
   PÁGINA DE PLANOS — PREMIUM (v1.2.9)
   ============================================================ */

/* Helper: gradient nos textos */
.rp-text-grad {
    background: var(--rp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === HERO PREMIUM === */
.rp-plans-hero {
    position: relative;
    padding: 90px 0 70px;
    overflow: hidden;
    background: linear-gradient(180deg, #FAFBFE 0%, #FFFFFF 100%);
}
.rp-plans-hero-bg { position: absolute; inset: 0; pointer-events: none; }

/* Mesh refinada — paleta sóbria/profissional, sem amarelo agressivo, verde só de fundo sutil */
.rp-plans-hero-mesh {
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle at 20% 30%, rgba(var(--rp-primary-rgb, 0, 102, 255), .16) 0%, transparent 42%),
        radial-gradient(circle at 80% 65%, rgba(var(--rp-primary-rgb, 0, 102, 255), .10) 0%, transparent 48%),
        radial-gradient(circle at 90% 18%, rgba(99, 102, 241, .09) 0%, transparent 36%),
        radial-gradient(circle at 50% 90%, rgba(0, 200, 150, .07) 0%, transparent 42%);
    filter: blur(70px);
    animation: rp-mesh-shift 25s ease-in-out infinite alternate;
}
@keyframes rp-mesh-shift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -30px) scale(1.05); }
}

/* Dot grid (Stripe/Linear style) — substitui o cross-hatch por feel mais profissional */
.rp-plans-hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(15, 23, 42, .10) 1px, transparent 1px);
    background-size: 22px 22px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 28%, transparent 72%);
    mask-image: radial-gradient(ellipse at center, black 28%, transparent 72%);
}

/* Floats refinados — paleta sóbria (primária + slate), sem amarelo/verde agressivos */
.rp-plans-hero-float {
    position: absolute;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    pointer-events: none;
    user-select: none;
    animation: rp-plans-float 8s ease-in-out infinite;
    letter-spacing: -.02em;
}
.rp-plans-float-1 {
    top: 18%; left: 6%;
    font-size: 78px;
    color: rgba(var(--rp-primary-rgb, 0, 102, 255), .11);
}
.rp-plans-float-2 {
    top: 60%; right: 10%;
    font-size: 68px;
    color: rgba(15, 23, 42, .08);
    animation-delay: 1s;
    animation-direction: reverse;
}
.rp-plans-float-3 {
    top: 28%; right: 18%;
    font-size: 50px;
    color: rgba(var(--rp-primary-rgb, 0, 102, 255), .14);
    animation-delay: 2s;
}
.rp-plans-float-4 {
    bottom: 20%; left: 12%;
    font-size: 36px;
    color: rgba(15, 23, 42, .10);
    animation-delay: 3s;
    letter-spacing: -.04em;
}
@keyframes rp-plans-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-22px) rotate(4deg); }
}

.rp-plans-hero-content {
    position: relative;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}

.rp-plans-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--rp-primary, #0066FF);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    margin-bottom: 24px;
}
.rp-plans-eyebrow-line {
    display: block;
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rp-primary, #0066FF));
}
.rp-plans-eyebrow-line:last-child {
    background: linear-gradient(90deg, var(--rp-primary, #0066FF), transparent);
}

.rp-plans-hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--rp-dark, #0A0E27);
    letter-spacing: -.02em;
    margin-bottom: 24px;
}
.rp-plans-hero-title span {
    background: var(--rp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}
.rp-plans-hero-title span::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 6%;
    height: 6px;
    background: var(--rp-gradient);
    border-radius: 3px;
    opacity: .25;
    z-index: -1;
}

.rp-plans-hero-desc {
    font-size: 19px;
    color: #4B5563;
    max-width: 640px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.rp-plans-hero-trust {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 20px 40px;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 20px 60px rgba(var(--rp-shadow-rgb, 0, 102, 255), .12);
}
.rp-plans-hero-trust-item {
    text-align: center;
    padding: 0 28px;
}
.rp-plans-hero-trust-item strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    background: var(--rp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -.02em;
}
.rp-plans-hero-trust-item strong small {
    font-size: 14px;
    font-weight: 700;
}
.rp-plans-stars {
    color: #FFB800;
    font-size: 14px;
    -webkit-text-fill-color: #FFB800;
    background: none !important;
    margin-left: 2px;
    letter-spacing: 0;
}
.rp-plans-hero-trust-item span {
    font-size: 12px;
    color: #6B7280;
    font-weight: 600;
    letter-spacing: .03em;
}
.rp-plans-hero-trust-divider {
    width: 1px;
    height: 32px;
    background: rgba(0, 0, 0, .08);
}

/* === Plans com sem-header (na página /planos/) === */
.rp-plans-no-header { padding-top: 30px; }


/* === EM TODOS OS PLANOS — 6 benefícios === */
.rp-plans-included {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, #F8FAFF 100%);
    position: relative;
}
.rp-included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.rp-included-item {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(0, 0, 0, .04);
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
}
.rp-included-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: var(--rp-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}
.rp-included-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(var(--rp-shadow-rgb, 0, 102, 255), .15);
    border-color: transparent;
    background: #fff;
}
.rp-included-item:hover::before { transform: scaleX(1); }

.rp-included-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(var(--rp-primary-rgb, 0, 102, 255), .1), rgba(0, 200, 150, .1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
    transition: transform .3s;
}
.rp-included-item:hover .rp-included-icon {
    transform: scale(1.1) rotate(-5deg);
}
.rp-included-item h3 {
    font-size: 19px;
    color: var(--rp-dark, #0A0E27);
    margin-bottom: 10px;
}
.rp-included-item p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}


/* === TABELA COMPARATIVA PREMIUM === */
.rp-plans-compare {
    padding: 100px 0;
    position: relative;
}
.rp-compare-wrapper {
    overflow-x: auto;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 40px 100px rgba(var(--rp-shadow-rgb, 0, 102, 255), .15);
    border: 1px solid rgba(0, 0, 0, .04);
    max-width: 1100px;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
}
.rp-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

/* Cabeçalho */
.rp-compare-table thead {
    background: linear-gradient(180deg, #FAFBFE, #F4F6F8);
    border-bottom: 2px solid rgba(0, 0, 0, .06);
}
.rp-compare-table th {
    padding: 28px 14px 22px;
    font-weight: 700;
    color: var(--rp-dark, #0A0E27);
    text-align: center;
    position: relative;
    vertical-align: bottom;
}
.rp-compare-feature-col {
    text-align: left !important;
    font-size: 14px;
    color: #6B7280 !important;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.rp-compare-icon {
    display: block;
    font-size: 32px;
    margin-bottom: 6px;
    line-height: 1;
}
.rp-compare-name {
    display: block;
    font-size: 17px;
    margin-bottom: 4px;
}
.rp-compare-price {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--rp-primary, #0066FF);
    letter-spacing: -.02em;
}
.rp-compare-price small {
    font-size: 11px;
    color: #6B7280;
    font-weight: 500;
}

/* Coluna em destaque (Carro / mais popular) */
.rp-compare-highlight {
    background: linear-gradient(180deg,
        rgba(var(--rp-primary-rgb, 0, 102, 255), .06),
        rgba(var(--rp-primary-rgb, 0, 102, 255), .02));
    position: relative;
}
.rp-compare-table thead th.rp-compare-highlight {
    background: linear-gradient(180deg,
        rgba(var(--rp-primary-rgb, 0, 102, 255), .12),
        rgba(var(--rp-primary-rgb, 0, 102, 255), .04));
    border-left: 1px solid rgba(var(--rp-primary-rgb, 0, 102, 255), .15);
    border-right: 1px solid rgba(var(--rp-primary-rgb, 0, 102, 255), .15);
}
.rp-compare-badge {
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    background: var(--rp-gradient);
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(var(--rp-shadow-rgb, 0, 102, 255), .35);
}

/* Corpo */
.rp-compare-table td {
    padding: 16px 14px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
    font-size: 14px;
    color: #4B5563;
    transition: background .2s;
}
.rp-compare-table tbody td:first-child {
    text-align: left;
    color: var(--rp-dark, #0A0E27);
    font-weight: 600;
}
.rp-compare-table tbody tr:hover td {
    background: rgba(var(--rp-primary-rgb, 0, 102, 255), .02);
}
.rp-compare-table tbody tr:hover td.rp-compare-highlight {
    background: linear-gradient(180deg,
        rgba(var(--rp-primary-rgb, 0, 102, 255), .09),
        rgba(var(--rp-primary-rgb, 0, 102, 255), .05));
}

.rp-compare-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    background: linear-gradient(135deg, var(--rp-secondary, #00C896), #2EA382);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 200, 150, .3);
}
.rp-compare-x {
    color: #D1D5DB;
    font-size: 18px;
    font-weight: 700;
}
.rp-compare-text {
    font-weight: 600;
    color: var(--rp-text);
}
.rp-compare-text-strong {
    color: var(--rp-primary, #0066FF);
    font-weight: 800;
}

/* Rodapé com botões */
.rp-compare-table tfoot {
    background: linear-gradient(180deg, #FAFBFE, #FFFFFF);
    border-top: 2px solid rgba(0, 0, 0, .06);
}
.rp-compare-table tfoot td {
    padding: 28px 14px;
    text-align: center;
}
.rp-compare-table tfoot td:first-child {
    color: var(--rp-dark);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6B7280;
}
.rp-compare-table tfoot td.rp-compare-highlight {
    border-left: 1px solid rgba(var(--rp-primary-rgb, 0, 102, 255), .15);
    border-right: 1px solid rgba(var(--rp-primary-rgb, 0, 102, 255), .15);
}


/* === GARANTIA 30 DIAS === */
.rp-plans-guarantee {
    padding: 100px 0;
    background: linear-gradient(180deg, #F8FAFF 0%, transparent 100%);
}
.rp-guarantee-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 40px 100px rgba(var(--rp-shadow-rgb, 0, 102, 255), .15);
    border: 1px solid rgba(0, 0, 0, .04);
    position: relative;
    overflow: hidden;
}
.rp-guarantee-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 0% 0%, rgba(var(--rp-primary-rgb, 0, 102, 255), .12), transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(0, 200, 150, .08), transparent 40%);
}

.rp-guarantee-seal {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
}
.rp-guarantee-seal svg {
    filter: drop-shadow(0 15px 40px rgba(var(--rp-shadow-rgb, 0, 102, 255), .35));
}
.rp-seal-outer {
    transform-origin: 100px 100px;
    transform-box: fill-box;
    animation: rp-seal-spin 30s linear infinite;
}
@keyframes rp-seal-spin {
    to { transform: rotate(360deg); }
}

.rp-guarantee-content {
    position: relative;
    z-index: 1;
}
.rp-guarantee-content .rp-section-eyebrow {
    margin-bottom: 14px;
}
.rp-guarantee-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--rp-dark, #0A0E27);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -.02em;
}
.rp-guarantee-content p {
    color: #4B5563;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 22px;
}
.rp-guarantee-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}
.rp-guarantee-list li {
    color: var(--rp-dark);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.rp-guarantee-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
    background: var(--rp-secondary, #00C896);
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}


/* === RESPONSIVE === */
@media (max-width: 768px) {
    .rp-plans-hero { padding: 60px 0 50px; }
    .rp-plans-hero-trust {
        padding: 16px 20px;
        gap: 0;
    }
    .rp-plans-hero-trust-item { padding: 8px 14px; flex: 1 0 40%; }
    .rp-plans-hero-trust-item strong { font-size: 22px; }
    .rp-plans-hero-trust-divider { display: none; }
    .rp-plans-float-1 { font-size: 50px; }
    .rp-plans-float-2 { font-size: 40px; }
    .rp-plans-float-3 { font-size: 32px; }
    .rp-plans-float-4 { font-size: 24px; }

    .rp-plans-included, .rp-plans-compare, .rp-plans-guarantee { padding: 60px 0; }

    .rp-compare-wrapper { border-radius: 18px; }
    .rp-compare-table th, .rp-compare-table td {
        padding: 12px 8px;
        font-size: 12px;
    }
    .rp-compare-icon { font-size: 22px; }
    .rp-compare-name { font-size: 13px; }
    .rp-compare-price { font-size: 12px; }
    .rp-compare-badge { font-size: 9px; padding: 3px 8px; }
    .rp-compare-check { width: 22px; height: 22px; }

    .rp-guarantee-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 24px;
        text-align: center;
    }
    .rp-guarantee-seal { margin: 0 auto; width: 160px; height: 160px; }
    .rp-guarantee-seal svg { width: 160px; height: 160px; }
    .rp-guarantee-list {
        grid-template-columns: 1fr;
        text-align: left;
    }
}


/* === Mantém pix banner do plans component === */
/* CTA "ver mais detalhes" no fim da seção de planos da home (v1.4.7) */
.rp-plans-more-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    max-width: 760px;
    margin: 30px auto 0;
    padding: 22px 30px;
    background: linear-gradient(135deg, rgba(var(--rp-primary-rgb, 0, 102, 255), .04), rgba(0, 200, 150, .04));
    border-radius: 16px;
    border: 1px solid rgba(var(--rp-primary-rgb, 0, 102, 255), .12);
}
.rp-plans-more-cta-icon {
    font-size: 28px;
    line-height: 1;
}
.rp-plans-more-cta-text {
    flex: 1;
    font-size: 15px;
    color: var(--rp-dark, #0A0E27);
    font-weight: 600;
    line-height: 1.4;
}
.rp-plans-more-cta .rp-btn {
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .rp-plans-more-cta {
        flex-direction: column;
        text-align: center;
        padding: 22px;
    }
    .rp-plans-more-cta .rp-btn {
        width: 100%;
        justify-content: center;
    }
}

.rp-plans-pix {
    margin: 50px auto 0;
    max-width: 540px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    background: linear-gradient(135deg, #4DDFAB 0%, #00C896 100%);
    color: #003C28;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,200,150,.2);
}
.rp-plans-pix strong { font-size: 16px; display: block; }
.rp-plans-pix span { font-size: 13px; opacity: .9; }
.rp-payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: rgba(255,255,255,.2);
    color: inherit;
    border-radius: 6px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .05em;
}
.rp-payment-pix { background: #32BCAD; color: #fff; }


/* ============================================================
   MULTI-TIER PLANS (v1.9.8)
   Abas de tier (ex: Premium / Básico) no topo dos planos e da tabela comparativa
   + Lista de opções de instalação dentro de cada card de plano
   ============================================================ */

/* ---- Tabs de tier (planos e tabela comparativa) ---- */
.rp-plans-tier-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    padding: 6px;
    margin: 0 auto 36px;
    background: rgba(0, 102, 255, .06);
    border: 1px solid rgba(0, 102, 255, .12);
    border-radius: 999px;
    max-width: 100%;
    /* container-level centering */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.rp-plans-tier-tab {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--rp-text);
    padding: 11px 28px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .01em;
    border-radius: 999px;
    cursor: pointer;
    transition: all .25s ease;
    white-space: nowrap;
}
.rp-plans-tier-tab:hover {
    background: rgba(0, 102, 255, .08);
    color: var(--rp-primary, #0066FF);
}
.rp-plans-tier-tab.is-active {
    background: linear-gradient(135deg, var(--rp-primary, #0066FF) 0%, var(--rp-secondary, #00C896) 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 102, 255, .28);
}
.rp-plans-tier-tab:focus-visible {
    outline: 2px solid var(--rp-primary, #0066FF);
    outline-offset: 2px;
}

/* Tab variante da tabela comparativa — usa o mesmo visual, só ajuste de margem */
.rp-plans-tier-tabs-compare {
    margin-bottom: 28px;
}

/* ---- Tier panels: o ativo aparece, os outros somem ---- */
.rp-plans-tier-panel.is-hidden-tier {
    display: none !important;
}

/* ---- Container do tier dentro da seção de planos ---- */
.rp-plans-has-tiers .rp-plans-tier-tabs {
    margin-top: 8px;
}

/* ---- Taxa de instalação (dentro do card de plano) ---- */
.rp-plans-install {
    margin: 18px 0 0;
    padding: 14px 16px;
    background: rgba(0, 102, 255, .04);
    border: 1px dashed rgba(0, 102, 255, .18);
    border-radius: 12px;
}
.rp-plans-install-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--rp-primary, #0066FF);
    margin-bottom: 8px;
}
.rp-plans-install-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.rp-plans-install-list.has-multi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
}
.rp-plans-install-option {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 10px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .05);
    font-size: 13px;
}
.rp-plans-install-option-label {
    font-weight: 700;
    color: var(--rp-text);
}
.rp-plans-install-option-price {
    font-weight: 600;
    color: var(--rp-primary, #0066FF);
    font-size: 13px;
    text-align: right;
}

/* Mobile: install list single column */
@media (max-width: 640px) {
    .rp-plans-install-list.has-multi { grid-template-columns: 1fr; }
    .rp-plans-tier-tab {
        padding: 10px 18px;
        font-size: 14px;
    }
}


/* ============================================================
   APP DOWNLOAD
   ============================================================ */
.rp-app {
    padding: 100px 0;
    background: var(--rp-dark, #0A0E27);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.rp-app::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, var(--rp-primary, #0066FF), transparent 70%);
    opacity: .25;
    border-radius: 50%;
    top: -300px;
    right: -300px;
    filter: blur(40px);
}
.rp-app-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.rp-app-subtitle { font-size: 18px; color: rgba(255,255,255,.75); margin-bottom: 28px; }
.rp-app-list { list-style: none; margin: 0 0 32px; padding: 0; }
.rp-app-list li { padding: 8px 0; color: rgba(255,255,255,.85); font-size: 16px; }
.rp-app-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.rp-app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    color: #fff !important;
    transition: all .25s;
}
.rp-app-btn:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); }
.rp-app-btn small { display: block; font-size: 11px; color: rgba(255,255,255,.7); }
.rp-app-btn strong { display: block; font-size: 15px; }
.rp-app-rating { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.8); font-size: 14px; }
.rp-stars { color: #FFB800; font-size: 20px; letter-spacing: 2px; }

.rp-app-mockup { position: relative; height: 500px; max-width: 460px; margin: 0 auto; }
.rp-app-phone {
    position: absolute;
    width: 220px;
    aspect-ratio: 9/19;
    background: #1A1F3A;
    border-radius: 28px;
    padding: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.rp-app-screen {
    background: linear-gradient(180deg, #2D3458 0%, #1A1F3A 100%);
    width: 100%; height: 100%;
    border-radius: 22px;
    padding: 20px;
    color: #fff;
    overflow: hidden;
}
.rp-app-screen-header { font-size: 32px; text-align: center; margin-bottom: 16px; }
.rp-app-screen-map {
    height: 200px;
    background:
        linear-gradient(135deg, rgba(var(--rp-shadow-rgb, 0, 102, 255),.3), rgba(0,200,150,.3)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 2px, transparent 2px 12px);
    border-radius: 14px;
    margin-bottom: 16px;
    position: relative;
}
.rp-app-screen-map::after {
    content: '📍';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-size: 32px;
}
.rp-app-screen-card {
    background: rgba(0,200,150,.2);
    color: #4DDFAB;
    padding: 8px;
    border-radius: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}
.rp-app-screen-controls { display: flex; flex-direction: column; gap: 8px; }
.rp-app-screen-controls span {
    background: rgba(255,255,255,.1);
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
}
.rp-app-phone-1 { left: 20%; top: 0; transform: rotate(-8deg); }
.rp-app-phone-2 { right: 5%; top: 18%; transform: rotate(8deg); z-index: 2; }

/* Screenshot customizada do cliente dentro do celular */
.rp-app-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}


/* ============================================================
   TESTIMONIALS + CARROSSEL (full-width v1.4.0)
   ============================================================ */
.rp-testimonials {
    padding: 100px 0;
    overflow: hidden;
}
/* O carrossel sai do container e ocupa a largura total da viewport.
   O header continua centralizado dentro do container.rp-container. */
.rp-testimonials > .rp-container > .rp-carousel {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 60px;
}
.rp-testimonial {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(0,0,0,.05);
    transition: all .3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.rp-testimonial::before {
    content: '"';
    position: absolute;
    top: 12px; right: 24px;
    font-size: 80px;
    line-height: 1;
    color: var(--rp-primary);
    opacity: .15;
    font-family: Georgia, serif;
}
.rp-testimonial:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(var(--rp-shadow-rgb, 0, 102, 255),.1); }
.rp-testimonial-stars { color: #FFB800; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.rp-testimonial-text { color: #4B5563; font-size: 15px; line-height: 1.7; margin-bottom: 24px; font-style: italic; flex: 1; }
.rp-testimonial-author { display: flex; align-items: center; gap: 14px; }
.rp-testimonial-photo {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.rp-testimonial-initial {
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 18px;
}
.rp-testimonial-author strong { display: block; color: var(--rp-dark); font-size: 15px; }
.rp-testimonial-author span { color: #6B7280; font-size: 13px; }

.rp-carousel {
    position: relative;
    padding: 0 50px;
}
.rp-carousel-viewport { overflow: hidden; border-radius: 20px; padding: 4px; }
.rp-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}
.rp-carousel-track > * {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}
.rp-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #fff;
    color: var(--rp-primary, #0066FF);
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 6px 20px rgba(var(--rp-shadow-rgb, 0, 102, 255),.15);
    cursor: pointer;
    z-index: 2;
    transition: all .25s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rp-carousel-btn:hover:not(:disabled) {
    background: var(--rp-gradient);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}
.rp-carousel-btn:disabled { opacity: .35; cursor: not-allowed; }
.rp-carousel-prev { left: 0; }
.rp-carousel-next { right: 0; }
.rp-carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.rp-carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: 0;
    background: rgba(var(--rp-shadow-rgb, 0, 102, 255),.2);
    cursor: pointer;
    padding: 0;
    transition: all .25s;
}
.rp-carousel-dot.is-active {
    background: var(--rp-primary, #0066FF);
    width: 24px;
    border-radius: 4px;
}


/* ============================================================
   FAQ
   ============================================================ */
.rp-faq { padding: 100px 0; }
.rp-faq-list { max-width: 820px; margin: 0 auto 40px; }
.rp-faq-item {
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    margin-bottom: 12px;
    border: 1px solid rgba(0,0,0,.05);
    overflow: hidden;
    transition: all .25s;
}
.rp-faq-item[open] { box-shadow: 0 8px 25px rgba(var(--rp-shadow-rgb, 0, 102, 255),.08); border-color: rgba(var(--rp-shadow-rgb, 0, 102, 255),.15); }
.rp-faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    color: var(--rp-dark);
    list-style: none;
    user-select: none;
    font-size: 16px;
}
.rp-faq-question::-webkit-details-marker { display: none; }
.rp-faq-toggle {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(var(--rp-shadow-rgb, 0, 102, 255), .08);
    color: var(--rp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}
.rp-faq-item[open] .rp-faq-toggle { transform: rotate(180deg); background: var(--rp-primary); color: #fff; }
.rp-faq-answer { padding: 0 24px 22px; color: #4B5563; line-height: 1.7; }
.rp-faq-answer p { margin: 0; }
.rp-faq-help { text-align: center; padding: 20px; }
.rp-faq-help p { color: #6B7280; margin-bottom: 16px; font-size: 16px; }


/* ============================================================
   CTA FINAL
   ============================================================ */
.rp-cta-final { padding: 80px 0; }
.rp-cta-box {
    position: relative;
    background: var(--rp-gradient);
    border-radius: 32px;
    padding: 70px 40px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(var(--rp-shadow-rgb, 0, 102, 255),.3);
}
.rp-cta-bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,.2), transparent 70%);
    pointer-events: none;
}
.rp-cta-content { position: relative; max-width: 700px; margin: 0 auto; }
.rp-cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    color: #fff;
}
.rp-cta-subtitle { font-size: 18px; color: rgba(255,255,255,.9); margin-bottom: 32px; }
.rp-cta-note { color: rgba(255,255,255,.85); font-size: 14px; margin-top: 20px; }


/* ============================================================
   CONTATO HOME (com fix do hover bug — v1.2.0)
   ============================================================ */
.rp-contact { padding: 100px 0; }
.rp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}
.rp-contact-info { display: flex; flex-direction: column; gap: 14px; }
.rp-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.04);
    transition: all .25s;
    color: var(--rp-dark) !important;
}
/* IMPORTANTE: hover só altera background nos cards NÃO-WhatsApp */
.rp-contact-card:not(.rp-contact-card-whatsapp):hover {
    background: #fff;
    transform: translateX(6px);
    border-color: var(--rp-primary);
    box-shadow: 0 10px 30px rgba(var(--rp-shadow-rgb, 0, 102, 255),.1);
}
.rp-contact-icon {
    flex-shrink: 0;
    width: 50px; height: 50px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--rp-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
}
.rp-contact-card strong { display: block; font-size: 16px; }
.rp-contact-card span { color: #6B7280; font-size: 13px; }

/* WhatsApp card - NÃO sobrescreve o gradiente no hover (FIX v1.2.0) */
.rp-contact-card-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(37,211,102,.25);
}
.rp-contact-card-whatsapp:hover {
    transform: translateX(6px) scale(1.02);
    box-shadow: 0 14px 35px rgba(37,211,102,.4);
    color: #fff !important;
    /* Mantém o gradiente, NÃO troca para branco */
}
.rp-contact-card-whatsapp .rp-contact-icon { background: rgba(255,255,255,.25); color: #fff; }
.rp-contact-card-whatsapp span { color: rgba(255,255,255,.9) !important; }

.rp-contact-map {
    border-radius: 24px;
    overflow: hidden;
    min-height: 460px;
    background: #F8FAFF;
}
.rp-contact-map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; }
.rp-contact-form-wrap { padding: 40px; height: 100%; }
.rp-contact-form-wrap h3 { font-size: 22px; margin-bottom: 8px; color: var(--rp-dark); }
.rp-contact-form-info { color: #6B7280; font-size: 14px; margin-bottom: 20px; }
.rp-contact-form { display: flex; flex-direction: column; gap: 12px; }
.rp-contact-form input,
.rp-contact-form select,
.rp-contact-form textarea {
    padding: 12px 16px;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    background: #fff;
    transition: all .2s;
}
.rp-contact-form input:focus,
.rp-contact-form select:focus,
.rp-contact-form textarea:focus {
    outline: none;
    border-color: var(--rp-primary);
    box-shadow: 0 0 0 3px rgba(var(--rp-shadow-rgb, 0, 102, 255),.1);
}
.rp-contact-form small { color: #6B7280; text-align: center; font-size: 12px; }


/* ============================================================
   FOOTER MODERNIZADO (v1.2.0)
   ============================================================ */
.rp-footer-wave { display: block; line-height: 0; margin-bottom: -1px; }
.rp-footer-wave svg { width: 100%; height: 80px; display: block; }

.rp-footer {
    background: var(--rp-dark, #0A0E27);
    color: rgba(255,255,255,.7);
    padding: 0 0 30px;
    position: relative;
    overflow: hidden;
}

/* CTA strip no topo do footer */
.rp-footer-cta-strip {
    background: linear-gradient(135deg, var(--rp-primary), var(--rp-secondary));
    padding: 28px 0;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}
.rp-footer-cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.15), transparent 50%);
}
.rp-footer-cta-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.rp-footer-cta-content h3 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 4px;
}
.rp-footer-cta-content p {
    color: rgba(255,255,255,.85);
    margin: 0;
    font-size: 15px;
}

.rp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr 1.4fr;
    gap: 50px;
    margin-bottom: 50px;
}
.rp-footer-logo { margin-bottom: 18px; }
.rp-footer-logo .rp-logo-text { color: #fff; }
.rp-footer-about { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.7; max-width: 320px; margin-bottom: 20px; }
.rp-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}
.rp-footer-badge {
    padding: 5px 10px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.85);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.08);
}
.rp-footer-title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.rp-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 24px; height: 2px;
    background: var(--rp-gradient);
    border-radius: 1px;
}
.rp-footer-menu, .rp-footer-contact { list-style: none; padding: 0; margin: 0; }
.rp-footer-menu li, .rp-footer-contact li { padding: 6px 0; }
.rp-footer-menu a {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    transition: all .2s;
    display: inline-block;
    position: relative;
}
.rp-footer-menu a::before {
    content: '→';
    margin-right: 0;
    width: 0;
    overflow: hidden;
    display: inline-block;
    color: var(--rp-secondary);
    transition: all .25s;
    opacity: 0;
}
.rp-footer-menu a:hover { color: #fff; padding-left: 4px; }
.rp-footer-menu a:hover::before { width: 18px; opacity: 1; margin-right: 0; }

.rp-footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 8px 0;
}
.rp-footer-contact a {
    color: rgba(255,255,255,.85);
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    transition: color .2s;
}
.rp-footer-contact a:hover { color: #fff; }
.rp-footer-contact-label {
    font-size: 11px;
    color: rgba(255,255,255,.5);
    letter-spacing: .08em;
    text-transform: uppercase;
}
.rp-footer-contact a strong { font-size: 14px; font-weight: 600; }
.rp-footer-contact-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.06);
    border-radius: 8px;
}
.rp-footer-hours, .rp-footer-cnpj, .rp-footer-address {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: rgba(255,255,255,.7);
}
.rp-footer-hours { display: flex; align-items: center; gap: 8px; }
.rp-footer-pulse {
    width: 8px; height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(74,222,128,.3);
    animation: rp-status-blink 2s ease-in-out infinite;
    flex-shrink: 0;
}
.rp-footer-address { display: flex; gap: 8px; align-items: flex-start; }
.rp-footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-top: 16px;
}
.rp-footer-payments-label {
    font-size: 11px;
    color: rgba(255,255,255,.55);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-right: 4px;
}
.rp-footer-payments .rp-payment-badge {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.85);
    padding: 4px 10px;
    font-size: 11px;
    border: 1px solid rgba(255,255,255,.05);
}
.rp-footer-payments .rp-payment-pix { background: #32BCAD; color: #fff; border-color: transparent; }

.rp-social { display: flex; gap: 10px; list-style: none; padding: 0; margin: 0; }
.rp-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    transition: all .25s;
}
.rp-social a:hover {
    background: var(--rp-gradient);
    color: #fff;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(var(--rp-shadow-rgb, 0, 102, 255),.3);
}

.rp-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255,255,255,.5);
    font-size: 13px;
}
.rp-footer-legal { margin: 0; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.rp-footer-legal a { color: rgba(255,255,255,.65); transition: color .2s; }
.rp-footer-legal a:hover { color: #fff; }
.rp-copyright { margin: 0; }


/* ============================================================
   FLOAT WHATSAPP (centralizado - v1.2.0 fix)
   ============================================================ */
.rp-float-whatsapp {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff !important;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(37,211,102,.4);
    z-index: 998;
    transition: transform .25s;
    /* Garante que o conteúdo (icon e pulse) sejam absolutamente posicionados no centro */
    display: flex;
    align-items: center;
    justify-content: center;
}
.rp-float-whatsapp:hover { transform: scale(1.1); }
.rp-float-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rp-float-pulse {
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: rgba(37,211,102,.5);
    transform: translate(-50%, -50%) scale(.6);
    animation: rp-float-pulse 2s ease-out infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes rp-float-pulse {
    0%   { transform: translate(-50%, -50%) scale(.6); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}


/* ============================================================
   COOKIE BANNER
   ============================================================ */
.rp-cookie-banner {
    position: fixed;
    bottom: 24px; left: 24px; right: 24px;
    max-width: 480px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    padding: 18px 22px;
    z-index: 997;
    border: 1px solid rgba(0,0,0,.05);
    transform: translateY(120%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}
.rp-cookie-banner.is-visible { transform: translateY(0); }
.rp-cookie-content { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.rp-cookie-icon { font-size: 28px; }
.rp-cookie-content p { flex: 1; margin: 0; font-size: 13px; line-height: 1.5; min-width: 180px; }


/* ============================================================
   PÁGINAS - HERO INTRO + Conteúdo
   ============================================================ */
.rp-page-header {
    padding: 80px 0 40px;
    text-align: center;
}
.rp-page-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--rp-dark); }
.rp-page-desc { color: #6B7280; font-size: 17px; max-width: 700px; margin: 0 auto; }
.rp-page-content { padding: 40px 0 100px; }
.rp-entry-content { font-size: 17px; line-height: 1.8; color: #374151; }
.rp-entry-content h2, .rp-entry-content h3 { color: var(--rp-dark); margin-top: 1.5em; }

.rp-about-hero, .rp-contact-hero, .rp-features-detail-hero {
    position: relative;
    padding: 80px 0 60px;
    text-align: center;
    overflow: hidden;
}
.rp-about-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.rp-about-hero .rp-container,
.rp-contact-hero .rp-container,
.rp-features-detail-hero .rp-container { position: relative; z-index: 1; }
.rp-about-hero-lead {
    max-width: 720px;
    margin: 16px auto 0;
    font-size: 19px;
    color: #4B5563;
}


/* === Sobre Nós, Contato, Funcionalidades (já estavam OK no v1.1.0, mantidos) === */
.rp-mvv { padding: 80px 0; }
.rp-mvv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.rp-mvv-card { background: rgba(255,255,255,.85); backdrop-filter: blur(8px); border-radius: 20px; padding: 36px 28px; border: 1px solid rgba(0,0,0,.05); transition: all .3s; }
.rp-mvv-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(var(--rp-shadow-rgb, 0, 102, 255),.12); }
.rp-mvv-icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; background: var(--rp-gradient); color: #fff; border-radius: 16px; font-size: 28px; margin-bottom: 20px; }
.rp-mvv-card h3 { font-size: 22px; color: var(--rp-dark); margin-bottom: 10px; }
.rp-mvv-card p { color: #4B5563; font-size: 15px; line-height: 1.7; margin: 0; }

.rp-timeline { padding: 80px 0; }
/* TIMELINE HORIZONTAL com ícones e conector animado (v1.7.0) */
.rp-timeline-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 24px 12px 12px;
}
.rp-timeline-track[data-marcos="1"] { grid-template-columns: 1fr; max-width: 320px; }
.rp-timeline-track[data-marcos="2"] { grid-template-columns: repeat(2, 1fr); max-width: 600px; }
.rp-timeline-track[data-marcos="3"] { grid-template-columns: repeat(3, 1fr); max-width: 800px; }
.rp-timeline-track[data-marcos="4"] { grid-template-columns: repeat(4, 1fr); max-width: 950px; }
.rp-timeline-track[data-marcos="5"] { grid-template-columns: repeat(5, 1fr); }

/* Linha conectora horizontal (gradient atrás dos ícones) */
.rp-timeline-line {
    position: absolute;
    top: 56px;       /* alinhado ao centro vertical do círculo do ícone (24px padding + 32px raio = 56px) */
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--rp-primary, #0066FF) 15%, var(--rp-secondary, #00C896) 50%, var(--rp-primary, #0066FF) 85%, transparent 100%);
    border-radius: 1px;
    opacity: .35;
    z-index: 0;
    overflow: hidden;
}
.rp-timeline-line-fill {
    height: 100%;
    width: 0;
    background: var(--rp-gradient);
    transition: width 1.4s cubic-bezier(.4, 0, .2, 1);
}

.rp-timeline-item {
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 0 8px;
}

/* Ícone em círculo gradient com borda branca + pulse no marco "Agora" */
.rp-timeline-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.rp-timeline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    background: var(--rp-gradient);
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 10px 24px rgba(var(--rp-shadow-rgb, 0, 102, 255), .28);
    border: 4px solid #fff;
    transition: transform .3s ease;
}
.rp-timeline-item:hover .rp-timeline-icon { transform: scale(1.08); }
.rp-timeline-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--rp-gradient);
    opacity: 0;
    z-index: -1;
    animation: rp-timeline-pulse 2.2s ease-out infinite;
}
@keyframes rp-timeline-pulse {
    0%   { transform: scale(.95); opacity: .55; }
    100% { transform: scale(1.6);  opacity: 0; }
}
.rp-timeline-item-now .rp-timeline-icon {
    box-shadow: 0 12px 30px rgba(var(--rp-shadow-rgb, 0, 102, 255), .45);
    transform: scale(1.05);
}

.rp-timeline-year {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(var(--rp-shadow-rgb, 0, 102, 255), .1);
    color: var(--rp-primary, #0066FF);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .03em;
    margin-bottom: 10px;
}
.rp-timeline-item-now .rp-timeline-year {
    background: var(--rp-gradient);
    color: #fff;
}
.rp-timeline-title {
    font-size: 16px;
    color: var(--rp-dark);
    margin: 0 0 8px;
    line-height: 1.25;
}
.rp-timeline-text {
    color: #6B7280;
    font-size: 13.5px;
    margin: 0;
    line-height: 1.55;
}

/* Mobile: timeline vira coluna vertical com linha à esquerda (estilo clássico) */
@media (max-width: 768px) {
    .rp-timeline-track,
    .rp-timeline-track[data-marcos] {
        grid-template-columns: 1fr;
        max-width: 480px;
        padding: 12px 0 12px 60px;
        gap: 32px;
        position: relative;
    }
    .rp-timeline-line {
        top: 0;
        bottom: 0;
        left: 24px;
        right: auto;
        width: 2px;
        height: auto;
        opacity: .3;
        background: linear-gradient(180deg, transparent 0%, var(--rp-primary) 10%, var(--rp-secondary) 50%, var(--rp-primary) 90%, transparent 100%);
    }
    .rp-timeline-item {
        text-align: left;
        padding: 0;
    }
    .rp-timeline-icon-wrap {
        position: absolute;
        left: -48px;
        top: -4px;
        margin-bottom: 0;
    }
    .rp-timeline-icon {
        width: 48px; height: 48px;
        font-size: 22px;
        border-width: 3px;
    }
}

/* ============================================================
   ABOUT HERO RICO (v1.7.0) — mesh + dot grid + 4 stats institucionais
   Paleta levemente mais quente que /planos/ e /funcionalidades/
   pra dar feel "humano/institucional"
   ============================================================ */
.rp-about-hero {
    position: relative;
    padding: 90px 0 70px;
    overflow: hidden;
    background: linear-gradient(180deg, #FAFBFE 0%, #FFFFFF 100%);
}
.rp-about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.rp-about-hero-mesh {
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle at 22% 28%, rgba(var(--rp-primary-rgb, 0, 102, 255), .14) 0%, transparent 44%),
        radial-gradient(circle at 80% 64%, rgba(var(--rp-primary-rgb, 0, 102, 255), .10) 0%, transparent 50%),
        radial-gradient(circle at 92% 18%, rgba(168, 85, 247, .08) 0%, transparent 36%),
        radial-gradient(circle at 50% 92%, rgba(0, 200, 150, .07) 0%, transparent 42%);
    filter: blur(70px);
    animation: rp-mesh-shift 28s ease-in-out infinite alternate;
}
.rp-about-hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(15, 23, 42, .10) 1px, transparent 1px);
    background-size: 22px 22px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 28%, transparent 72%);
    mask-image: radial-gradient(ellipse at center, black 28%, transparent 72%);
}
.rp-about-hero .rp-container { position: relative; z-index: 1; }

.rp-about-hero-content {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}
.rp-about-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--rp-primary, #0066FF);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    margin-bottom: 24px;
}
.rp-about-eyebrow-line {
    display: block;
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rp-primary, #0066FF));
}
.rp-about-eyebrow-line:last-child {
    background: linear-gradient(90deg, var(--rp-primary, #0066FF), transparent);
}
.rp-about-hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--rp-dark, #0A0E27);
    letter-spacing: -.02em;
    margin: 0 0 20px;
}
.rp-about-hero-lead {
    font-size: 19px;
    color: #4B5563;
    max-width: 720px;
    margin: 0 auto 44px;
    line-height: 1.6;
}

/* Card glassmorphism com 4 stats institucionais */
.rp-about-hero-trust {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 22px 40px;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 20px 60px rgba(var(--rp-shadow-rgb, 0, 102, 255), .12);
}
.rp-about-hero-trust-item {
    text-align: center;
    padding: 0 28px;
}
.rp-about-hero-trust-item strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    background: var(--rp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -.02em;
}
.rp-about-hero-trust-item strong small {
    font-size: 14px;
    font-weight: 700;
}
.rp-about-hero-trust-item span {
    font-size: 12px;
    color: #6B7280;
    font-weight: 600;
    letter-spacing: .03em;
}
.rp-about-hero-trust-divider {
    width: 1px;
    height: 32px;
    background: rgba(0, 0, 0, .08);
}

/* Mobile: stats stacked */
@media (max-width: 768px) {
    .rp-about-hero { padding: 50px 0 40px; }
    .rp-about-hero-trust {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 22px;
        gap: 8px;
        width: 100%;
        max-width: 360px;
    }
    .rp-about-hero-trust-item {
        padding: 6px 0;
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 10px;
    }
    .rp-about-hero-trust-item strong { font-size: 20px; }
    .rp-about-hero-trust-divider { display: none; }
}


/* ============================================================
   EXTRA STATS — "Nossa Operação" (v1.7.0)
   4 cards com ícone + número + label + descrição
   ============================================================ */
.rp-extra-stats {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, #F8FAFF 100%);
    overflow: hidden;
}
.rp-extra-stats-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(var(--rp-primary-rgb, 0, 102, 255), .07) 0%, transparent 40%),
        radial-gradient(circle at 88% 82%, rgba(0, 200, 150, .06) 0%, transparent 40%);
    filter: blur(50px);
    pointer-events: none;
}
.rp-extra-stats .rp-container { position: relative; z-index: 1; }
.rp-extra-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
}
.rp-extra-stat {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    border-radius: 22px;
    padding: 32px 26px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 14px 38px rgba(var(--rp-shadow-rgb, 0, 102, 255), .08);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
}
.rp-extra-stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(var(--rp-shadow-rgb, 0, 102, 255), .14);
    border-color: rgba(var(--rp-primary-rgb, 0, 102, 255), .2);
}
.rp-extra-stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--rp-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}
.rp-extra-stat:hover::before { transform: scaleX(1); }
.rp-extra-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(var(--rp-primary-rgb, 0, 102, 255), .1), rgba(0, 200, 150, .08));
    font-size: 28px;
    margin-bottom: 18px;
}
.rp-extra-stat-value {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
    line-height: 1;
}
.rp-extra-stat-num {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    background: var(--rp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.03em;
    line-height: 1;
}
.rp-extra-stat-value small {
    font-size: 16px;
    font-weight: 700;
    color: var(--rp-primary, #0066FF);
}
.rp-extra-stat-label {
    font-size: 17px;
    color: var(--rp-dark);
    margin: 0 0 10px;
}
.rp-extra-stat-desc {
    font-size: 13.5px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}


/* ============================================================
   STORIES — Histórias reais formato case-study (v1.7.0)
   3 cards com headline + texto longo + autor (sem foto, com inicial)
   ============================================================ */
.rp-stories {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
}
.rp-stories-list {
    display: grid;
    gap: 32px;
    max-width: 1100px;
    margin: 50px auto 0;
}
.rp-story {
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFE 100%);
    border-radius: 28px;
    padding: 50px 50px 40px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 18px 50px rgba(var(--rp-shadow-rgb, 0, 102, 255), .08);
    overflow: hidden;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
}
.rp-story:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(var(--rp-shadow-rgb, 0, 102, 255), .14);
}

/* Número grande de fundo (01, 02, 03) — marca d'água */
.rp-story-num {
    position: absolute;
    top: -28px;
    right: 30px;
    font-size: clamp(120px, 16vw, 180px);
    font-weight: 900;
    background: var(--rp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .08;
    line-height: 1;
    letter-spacing: -.05em;
    pointer-events: none;
    user-select: none;
}

/* Aspas decorativas no topo */
.rp-story-quote-mark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 110px;
    line-height: .7;
    color: var(--rp-primary, #0066FF);
    opacity: .25;
    margin-bottom: 8px;
    display: block;
}

.rp-story-content { position: relative; z-index: 1; }

.rp-story-headline {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--rp-dark);
    margin: 0 0 22px;
    letter-spacing: -.01em;
    background: linear-gradient(135deg, var(--rp-dark, #0A0E27) 0%, var(--rp-primary, #0066FF) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rp-story-text {
    font-size: 16px;
    line-height: 1.85;
    color: #4B5563;
    margin: 0 0 32px;
    font-style: italic;
    max-width: 760px;
}

.rp-story-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, .06);
}
.rp-story-initial {
    flex-shrink: 0;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
}
.rp-story-author-info { line-height: 1.4; }
.rp-story-author-info strong {
    display: block;
    color: var(--rp-dark);
    font-size: 16px;
    font-weight: 700;
}
.rp-story-author-info span {
    display: block;
    color: #6B7280;
    font-size: 13.5px;
}
.rp-story-author-info small {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 10px;
    background: rgba(var(--rp-shadow-rgb, 0, 102, 255), .08);
    color: var(--rp-primary, #0066FF);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;
}

/* Mobile: story padding menor + headline tamanho ajustado */
@media (max-width: 768px) {
    .rp-stories { padding: 60px 0; }
    .rp-story { padding: 32px 24px 28px; border-radius: 22px; }
    .rp-story-quote-mark { font-size: 80px; margin-bottom: 4px; }
    .rp-story-num { font-size: 100px; top: -16px; right: 20px; }
    .rp-story-headline { font-size: 1.4rem; margin-bottom: 18px; }
    .rp-story-text { font-size: 15px; margin-bottom: 24px; }
    .rp-story-author { gap: 14px; padding-top: 20px; }
    .rp-story-initial { width: 48px; height: 48px; font-size: 19px; }
}


.rp-why-us { padding: 80px 0; }
.rp-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.rp-why-card { position: relative; background: rgba(255,255,255,.85); backdrop-filter: blur(8px); border-radius: 20px; padding: 36px 30px; border: 1px solid rgba(0,0,0,.05); overflow: hidden; transition: all .3s; }
.rp-why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(var(--rp-shadow-rgb, 0, 102, 255),.12); }
.rp-why-num { position: absolute; top: -10px; right: 20px; font-size: 80px; font-weight: 900; background: var(--rp-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; opacity: .2; line-height: 1; }
.rp-why-card h3 { position: relative; font-size: 19px; color: var(--rp-dark); margin-bottom: 10px; }
.rp-why-card p { position: relative; color: #4B5563; font-size: 15px; line-height: 1.6; margin: 0; }

.rp-contact-channels { padding: 80px 0; }
.rp-contact-channels-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }
.rp-contact-channel { display: block; background: rgba(255,255,255,.85); backdrop-filter: blur(8px); border-radius: 20px; padding: 32px 28px; border: 1px solid rgba(0,0,0,.06); transition: all .3s; color: var(--rp-dark) !important; }
.rp-contact-channel:not(.rp-contact-channel-whatsapp):hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(var(--rp-shadow-rgb, 0, 102, 255),.15); border-color: var(--rp-primary); }
.rp-contact-channel-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: linear-gradient(135deg, rgba(var(--rp-shadow-rgb, 0, 102, 255),.1), rgba(0,200,150,.1)); border-radius: 16px; font-size: 26px; color: var(--rp-primary); margin-bottom: 18px; }
.rp-contact-channel h3 { font-size: 20px; color: var(--rp-dark); margin: 0 0 8px; }
.rp-contact-channel p { color: #6B7280; font-size: 14px; line-height: 1.6; margin: 0 0 16px; min-height: 3.2em; }
.rp-contact-channel-cta { color: var(--rp-primary); font-weight: 700; font-size: 14px; }
.rp-contact-channel-whatsapp { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: #fff !important; border-color: transparent; }
.rp-contact-channel-whatsapp:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(37,211,102,.35); color: #fff !important; }
.rp-contact-channel-whatsapp .rp-contact-channel-icon { background: rgba(255,255,255,.2); color: #fff; }
.rp-contact-channel-whatsapp h3, .rp-contact-channel-whatsapp .rp-contact-channel-cta { color: #fff !important; }
.rp-contact-channel-whatsapp p { color: rgba(255,255,255,.9); }

.rp-contact-depts { padding: 80px 0; }
.rp-contact-depts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }
.rp-contact-dept { background: rgba(255,255,255,.85); backdrop-filter: blur(8px); border-radius: 18px; padding: 28px; border: 1px solid rgba(0,0,0,.05); transition: all .3s; }
.rp-contact-dept:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.06); }
.rp-contact-dept-icon { font-size: 36px; display: inline-block; margin-bottom: 12px; }
.rp-contact-dept h3 { font-size: 18px; color: var(--rp-dark); margin-bottom: 8px; }
.rp-contact-dept p { color: #6B7280; font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.rp-contact-dept-link { color: var(--rp-primary); font-weight: 700; font-size: 14px; }
.rp-contact-dept-link-urgent { color: #DC2626; }

.rp-contact-form-section { padding: 80px 0; }
.rp-contact-form-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: start; }
.rp-contact-info-col { background: rgba(248,250,255,.6); backdrop-filter: blur(8px); border-radius: 20px; padding: 36px; border: 1px solid rgba(0,0,0,.04); }
.rp-contact-info-title { font-size: 22px; color: var(--rp-dark); margin-bottom: 20px; }
.rp-contact-info-list { list-style: none; padding: 0; margin: 0 0 24px; }
.rp-contact-info-list li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.rp-contact-info-list li:last-child { border-bottom: 0; }
.rp-contact-info-icon { font-size: 22px; flex-shrink: 0; }
.rp-contact-info-list strong { display: block; font-size: 14px; color: var(--rp-dark); margin-bottom: 2px; }
.rp-contact-info-list span { color: #6B7280; font-size: 14px; line-height: 1.5; }
/* === MAPA do contato (v1.7.1) — wrapper bonito + empty state estilizado === */
.rp-contact-info-map {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 280px;
    margin-bottom: 16px;
    box-shadow: 0 14px 40px rgba(var(--rp-shadow-rgb, 0, 102, 255), .14), 0 2px 8px rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .06);
    background: linear-gradient(135deg, #F4F6F8 0%, #FFFFFF 100%);
    transition: box-shadow .3s, transform .3s;
}
.rp-contact-info-map:hover {
    box-shadow: 0 20px 50px rgba(var(--rp-shadow-rgb, 0, 102, 255), .2), 0 4px 12px rgba(0, 0, 0, .06);
    transform: translateY(-2px);
}
.rp-contact-info-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(1.05);
}
/* Sutil overlay no topo do iframe pra integrar com a página */
.rp-contact-info-map:not(.rp-contact-info-map-empty)::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), transparent);
    pointer-events: none;
    z-index: 1;
}

/* Empty state — mostra pin estilizado + endereço quando nenhum embed configurado */
.rp-contact-info-map-empty {
    background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(var(--rp-primary-rgb, 0, 102, 255), .06), transparent),
        linear-gradient(135deg, #F8FAFE 0%, #EEF2F8 100%);
}
.rp-contact-map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rp-contact-map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, .07) 1px, transparent 1px);
    background-size: 28px 28px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.rp-contact-map-pin {
    position: relative;
    width: 48px;
    height: 64px;
    z-index: 2;
    filter: drop-shadow(0 8px 16px rgba(var(--rp-shadow-rgb, 0, 102, 255), .35));
    animation: rp-map-pin-bounce 2.4s ease-in-out infinite;
}
@keyframes rp-map-pin-bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.rp-contact-map-pin-pulse {
    position: absolute;
    bottom: 30%;
    left: 50%;
    width: 24px;
    height: 8px;
    border-radius: 50%;
    background: rgba(var(--rp-primary-rgb, 0, 102, 255), .35);
    transform: translateX(-50%);
    animation: rp-map-pin-shadow 2.4s ease-in-out infinite;
}
@keyframes rp-map-pin-shadow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: .5; }
    50%      { transform: translateX(-50%) scale(.65); opacity: .25; }
}
.rp-contact-map-empty-info {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
    z-index: 2;
}
.rp-contact-map-empty-info strong {
    display: block;
    font-size: 13px;
    color: var(--rp-dark, #0A0E27);
    margin-bottom: 2px;
    font-weight: 700;
}
.rp-contact-map-empty-info span {
    display: block;
    font-size: 12px;
    color: #6B7280;
    line-height: 1.4;
}

/* Botão "Como chegar" — abre Google Maps com o endereço (sem API key) */
.rp-contact-map-direction {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(var(--rp-shadow-rgb, 0, 102, 255), .06);
    color: var(--rp-primary, #0066FF) !important;
    border: 1px solid rgba(var(--rp-shadow-rgb, 0, 102, 255), .2);
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    transition: all .25s;
    margin-bottom: 22px;
    text-decoration: none;
}
.rp-contact-map-direction:hover {
    background: var(--rp-gradient);
    color: #fff !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--rp-shadow-rgb, 0, 102, 255), .25);
}
.rp-contact-map-direction:hover svg {
    transform: rotate(45deg);
}
.rp-contact-map-direction svg { transition: transform .3s; }


/* === Social Icons na sidebar do contato (fundo BRANCO) ===
   Os .rp-social default estão estilizados pra fundo escuro (footer).
   Aqui no contato.php o fundo é claro, então os ícones brancos sumiam.
   Override scoped só pro contexto do .rp-contact-info-social. */
.rp-contact-info-social { margin-top: 8px; }
.rp-contact-info-social strong { display: block; font-size: 14px; color: var(--rp-dark); margin-bottom: 12px; font-weight: 700; }
.rp-contact-info-social .rp-social a {
    background: rgba(15, 23, 42, .04);
    color: var(--rp-dark, #0A0E27);
    border: 1px solid rgba(15, 23, 42, .08);
}
.rp-contact-info-social .rp-social a:hover {
    background: var(--rp-gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--rp-shadow-rgb, 0, 102, 255), .3);
}

.rp-features-detail-lead { max-width: 720px; margin: 16px auto 30px; font-size: 19px; color: #4B5563; }
.rp-features-detail-nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 900px; margin: 0 auto; }
.rp-features-detail-nav a { padding: 8px 16px; background: rgba(255,255,255,.85); border: 1px solid rgba(0,0,0,.08); border-radius: 999px; font-size: 13px; color: var(--rp-text); font-weight: 500; transition: all .2s; }
.rp-features-detail-nav a:hover { background: var(--rp-primary); color: #fff; border-color: var(--rp-primary); transform: translateY(-2px); }
.rp-features-detail { padding: 60px 0 80px; }


/* ============================================================
   FEATURES HERO RICO (v1.6.0) — espelha visual de /planos/
   ============================================================ */
.rp-features-hero {
    position: relative;
    padding: 90px 0 70px;
    overflow: hidden;
    background: linear-gradient(180deg, #FAFBFE 0%, #FFFFFF 100%);
}
.rp-features-hero-bg { position: absolute; inset: 0; pointer-events: none; }

/* Mesh tech monocromático: tons de azul/indigo/cyan suaves, sem verde/amarelo */
.rp-features-hero-mesh {
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle at 18% 26%, rgba(var(--rp-primary-rgb, 0, 102, 255), .14) 0%, transparent 45%),
        radial-gradient(circle at 82% 64%, rgba(var(--rp-primary-rgb, 0, 102, 255), .10) 0%, transparent 50%),
        radial-gradient(circle at 90% 14%, rgba(56, 189, 248, .09) 0%, transparent 36%),
        radial-gradient(circle at 50% 92%, rgba(99, 102, 241, .09) 0%, transparent 42%);
    filter: blur(70px);
    animation: rp-mesh-shift 25s ease-in-out infinite alternate;
}

/* Dot grid (Stripe/Linear style) — feel mais tech que o cross-hatch */
.rp-features-hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(15, 23, 42, .12) 1px, transparent 1px);
    background-size: 22px 22px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 28%, transparent 72%);
    mask-image: radial-gradient(ellipse at center, black 28%, transparent 72%);
}

/* Floats geométricos SVG — tech/GPS feel */
.rp-features-hero-float {
    position: absolute;
    pointer-events: none;
    user-select: none;
    animation: rp-features-float-anim 8s ease-in-out infinite;
    color: rgba(var(--rp-primary-rgb, 0, 102, 255), .18);
}
/* hexágono — geométrico/estrutura */
.rp-features-float-1 { top: 12%; left: 5%;   width: 92px; height: 92px; }
/* radar concêntrico — sinal/varredura */
.rp-features-float-2 { top: 58%; right: 9%;  width: 78px; height: 78px; animation-delay: 1s; animation-direction: reverse; color: rgba(15, 23, 42, .14); }
/* network nodes — conectividade */
.rp-features-float-3 { top: 24%; right: 16%; width: 62px; height: 62px; animation-delay: 2s; color: rgba(99, 102, 241, .22); }
/* crosshair — precisão/GPS */
.rp-features-float-4 { bottom: 18%; left: 11%; width: 70px; height: 70px; animation-delay: 3s; color: rgba(56, 189, 248, .22); }
@keyframes rp-features-float-anim {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-18px) rotate(3deg); }
}

.rp-features-hero-content {
    position: relative;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}

.rp-features-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--rp-primary, #0066FF);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    margin-bottom: 24px;
}
.rp-features-eyebrow-line {
    display: block;
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rp-primary, #0066FF));
}
.rp-features-eyebrow-line:last-child {
    background: linear-gradient(90deg, var(--rp-primary, #0066FF), transparent);
}

.rp-features-hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--rp-dark, #0A0E27);
    letter-spacing: -.02em;
    margin-bottom: 24px;
}
.rp-features-hero-title span {
    background: var(--rp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}
.rp-features-hero-title span::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 6%;
    height: 6px;
    background: var(--rp-gradient);
    border-radius: 3px;
    opacity: .25;
    z-index: -1;
}

.rp-features-hero-desc {
    font-size: 19px;
    color: #4B5563;
    max-width: 640px;
    margin: 0 auto 44px;
    line-height: 1.6;
}

.rp-features-hero-trust {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 20px 40px;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 20px 60px rgba(var(--rp-shadow-rgb, 0, 102, 255), .12);
}
.rp-features-hero-trust-item {
    text-align: center;
    padding: 0 28px;
}
.rp-features-hero-trust-item strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    background: var(--rp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -.02em;
}
.rp-features-hero-trust-item strong small {
    font-size: 14px;
    font-weight: 700;
}
.rp-features-hero-trust-item span {
    font-size: 12px;
    color: #6B7280;
    font-weight: 600;
    letter-spacing: .03em;
}
.rp-features-hero-trust-divider {
    width: 1px;
    height: 32px;
    background: rgba(0, 0, 0, .08);
}


/* ============================================================
   FEATURES NAV STICKY — atalhos com scroll-spy (v1.6.0)
   ============================================================ */
.rp-features-nav {
    position: sticky;
    top: 88px; /* abaixo do header com folga (v2.0.0 — antes 64px estava colado) */
    z-index: 50;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    border-top: 1px solid rgba(0, 0, 0, .04);
    transition: box-shadow .3s, transform .3s;
}
.rp-features-nav.is-stuck {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}
.rp-features-nav-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 0;
}
.rp-features-nav-label {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: #6B7280;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.rp-features-nav-links {
    display: flex;
    gap: 6px;
    flex: 1 1 auto;
    min-width: 0; /* permite encolher abaixo do conteúdo (importante pra flex) */
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 12px;
    padding: 2px 0;
    /* Borda-fade sutil só pra sinalizar scroll no extremo direito quando há overflow.
       Não fade na esquerda — primeira chip fica sempre 100% visível. */
    -webkit-mask-image: linear-gradient(90deg, black 0, black calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(90deg, black 0, black calc(100% - 24px), transparent 100%);
}
.rp-features-nav-links::-webkit-scrollbar { display: none; }
.rp-features-nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, .08);
    font-size: 13px;
    font-weight: 600;
    color: var(--rp-text, #1F2937);
    white-space: nowrap;
    flex-shrink: 0;
    transition: all .2s ease;
}
.rp-features-nav-links a:hover {
    background: rgba(var(--rp-primary-rgb, 0, 102, 255), .06);
    border-color: rgba(var(--rp-primary-rgb, 0, 102, 255), .25);
    color: var(--rp-primary, #0066FF);
}
.rp-features-nav-links a.is-active {
    background: var(--rp-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(var(--rp-shadow-rgb, 0, 102, 255), .25);
}
.rp-features-nav-icon { font-size: 14px; line-height: 1; }


/* ============================================================
   FEATURES POR CATEGORIA — header com ícone grande gradient (v1.6.0)
   ============================================================ */
.rp-features-category {
    padding: 80px 0;
    position: relative;
}
.rp-features-category:nth-child(odd of .rp-features-category) {
    /* Fundo levemente alternado para separar visualmente as categorias */
}
.rp-features-category + .rp-features-category {
    border-top: 1px solid rgba(0, 0, 0, .04);
}

.rp-features-category-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
    position: relative;
}
.rp-features-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: var(--rp-gradient);
    color: #fff;
    font-size: 38px;
    margin-bottom: 20px;
    box-shadow: 0 18px 40px rgba(var(--rp-shadow-rgb, 0, 102, 255), .25);
    position: relative;
}
.rp-features-category-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 26px;
    background: var(--rp-gradient);
    opacity: .15;
    z-index: -1;
    filter: blur(12px);
}
.rp-features-category-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--rp-dark, #0A0E27);
    margin: 8px 0 12px;
    letter-spacing: -.02em;
}
.rp-features-category-subtitle {
    font-size: 17px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}


/* ============================================================
   CHIP DE DISPONIBILIDADE — "Disponível em todos os planos" (v1.6.0)
   ============================================================ */
.rp-feature-detail-availability {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    background: linear-gradient(135deg, rgba(0, 200, 150, .1), rgba(34, 197, 94, .08));
    border: 1px solid rgba(34, 197, 94, .25);
    border-radius: 999px;
    font-size: 13px;
    color: #166534;
    font-weight: 600;
    margin-bottom: 24px;
}
.rp-feature-detail-availability strong {
    color: #15803D;
    font-weight: 800;
}
.rp-feature-detail-availability-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #22C55E;
    color: #fff;
    flex-shrink: 0;
}
/* Colunas IGUAIS (1fr 1fr) — antes era 1fr 1.1fr alternando, o que fazia as imagens
   terem larguras diferentes em features alternadas. Agora todos os visuals são do
   mesmo tamanho, garantindo cards uniformes independente do conteúdo. */
.rp-feature-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.rp-feature-detail:last-child { border-bottom: 0; }
.rp-feature-detail-reverse { grid-template-columns: 1fr 1fr; }
.rp-feature-detail-reverse .rp-feature-detail-text { order: 2; }
.rp-feature-detail-reverse .rp-feature-detail-visual { order: 1; }
.rp-feature-detail-badge { display: inline-block; padding: 6px 14px; background: rgba(var(--rp-shadow-rgb, 0, 102, 255), .08); color: var(--rp-primary); border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .08em; margin-bottom: 16px; }
.rp-feature-detail-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--rp-dark); margin-bottom: 12px; }
.rp-feature-detail-lead { font-size: 19px; color: var(--rp-primary); font-weight: 600; margin-bottom: 16px; }
.rp-feature-detail-desc { color: #4B5563; font-size: 16px; line-height: 1.75; margin-bottom: 24px; }
.rp-feature-detail-list { list-style: none; padding: 0; margin: 0 0 30px; }
.rp-feature-detail-list li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; color: #374151; font-size: 15px; }
.rp-feature-detail-list svg { flex-shrink: 0; color: var(--rp-secondary, #00C896); margin-top: 4px; }
.rp-feature-detail-visual { position: relative; }

/* Container das imagens — aspect-ratio 10:9 (matching 1000×900px recomendado) (v1.9.7) */
.rp-feature-imgs {
    position: relative;
    aspect-ratio: 10/9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(var(--rp-shadow-rgb, 0, 102, 255), .18);
    background: #F4F6F8;
}
.rp-feature-imgs .rp-feature-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: auto;
    opacity: 0;
    transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .3s ease;
    cursor: zoom-in;            /* indica que é clicável (v1.9.7) */
}
.rp-feature-imgs:hover .rp-feature-img.is-active {
    transform: scale(1.03);     /* zoom sutil no hover pra reforçar clicabilidade */
}
/* Imagem standalone (sem carrossel) também ganha zoom no hover */
.rp-feature-imgs:not(.rp-feature-imgs-carousel):hover .rp-feature-img {
    transform: scale(1.03);
}
.rp-feature-imgs .rp-feature-img.is-active { opacity: 1; }
/* Quando há só 1 imagem (sem carrossel), sempre visível */
.rp-feature-imgs:not(.rp-feature-imgs-carousel) .rp-feature-img { opacity: 1; }

/* Dots de navegação */
.rp-feature-imgs-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 18px;
}
.rp-feature-imgs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(var(--rp-shadow-rgb, 0, 102, 255), .25);
    cursor: pointer;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}
.rp-feature-imgs-dot:hover {
    background: rgba(var(--rp-shadow-rgb, 0, 102, 255), .45);
}
.rp-feature-imgs-dot.is-active {
    background: var(--rp-primary, #0066FF);
    width: 28px;
    border-radius: 5px;
}
.rp-feature-detail-placeholder { aspect-ratio: 10/9; background: linear-gradient(135deg, rgba(var(--rp-shadow-rgb, 0, 102, 255),.06), rgba(0,200,150,.06)), repeating-linear-gradient(45deg, rgba(0,0,0,.02) 0 2px, transparent 2px 16px); border: 2px dashed rgba(var(--rp-shadow-rgb, 0, 102, 255), .25); border-radius: 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #6B7280; text-align: center; padding: 30px; }
.rp-feature-detail-placeholder-icon { font-size: 64px; opacity: .5; }
.rp-feature-detail-placeholder-label { font-size: 16px; font-weight: 600; color: var(--rp-primary); }
.rp-feature-detail-placeholder-hint { font-size: 12px; color: #9CA3AF; }

/* Blog */
.rp-blog-list { padding: 60px 0 100px; }
.rp-posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.rp-post-card { background: rgba(255,255,255,.85); backdrop-filter: blur(8px); border-radius: 18px; border: 1px solid rgba(0,0,0,.05); overflow: hidden; transition: all .3s; }
.rp-post-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.rp-post-thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.rp-post-body { padding: 24px; }
.rp-post-date { color: var(--rp-primary); font-size: 12px; font-weight: 600; }
.rp-post-title { font-size: 19px; margin: 8px 0 12px; }
.rp-post-title a { color: var(--rp-dark); }
.rp-post-title a:hover { color: var(--rp-primary); }
.rp-post-excerpt { color: #6B7280; font-size: 14px; margin-bottom: 16px; }
.rp-post-link { color: var(--rp-primary); font-weight: 600; font-size: 14px; }
.rp-pagination { text-align: center; margin-top: 50px; }

/* 404 */
.rp-404 { padding: 100px 0; }
.rp-404-icon { font-size: 80px; margin-bottom: 20px; }
.rp-404-title { font-size: clamp(4rem, 12vw, 8rem); background: var(--rp-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.rp-404-subtitle { font-size: 28px; color: var(--rp-dark); }
.rp-404-text { color: #6B7280; font-size: 17px; max-width: 500px; margin: 0 auto 32px; }
.rp-404-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* ============================================================
   RESPONSIVE — refatorado v1.5.0 (cobertura completa: tablet + mobile)
   Breakpoints:
     ≤1024px → Tablet grande (iPad landscape, laptops pequenos)
     ≤900px  → Tablet pequeno / mobile grande (iPad portrait)
     ≤768px  → Mobile (smartphones em landscape, tablets pequenos)
     ≤600px  → Mobile padrão
     ≤480px  → Mobile pequeno (iPhone SE, etc)
   ============================================================ */

/* ============================================================
   ≤1024px — Tablet grande
   ============================================================ */
@media (max-width: 1024px) {
    /* Hero */
    .rp-hero { padding: 70px 0 90px; }
    .rp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .rp-hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
    .rp-hero-content { text-align: center; }
    .rp-hero-cta { justify-content: center; }
    .rp-hero-trust { justify-content: center; }

    /* Hero map: badges/cards proporcionais ao tamanho do mapa */
    .rp-hero-map-brand { top: 14px; left: 14px; padding: 8px 12px; gap: 8px; }
    .rp-hero-map-brand-text { font-size: 13px; }
    .rp-hero-map-brand-logo { max-height: 24px; }
    .rp-hero-map-status { top: 14px; right: 14px; padding: 6px 11px; font-size: 11px; }
    .rp-hero-map-info-card { bottom: 14px; left: 14px; padding: 10px 13px; }
    .rp-hero-map-info-value { font-size: 18px; }
    .rp-hero-map-sensors-card {
        bottom: 14px; right: 14px; padding: 9px 12px; min-width: 155px;
    }
    .rp-hero-map-sensors-label { font-size: 9px; margin-bottom: 6px; }
    .rp-hero-map-sensor { font-size: 10.5px; }
    .rp-hero-map-sensor-status { padding: 2px 7px 2px 5px; font-size: 10px; }

    /* Grids principais → 1 coluna */
    .rp-about-grid,
    .rp-app-grid,
    .rp-contact-grid,
    .rp-contact-form-grid,
    .rp-about-teaser-grid,
    .rp-feature-detail,
    .rp-feature-detail-reverse,
    .rp-calc-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .rp-feature-detail,
    .rp-feature-detail-reverse { padding: 50px 0; }
    .rp-feature-detail-reverse .rp-feature-detail-text,
    .rp-feature-detail-reverse .rp-feature-detail-visual { order: 0; }

    /* Plans */
    .rp-plans-selector { grid-template-columns: 1fr; }
    .rp-plans-types { display: none; }
    .rp-plans-pills { display: flex; }

    /* How it works */
    .rp-how-connector { display: none; }
    .rp-how-track { grid-template-columns: 1fr; gap: 30px; max-width: 520px; }

    /* Footer: 4 col → 2 col com gap mais apertado */
    .rp-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

    /* Carousel: 3 cards → 2 cards */
    .rp-carousel-track > * { flex: 0 0 calc((100% - 24px) / 2); }
    .rp-testimonials > .rp-container > .rp-carousel { padding: 0 40px; }

    /* Section paddings reduzidos */
    .rp-features, .rp-about, .rp-plans, .rp-app, .rp-testimonials, .rp-faq, .rp-contact,
    .rp-how, .rp-mvv, .rp-timeline, .rp-why-us, .rp-contact-channels, .rp-contact-depts,
    .rp-contact-form-section, .rp-stats, .rp-roi-calc, .rp-about-teaser, .rp-video-demo,
    .rp-guarantee-banner { padding: 80px 0; }

    /* Section header com max-width menor */
    .rp-section-header { margin-bottom: 50px; }
}

/* ============================================================
   ≤900px — Tablet pequeno (iPad portrait, etc)
   ============================================================ */
@media (max-width: 900px) {
    /* Calculadora: 3 tipos de veículo → 2 colunas */
    .rp-calc-types { grid-template-columns: 1fr 1fr; }

    /* Plans features: 2 col → 1 col antes do mobile */
    .rp-plans-panel-features { grid-template-columns: 1fr; }

    /* Logos carousel — cards menores no tablet, gap proporcional */
    .rp-logos-track { gap: 20px; }
    .rp-logos-item { width: 150px; height: 100px; padding: 14px; }
}

@media (max-width: 600px) {
    /* Mobile: cards ainda menores pra caber mais por viewport */
    .rp-logos-track { gap: 16px; }
    .rp-logos-item { width: 130px; height: 90px; padding: 12px; border-radius: 12px; }
}

/* ============================================================
   ≤768px — Mobile
   ============================================================ */
@media (max-width: 768px) {
    /* Topbar e header */
    .rp-topbar .rp-container { justify-content: center; text-align: center; }
    .rp-topbar-info { display: none; }
    .rp-burger { display: flex; }
    .rp-header-btn span { display: none; }
    .rp-header-btn { padding: 12px; }
    .rp-nav {
        position: fixed;
        top: 90px; left: 0; right: 0; bottom: 0;
        background: #fff;
        padding: 30px 24px;
        transform: translateX(100%);
        transition: transform .3s ease;
        z-index: 99;
        overflow-y: auto;
    }
    .rp-nav.is-open { transform: translateX(0); }
    .rp-menu { flex-direction: column; gap: 0; }
    .rp-menu > li > a { padding: 14px 16px; font-size: 17px; }
    .rp-menu > li > a::after { display: none; }
    .rp-menu .sub-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; padding-left: 16px; }

    /* Hero */
    .rp-hero { padding: 50px 0 70px; }
    .rp-hero-cta { flex-direction: column; align-items: stretch; }
    .rp-hero-cta .rp-btn { justify-content: center; }
    .rp-hero-visual { max-width: 100%; }

    /* Hero map: cards ainda menores e mais apertados */
    .rp-hero-map-brand { top: 10px; left: 10px; padding: 6px 10px; gap: 6px; border-radius: 10px; }
    .rp-hero-map-brand-text { font-size: 11px; }
    .rp-hero-map-brand-logo { max-height: 20px; }
    .rp-hero-map-brand-icon { width: 22px; height: 22px; font-size: 11px; }
    .rp-hero-map-status { top: 10px; right: 10px; padding: 5px 9px; font-size: 10px; }
    .rp-hero-map-status-dot { width: 6px; height: 6px; }
    .rp-hero-map-info-card { bottom: 10px; left: 10px; padding: 8px 11px; border-radius: 10px; }
    .rp-hero-map-info-label { font-size: 9px; }
    .rp-hero-map-info-value { font-size: 16px; }
    .rp-hero-map-info-value small { font-size: 10px; }
    .rp-hero-map-info-extra { font-size: 10px; }

    /* Em mobile, o sensors card compete com "MEU CARRO" — esconde pra não poluir */
    .rp-hero-map-sensors-card { display: none; }

    /* Section paddings menores */
    .rp-features, .rp-about, .rp-plans, .rp-app, .rp-testimonials, .rp-faq, .rp-contact,
    .rp-how, .rp-mvv, .rp-timeline, .rp-why-us, .rp-contact-channels, .rp-contact-depts,
    .rp-contact-form-section, .rp-stats, .rp-roi-calc, .rp-about-teaser, .rp-video-demo,
    .rp-guarantee-banner { padding: 60px 0; }
    .rp-section-header { margin-bottom: 40px; }

    /* Layout */
    .rp-pillars { grid-template-columns: 1fr; }
    .rp-trustbar-inner { gap: 16px; justify-content: center; }
    .rp-cta-box { padding: 50px 24px; }

    /* Footer */
    .rp-footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .rp-footer-contact li { justify-content: center; }
    .rp-footer-contact a { align-items: center; text-align: center; }
    .rp-social { justify-content: center; }
    .rp-footer-bottom { justify-content: center; text-align: center; flex-direction: column; gap: 10px; }
    .rp-footer-cta-content { text-align: center; flex-direction: column; }

    /* App page */
    .rp-app-mockup { height: 400px; }

    /* Feature detail (já em 1024px, mas reforçar paddings) */
    .rp-feature-detail, .rp-feature-detail-reverse { gap: 30px; padding: 40px 0; }

    /* Plans */
    .rp-plans-panel-features { grid-template-columns: 1fr; }
    .rp-plans-panel-footer { flex-direction: column; align-items: stretch; }
    .rp-plans-panel-footer .rp-btn { justify-content: center; }
    .rp-plans-benefits { padding: 28px 22px; }
    .rp-plans-panel-name { font-size: 22px; }
    .rp-plans-panel-value { font-size: 42px; }
    .rp-plans-panel-header { gap: 12px; }
    .rp-plans-panel-icon { width: 56px; height: 56px; font-size: 32px; }

    /* Calculadora — empilhar tudo, gerenciar bem o espaço */
    .rp-calc-grid { padding: 28px 20px; }
    .rp-calc-types { grid-template-columns: 1fr 1fr; gap: 8px; }
    .rp-calc-type { padding: 12px 6px; font-size: 12px; }
    .rp-calc-type-icon { font-size: 22px; }

    /* Carousel de testimonials: anula 100vw escape, 1 card por vez */
    .rp-testimonials > .rp-container > .rp-carousel {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
    .rp-carousel { padding: 0 44px; }
    .rp-carousel-track > * { flex: 0 0 100%; }
    .rp-carousel-btn { width: 40px; height: 40px; }
    .rp-testimonial { padding: 24px; }
    .rp-testimonial-text { font-size: 14px; }

    /* Compare table: scroll horizontal já existe, ajustar padding */
    .rp-compare-table th, .rp-compare-table td { padding: 14px 12px; font-size: 13px; }

    /* About teaser */
    .rp-about-teaser-cards { grid-template-columns: 1fr 1fr; gap: 14px; }

    /* Stats: 4 col → 2 col */
    .rp-stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

    /* FAQ: padding interno reduzido */
    .rp-faq-question { padding: 18px 20px; font-size: 15px; }
    .rp-faq-answer { padding: 0 20px 18px; }

    /* Forms: campos full-width, gap menor */
    .rp-form-row { grid-template-columns: 1fr; gap: 12px; }

    /* Buttons globais: garantir tap target ≥44px */
    .rp-btn { min-height: 44px; }
    .rp-btn-lg { min-height: 52px; padding: 14px 28px; }
}

/* ============================================================
   ≤600px — Mobile padrão (smartphones em portrait)
   ============================================================ */
@media (max-width: 600px) {
    /* Hero map: altura mínima pra animação não ficar esmagada */
    .rp-hero-map { aspect-ratio: 4/3; }

    /* Stats: 2 col mantém, mas reduzir espaçamento */
    .rp-stats-grid { gap: 20px; }
    .rp-stat-number { font-size: clamp(2rem, 8vw, 3rem); }

    /* About-teaser cards: empilhar */
    .rp-about-teaser-cards { grid-template-columns: 1fr; }

    /* Plans pix banner: empilhar */
    .rp-plans-pix { flex-direction: column; text-align: center; gap: 8px; }

    /* CTA banners: padding menor */
    .rp-cta-box { padding: 40px 20px; }
    .rp-guarantee-banner-inner { padding: 30px 20px; }

    /* Trust bar: itens em coluna */
    .rp-trustbar-inner { flex-direction: column; align-items: center; gap: 14px; }

    /* Comparativo: alertar visualmente que role pra direita */
    .rp-compare-wrapper::after {
        content: '←  role  →';
        display: block;
        text-align: center;
        font-size: 11px;
        color: #9CA3AF;
        margin-top: 8px;
    }

    /* App page: mockup menor */
    .rp-app-mockup { height: 340px; }

    /* QR codes: empilhar */
    .rp-app-stores { flex-direction: column; align-items: stretch; gap: 12px; }
}

/* ============================================================
   ≤480px — Mobile pequeno (iPhone SE, smartphones antigos)
   ============================================================ */
@media (max-width: 480px) {
    .rp-container { padding: 0 18px; }

    /* Tipografia mais compacta */
    .rp-hero-title { font-size: clamp(1.75rem, 7vw, 2.25rem); }
    .rp-hero-subtitle { font-size: 16px; }
    .rp-section-title { font-size: clamp(1.5rem, 6vw, 1.9rem); }
    .rp-section-subtitle { font-size: 15px; }

    /* Botões flutuantes */
    .rp-cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
    .rp-cookie-banner h4 { font-size: 15px; }
    .rp-cookie-banner p { font-size: 13px; }
    .rp-float-whatsapp { width: 54px; height: 54px; bottom: 14px; right: 14px; }
    .rp-header.is-floating { padding: 8px 8px 0; }

    /* Hero CTAs: ocupar largura total */
    .rp-hero-cta .rp-btn { width: 100%; }

    /* Hero trust: empilhar avatar + texto se necessário */
    .rp-hero-trust { flex-direction: column; gap: 12px; }
    .rp-hero-trust-text { text-align: center; }

    /* Cards em geral: padding menor */
    .rp-feature-card, .rp-about-card, .rp-step { padding: 20px 18px; }
    .rp-testimonial { padding: 20px; }

    /* Plans benefits: mais compacto */
    .rp-plans-benefits { padding: 22px 18px; }
    .rp-plans-panel-name { font-size: 20px; }
    .rp-plans-panel-value { font-size: 36px; }
    .rp-plans-panel-icon { width: 48px; height: 48px; font-size: 26px; }

    /* Calculator: tipos em fileira única se 4, ou 1col se 3+ */
    .rp-calc-types { grid-template-columns: 1fr 1fr; gap: 6px; }
    .rp-calc-type { padding: 10px 4px; font-size: 11px; }
    .rp-calc-grid { padding: 22px 16px; border-radius: 20px; }

    /* Carousel: setas menores */
    .rp-carousel { padding: 0 38px; }
    .rp-carousel-btn { width: 36px; height: 36px; }
    .rp-carousel-prev { left: 0; }
    .rp-carousel-next { right: 0; }

    /* Stats: 2 col pode virar 1 em telas muito pequenas */
    .rp-stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    /* Forms: padding interno reduzido */
    .rp-form-field input, .rp-form-field textarea, .rp-form-field select { padding: 11px 14px; font-size: 15px; }

    /* App page: hero compactado */
    .rp-app-mockup { height: 300px; }

    /* Header mobile: logo menor pra caber junto com burger */
    .rp-header-logo img { max-height: 36px; }
    .rp-header-inner { height: 70px; gap: 12px; }
    .rp-header.is-floating .rp-header-inner { height: 56px; }

    /* Menu mobile: ajustar topo conforme novo header */
    .rp-nav { top: 70px; }
}


/* ============================================================
   FIXES MOBILE v1.5.1 — correções pós-feedback do usuário
   - Menu mobile vazando do viewport (drawer 340px)
   - Trust-bar items desalinhados em coluna
   - Cookie banner: botão na linha errada
   - Hero CTA "Conhecer Funcionalidades" desalinhado
   - "+50.000 protegidos" overlapping "SOBRE A EMPRESA"
   - Footer: CTA strip, payments e legal centralizados
   ============================================================ */

@media (max-width: 768px) {
    /* === MENU MOBILE: drawer 340px (não full-width) === */
    /* Antes ocupava 100vw e o transform translateX(100%) podia vazar do viewport
       em alguns navegadores. Agora é um drawer lateral de tamanho fixo com
       visibility:hidden no estado fechado para garantir que não renderiza. */
    .rp-nav {
        width: min(340px, 88vw);
        left: auto;
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, .18);
        visibility: hidden;
        transition: transform .3s ease, visibility .3s;
    }
    .rp-nav.is-open { visibility: visible; }

    /* === TRUST BAR: items em coluna centralizados === */
    .rp-trustbar-inner {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }
    .rp-trust-item {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        justify-content: flex-start;
    }

    /* === HERO CTAs: largura controlada e centralizados === */
    .rp-hero-cta { align-items: center; }
    .rp-hero-cta .rp-btn {
        width: 100%;
        max-width: 360px;
        justify-content: center;
    }

    /* === HERO TRUST: avatares + texto empilhados centralizados === */
    /* (estava só no 480px, agora começa no 768px para mobile inteiro) */
    .rp-hero-trust {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .rp-hero-avatars { justify-content: center; }
    .rp-hero-trust-text { text-align: center; align-items: center; }

    /* === HERO: padding-bottom maior para folga após o trust === */
    .rp-hero { padding: 50px 0 80px; }

    /* === COOKIE BANNER: empilhar ícone + texto + botão === */
    /* O default era flex-row com flex-wrap; em mobile a quebra deixava o
       botão sozinho na esquerda. Agora tudo em coluna full-width centralizado. */
    .rp-cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        text-align: center;
    }
    .rp-cookie-icon { align-self: center; }
    .rp-cookie-content p {
        min-width: 0;
        flex: none;
    }
    .rp-cookie-content .rp-btn {
        width: 100%;
        justify-content: center;
    }

    /* === ABOUT TEASER: gap maior entre visual e texto === */
    /* O círculo "+50.000" tem pulse animation (scale 1.15x) que extrapola
       a caixa. Com gap de 40px o pulse colava no eyebrow "SOBRE A EMPRESA".
       50px de gap + margin-bottom no visual = espaço seguro. */
    .rp-about-teaser-grid { gap: 50px; }
    .rp-about-teaser-visual { margin-bottom: 16px; }
    .rp-about-teaser-content { text-align: center; }
    .rp-about-teaser-content .rp-section-eyebrow { display: inline-block; }
    .rp-about-teaser-content .rp-btn { margin: 0 auto; }

    /* === FOOTER CTA STRIP: empilhar título e botão === */
    .rp-footer-cta-content {
        gap: 16px;
        text-align: center;
        align-items: center;
        flex-direction: column;
    }
    .rp-footer-cta-content > div { width: 100%; }
    .rp-footer-cta-content .rp-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* === FOOTER: itens internos centralizados === */
    .rp-footer-col { text-align: center; }
    .rp-footer-col h4 { text-align: center; }
    .rp-footer-col ul { padding-left: 0; list-style: none; }
    .rp-footer-col ul li { justify-content: center; }
    .rp-footer-payments { justify-content: center; }
    .rp-footer-payments-label { width: 100%; text-align: center; margin-bottom: 4px; }
    .rp-footer-legal { justify-content: center; }
    .rp-footer-address { justify-content: center; text-align: center; }
    .rp-footer-status { justify-content: center; }
}

@media (max-width: 480px) {
    /* Drawer ainda mais estreito em telas muito pequenas */
    .rp-nav { width: min(320px, 92vw); }

    /* Hero CTAs full-width (sem max-width 360px) */
    .rp-hero-cta .rp-btn { max-width: 100%; }

    /* Hero badge mais compacto */
    .rp-hero-badge { font-size: 11.5px; padding: 6px 12px; }

    /* Cookie banner: padding reduzido + tipografia menor */
    .rp-cookie-banner { padding: 16px; }
    .rp-cookie-content p { font-size: 12.5px; }
    .rp-cookie-content .rp-btn { padding: 10px 18px; font-size: 14px; }

    /* Trust-bar items: ícone menor */
    .rp-trust-item { max-width: 100%; gap: 10px; }
    .rp-trust-icon-wrap { width: 40px; height: 40px; }
    .rp-trust-text strong { font-size: 13px; }
    .rp-trust-text span { font-size: 11px; }

    /* About teaser visual menor pra dar mais respiro vertical */
    .rp-about-teaser-visual { max-width: 240px; }
    .rp-about-teaser-circle { width: 180px; height: 180px; }
    .rp-about-teaser-stat-num { font-size: 32px; }

    /* Footer payments badges em linhas */
    .rp-footer-payments .rp-payment-badge { padding: 4px 8px; font-size: 10.5px; }
}


/* ============================================================
   FEATURES PAGE — responsividade do hero, nav, categoria (v1.6.0)
   ============================================================ */
/* Em viewports ≤1280px o header floating ganha padding extra (22px) por causa
   da regra .rp-header.is-floating (linha ~308). Isso faz o header total ter
   88px de altura quando floating. O nav sticky precisa de top maior aqui. */
@media (max-width: 1280px) {
    .rp-features-nav { top: 92px; }
}

@media (max-width: 1024px) {
    .rp-features-hero { padding: 70px 0 50px; }
    .rp-features-hero-trust {
        padding: 16px 24px;
    }
    .rp-features-hero-trust-item { padding: 10px 18px; flex: 1 0 40%; }
    .rp-features-hero-trust-item strong { font-size: 22px; }
    .rp-features-hero-trust-divider { display: none; }
    .rp-features-category { padding: 70px 0; }
    .rp-features-category-icon { width: 64px; height: 64px; font-size: 32px; }
}

@media (max-width: 768px) {
    .rp-features-hero { padding: 50px 0 40px; }
    .rp-features-hero-float { display: none; }
    .rp-features-hero-trust {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 20px;
        gap: 10px;
        width: 100%;
        max-width: 380px;
    }
    .rp-features-hero-trust-item {
        padding: 6px 0;
        text-align: center;
        flex: none;
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 10px;
    }
    .rp-features-hero-trust-item strong { font-size: 22px; }
    .rp-features-hero-trust-item span { font-size: 12px; }

    /* Nav sticky no mobile: hide label, scroll horizontal — top ajustado pra ficar abaixo do header floating (88px) */
    .rp-features-nav { top: 92px; }
    .rp-features-nav-inner { padding: 10px 0; gap: 10px; }
    .rp-features-nav-label { display: none; }
    .rp-features-nav-links a { padding: 6px 12px; font-size: 12px; }

    .rp-features-category { padding: 50px 0; }
    .rp-features-category-header { margin-bottom: 36px; }
    .rp-features-category-icon { width: 56px; height: 56px; font-size: 28px; border-radius: 18px; }

    .rp-feature-detail-availability { font-size: 12px; padding: 8px 14px; }
}

@media (max-width: 480px) {
    /* Header floating em ≤480px tem padding 8px + altura 56px = 64px total.
       Nav sticky pode ficar mais perto. */
    .rp-features-nav { top: 68px; }
    .rp-features-nav-links a { padding: 6px 10px; }
    .rp-features-nav-text {
        /* Em telas muito pequenas, mostra só o ícone */
        display: none;
    }
    .rp-features-nav-icon { font-size: 16px; }
    .rp-features-nav-links a { padding: 8px 12px; }
}


/* ============================================================
   FIXES MOBILE v1.5.2 — segunda rodada de feedback
   - Drawer mobile estava com altura auto (showing menu items + empty)
   - Botão "Conhecer todas as funcionalidades" overflow horizontal
   - About-teaser badges flutuantes invadindo o círculo +50.000
   - Footer "Navegação" underline desalinhada (left:0 fixed)
   ============================================================ */

@media (max-width: 768px) {
    /* === DRAWER MENU: altura explícita ===
       Em alguns navegadores mobile, top:90 + bottom:0 + width:fixed não computa
       altura full. Forçando height calc resolve. CSS cascade de pé:
       - vh primeiro (fallback universal)
       - dvh depois (browsers que entendem usam o último; navegadores que não
         entendem ignoram a declaração e ficam com o vh anterior).
       100dvh = dynamic viewport height, leva em conta a address bar do mobile. */
    .rp-nav {
        height: calc(100vh - 90px);
        max-height: calc(100vh - 90px);
        height: calc(100dvh - 90px);
        max-height: calc(100dvh - 90px);
        bottom: auto;
        display: flex;
        flex-direction: column;
    }

    /* === RODAPÉ DO DRAWER (CTA WhatsApp + contato) — ocupa espaço vazio === */
    .rp-nav-footer {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: auto;     /* empurra pro fundo do drawer flex */
        padding-top: 30px;
        padding-bottom: 8px;
        border-top: 1px solid rgba(0, 0, 0, .06);
    }
    .rp-nav-footer-label {
        font-size: 12px;
        font-weight: 700;
        color: #6B7280;
        letter-spacing: .08em;
        text-transform: uppercase;
        text-align: center;
    }
    .rp-nav-footer-cta {
        justify-content: center;
        width: 100%;
        font-size: 15px;
    }
    .rp-nav-footer-contacts {
        list-style: none;
        margin: 6px 0 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .rp-nav-footer-contacts li {
        margin: 0;
    }
    .rp-nav-footer-contacts a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 12px;
        border-radius: 10px;
        color: var(--rp-dark, #0A0E27);
        font-size: 13px;
        font-weight: 600;
        transition: background .2s;
    }
    .rp-nav-footer-contacts a:hover {
        background: rgba(var(--rp-primary-rgb, 0, 102, 255), .06);
        color: var(--rp-primary, #0066FF);
    }
    .rp-nav-footer-icon {
        font-size: 16px;
        width: 24px;
        text-align: center;
    }

    /* === BOTÕES LONGOS: permitir wrap em mobile === */
    /* O default .rp-btn é inline-flex sem white-space normal — textos longos
       expandem horizontalmente até overflow. Em mobile, deixar wrap. */
    .rp-btn {
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        word-break: break-word;
    }
    .rp-features-cta-all .rp-btn,
    .rp-plans-more-cta .rp-btn,
    .rp-app-features-more .rp-btn {
        max-width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }

    /* === ABOUT-TEASER: esconder badges flutuantes em mobile === */
    /* Os badges (ANATEL, Empresa Brasileira) eram posicionados absolutos com
       offset negativo (left:-8%, right:-8%) para sair das bordas do círculo
       no desktop. Em mobile, com visual menor (240-280px), os badges
       sobrepunham o "+50.000". A info dos badges já está na trust-bar do topo. */
    .rp-about-teaser-badge { display: none; }

    /* === ABOUT-TEASER VISUAL: clip do pulse animation === */
    /* O pulse anima até scale 1.15x extrapolando o visual e pisando no eyebrow
       "SOBRE A EMPRESA" abaixo. Padding extra + clip do pulse resolve. */
    .rp-about-teaser-visual {
        max-width: 280px;
        padding: 20px 0;
    }
    .rp-about-teaser-pulse {
        width: 220px;
        height: 220px;
    }
    .rp-about-teaser-grid { gap: 30px; }

    /* === FOOTER TITLE: underline centralizado quando text é centralizado === */
    .rp-footer-title { text-align: center; padding-bottom: 14px; }
    .rp-footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* === FOOTER BADGES (Brasileira/ANATEL/LGPD): centralizar === */
    .rp-footer-badges { justify-content: center; }
    .rp-footer-about { margin-left: auto; margin-right: auto; text-align: center; }

    /* === FOOTER SOCIAL (Facebook, Insta, YT, Linkedin): centralizar === */
    .rp-footer-social, .rp-social { justify-content: center; }
}

@media (max-width: 480px) {
    /* === Drawer altura ajustada ao header menor (70px) — vh fallback + dvh moderno === */
    .rp-nav {
        height: calc(100vh - 70px);
        max-height: calc(100vh - 70px);
        height: calc(100dvh - 70px);
        max-height: calc(100dvh - 70px);
    }

    /* === About-teaser visual ainda menor === */
    .rp-about-teaser-visual {
        max-width: 220px;
        padding: 16px 0;
    }
    .rp-about-teaser-circle { width: 160px; height: 160px; }
    .rp-about-teaser-pulse { width: 180px; height: 180px; }
    .rp-about-teaser-stat-num { font-size: 28px; }
    .rp-about-teaser-stat-label { font-size: 12px; }
}


/* ============================================================
   LIGHTBOX (v1.9.7) — overlay simples pra ampliar imagens
   Criada via JS quando há .rp-feature-img clicável. Não polui o DOM
   se não usada (só é inserida quando há trigger).
   ============================================================ */
.rp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 28, .92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s;
}
.rp-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}
.rp-lightbox-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
    transform: scale(.92);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    cursor: zoom-out;
    user-select: none;
}
.rp-lightbox.is-open .rp-lightbox-img {
    transform: scale(1);
}
.rp-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
    z-index: 2;
}
.rp-lightbox-close:hover {
    background: rgba(255, 255, 255, .22);
    transform: rotate(90deg);
}
.rp-lightbox-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* Prev/Next (v2.0.0) — botões laterais que aparecem só quando há 2+ imagens */
.rp-lightbox-prev,
.rp-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, transform .25s ease;
    z-index: 2;
}
.rp-lightbox-prev { left: 24px; }
.rp-lightbox-next { right: 24px; }
.rp-lightbox-prev:hover,
.rp-lightbox-next:hover {
    background: rgba(255, 255, 255, .22);
}
.rp-lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.rp-lightbox-next:hover { transform: translateY(-50%) translateX(3px); }
.rp-lightbox-prev:focus-visible,
.rp-lightbox-next:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

/* Contador "1 / 2" exibido no topo do overlay */
.rp-lightbox-counter {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    z-index: 2;
}

@media (max-width: 768px) {
    .rp-lightbox { padding: 16px; }
    .rp-lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 20px; }
    .rp-lightbox-hint { bottom: 16px; font-size: 10px; }
    .rp-lightbox-prev,
    .rp-lightbox-next { width: 44px; height: 44px; }
    .rp-lightbox-prev { left: 8px; }
    .rp-lightbox-next { right: 8px; }
    .rp-lightbox-prev svg,
    .rp-lightbox-next svg { width: 20px; height: 20px; }
    .rp-lightbox-counter { top: 16px; font-size: 11px; padding: 5px 12px; }
}


/* ============================================================
   VISITANTES ONLINE (page-visitantes-online.php) — v2.1.1
   Portado do SmartLocaliza, adaptado às cores claras + tokens
   do TemplateSmart (--rp-primary, --rp-accent, --rp-secondary).
   ============================================================ */
.sl-vo-section { padding: 40px 0 100px; }

.sl-vo-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 56px 24px 64px;
    margin: 0 auto 48px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 107, 53, .04) 100%);
    border: 1px solid rgba(0, 102, 255, .12);
    border-radius: 28px;
    box-shadow: 0 12px 50px rgba(0, 102, 255, .08);
    position: relative;
    overflow: hidden;
}
.sl-vo-total::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 70%; height: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at top, rgba(255, 107, 53, .14), transparent 70%);
    pointer-events: none;
}
.sl-vo-total-num {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--rp-accent, #FF6B35) 0%, var(--rp-primary, #0066FF) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
}
.sl-vo-total-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rp-text, #1F2937);
    opacity: 0.7;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}
.sl-vo-total-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--rp-secondary, #00C896);
    letter-spacing: 0.05em;
    margin-top: 12px;
    position: relative;
    z-index: 1;
}
.sl-vo-total-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--rp-secondary, #00C896);
    box-shadow: 0 0 12px var(--rp-secondary, #00C896);
    animation: sl-vo-pulse 1.8s ease-in-out infinite;
}
@keyframes sl-vo-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.75); }
}

.sl-vo-cities { margin-bottom: 24px; }
.sl-vo-cities-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.sl-vo-cities-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rp-text, #1F2937);
    opacity: 0.7;
}
.sl-vo-cities-count {
    font-size: 12px;
    color: var(--rp-text, #1F2937);
    opacity: 0.55;
    font-variant-numeric: tabular-nums;
}

.sl-vo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}
.sl-vo-city {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px;
    background: #ffffff;
    border: 1px solid rgba(0, 102, 255, .08);
    border-radius: 14px;
    transition: border-color .25s, background .25s, transform .25s, box-shadow .25s;
    animation: sl-vo-in 0.45s ease-out backwards;
    animation-delay: var(--sl-vo-delay, 0ms);
}
.sl-vo-city:hover {
    border-color: rgba(255, 107, 53, .35);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}
.sl-vo-city--unknown {
    border-style: dashed;
    opacity: 0.85;
}
.sl-vo-city--unknown:hover { transform: none; }

@keyframes sl-vo-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sl-vo-city:not(.sl-vo-city--unknown) .sl-vo-city-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.sl-vo-city:not(.sl-vo-city--unknown) .sl-vo-city-count::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rp-secondary, #00C896);
    box-shadow: 0 0 8px var(--rp-secondary, #00C896);
    animation: sl-vo-pulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
    .sl-vo-city:not(.sl-vo-city--unknown) .sl-vo-city-count::before { animation: none; }
    .sl-vo-total-dot { animation: none; }
}

.sl-vo-city-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}
.sl-vo-city-pin {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255, 107, 53, .1);
    border: 1px solid rgba(255, 107, 53, .25);
    color: var(--rp-accent, #FF6B35);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    overflow: hidden;
}
.sl-vo-city-pin--flag {
    background: #f8fafc;
    border-color: rgba(0, 0, 0, .08);
    padding: 4px;
}
.sl-vo-flag-pin {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .06);
}
.sl-vo-city-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.sl-vo-city-body strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--rp-text, #1F2937);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sl-vo-city-body span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--rp-text, #1F2937);
    opacity: 0.55;
}
.sl-vo-city-count {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--rp-accent, #FF6B35);
    line-height: 1;
    letter-spacing: -0.02em;
    min-width: 1.5em;
    text-align: right;
}
.sl-vo-city--unknown .sl-vo-city-pin {
    background: #f1f5f9;
    border-color: rgba(0, 0, 0, .1);
    color: #94a3b8;
}
.sl-vo-city--unknown .sl-vo-city-count {
    color: var(--rp-text, #1F2937);
    opacity: 0.6;
}

.sl-vo-city-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px dashed rgba(0, 0, 0, .07);
    font-size: 12px;
    color: var(--rp-text, #1F2937);
    opacity: 0.7;
}
.sl-vo-city-meta[hidden] { display: none; }
.sl-vo-meta-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-variant-numeric: tabular-nums;
}
.sl-vo-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px; height: 14px;
    color: var(--rp-accent, #FF6B35);
}
.sl-vo-meta-icon[data-state="night"] { color: var(--rp-primary, #0066FF); }
.sl-vo-meta-temp {
    font-variant-numeric: tabular-nums;
    padding: 2px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .06);
}
.sl-vo-meta-temp[hidden] { display: none; }

.sl-vo-empty {
    text-align: center;
    padding: 48px 24px;
    border: 1px dashed rgba(0, 0, 0, .15);
    border-radius: 18px;
    background: #ffffff;
}
.sl-vo-empty-icon {
    font-size: 40px;
    margin-bottom: 16px;
    opacity: 0.7;
}
.sl-vo-empty h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--rp-text, #1F2937);
}
.sl-vo-empty p {
    color: var(--rp-text, #1F2937);
    opacity: 0.65;
    font-size: 14px;
    margin: 0 auto;
    max-width: 480px;
}

.sl-vo-privacy {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 18px 22px;
    margin-top: 32px;
    border: 1px solid rgba(0, 200, 150, .25);
    border-radius: 14px;
    background: rgba(0, 200, 150, .04);
    color: var(--rp-secondary, #00C896);
}
.sl-vo-privacy > svg {
    width: 22px;
    height: 22px;
}
.sl-vo-privacy > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sl-vo-privacy strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--rp-text, #1F2937);
}
.sl-vo-privacy span {
    font-size: 13px;
    color: var(--rp-text, #1F2937);
    opacity: 0.75;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .sl-vo-total { padding: 40px 20px 48px; }
    .sl-vo-total-num { font-size: clamp(3.2rem, 16vw, 5rem); }
    .sl-vo-grid { grid-template-columns: 1fr; }
}
