/* OTOH Reembolso — landing, portal e admin */
:root {
  --rb-ink: #0c1f1a;
  --rb-forest: #0f6b4c;
  --rb-mint: #1fa97a;
  --rb-leaf: #d8f3e7;
  --rb-sand: #f3efe6;
  --rb-cream: #faf7f1;
  --rb-warn: #b45309;
  --rb-warn-bg: #fff7ed;
  --rb-err: #b91c1c;
  --rb-err-bg: #fef2f2;
  --rb-ok: #047857;
  --rb-muted: #5c6b64;
  --rb-line: #d9e5de;
  --rb-font: "Outfit", system-ui, sans-serif;
  --rb-display: "Fraunces", "Source Serif 4", Georgia, serif;
}

/* ——— Landing ——— */
.rb-land { margin: 0; font-family: var(--rb-font); color: var(--rb-ink); background: var(--rb-cream); }
.rb-land__nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px clamp(16px, 4vw, 48px); position: sticky; top: 0; z-index: 20;
  background: rgba(250,247,241,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--rb-line);
}
.rb-land__brand { font-weight: 800; font-size: 1.05rem; text-decoration: none; color: var(--rb-ink); letter-spacing: -.02em; }
.rb-land__brand span { color: var(--rb-forest); }
.rb-land__links { display: flex; gap: 20px; }
.rb-land__links a { color: var(--rb-muted); text-decoration: none; font-size: .92rem; font-weight: 500; }
.rb-land__nav-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.rb-hero {
  position: relative; min-height: min(92vh, 820px); display: grid;
  grid-template-columns: 1.1fr minmax(220px, 340px); align-items: end; gap: 24px;
  overflow: hidden; isolation: isolate;
  padding-right: clamp(16px, 4vw, 48px);
}
.rb-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(31,169,122,.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(15,107,76,.2), transparent 50%),
    linear-gradient(160deg, #0c1f1a 0%, #0f6b4c 42%, #1fa97a 100%);
  animation: rbGlow 12s ease-in-out infinite alternate;
}
.rb-hero__mesh {
  position: absolute; inset: 0; z-index: -1; opacity: .18; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}
@keyframes rbGlow {
  from { filter: saturate(1); }
  to { filter: saturate(1.15) brightness(1.05); }
}
.rb-hero__inner { padding: clamp(48px, 10vh, 120px) clamp(16px, 4vw, 48px) clamp(40px, 8vh, 80px); max-width: 780px; color: #f5fff9; }
.rb-hero__brand {
  font-family: var(--rb-display); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700;
  margin: 0 0 12px; letter-spacing: -.03em; animation: rbRise .7s ease both;
}
.rb-hero__title {
  font-size: clamp(1.35rem, 3vw, 2rem); font-weight: 600; margin: 0 0 14px; line-height: 1.25;
  max-width: 18ch; animation: rbRise .8s .08s ease both;
}
.rb-hero__lead {
  margin: 0 0 28px; font-size: 1.05rem; line-height: 1.55; color: rgba(245,255,249,.88); max-width: 42ch;
  animation: rbRise .85s .14s ease both;
}
.rb-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; animation: rbRise .9s .2s ease both; }
.rb-hero__trial {
  margin: 18px 0 0; font-size: .88rem; color: rgba(245,255,249,.75); font-weight: 600;
  animation: rbRise .95s .28s ease both;
}
.rb-hero__phone {
  align-self: center; justify-self: end; padding-bottom: 48px;
  animation: rbRise 1s .25s ease both;
}
.rb-phone {
  width: min(260px, 72vw); background: #071512; border-radius: 28px; padding: 12px;
  border: 1px solid rgba(255,255,255,.12); box-shadow: 0 30px 60px rgba(0,0,0,.35);
  transform: rotate(2deg);
}
.rb-phone__notch {
  width: 88px; height: 10px; border-radius: 999px; background: #0c1f1a; margin: 4px auto 12px;
}
.rb-phone__screen {
  background: linear-gradient(180deg, #f4fbf7, #e7f6ee); border-radius: 18px; padding: 16px;
  color: var(--rb-ink); min-height: 320px;
}
.rb-phone__app { margin: 0 0 12px; font-weight: 800; font-size: .95rem; color: var(--rb-forest); }
.rb-phone__card {
  background: #fff; border: 1px solid var(--rb-line); border-radius: 12px; padding: 12px; margin-bottom: 10px;
  display: flex; flex-direction: column; gap: 2px;
}
.rb-phone__card span { font-size: .72rem; color: var(--rb-muted); font-weight: 600; }
.rb-phone__card strong { font-size: 1rem; }
.rb-phone__card em { font-style: normal; font-size: .72rem; color: var(--rb-warn); font-weight: 700; }
.rb-phone__card--pulse { animation: rbPulse 2.4s ease-in-out infinite; }
@keyframes rbPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(180,83,9,.25); }
  50% { box-shadow: 0 0 0 6px rgba(180,83,9,0); }
}
.rb-phone__btn {
  margin-top: 8px; text-align: center; background: var(--rb-forest); color: #fff;
  border-radius: 999px; padding: 12px; font-weight: 700; font-size: .85rem;
}
@keyframes rbRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.rb-section { padding: clamp(48px, 8vh, 88px) clamp(16px, 4vw, 48px); }
.rb-section--alt { background: var(--rb-sand); }
.rb-section__head { max-width: 560px; margin-bottom: 32px; }
.rb-section__head h2 { font-family: var(--rb-display); font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 8px; }
.rb-section__head p { margin: 0; color: var(--rb-muted); }
.rb-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.rb-steps li { padding: 22px; border-radius: 4px; background: #fff; border: 1px solid var(--rb-line); }
.rb-steps__n {
  display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  background: var(--rb-leaf); color: var(--rb-forest); font-weight: 700; margin-bottom: 12px;
}
.rb-steps h3 { margin: 0 0 8px; font-size: 1.05rem; }
.rb-steps p { margin: 0; color: var(--rb-muted); font-size: .95rem; line-height: 1.5; }
.rb-benefits { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.rb-benefits article { padding: 8px 4px; }
.rb-benefits i { color: var(--rb-mint); font-size: 1.25rem; margin-bottom: 10px; }
.rb-benefits h3 { margin: 0 0 8px; }
.rb-benefits p { margin: 0; color: var(--rb-muted); line-height: 1.5; }
.rb-price {
  max-width: 480px; margin: 0 auto; text-align: center; padding: 40px 24px;
  background: linear-gradient(180deg, #fff, var(--rb-leaf)); border: 1px solid var(--rb-line); border-radius: 8px;
}
.rb-price__label { text-transform: uppercase; letter-spacing: .08em; font-size: .75rem; color: var(--rb-muted); font-weight: 700; }
.rb-price__value { font-family: var(--rb-display); font-size: 3rem; margin: 8px 0; font-weight: 700; color: var(--rb-forest); }
.rb-price__value span { font-size: 1rem; font-family: var(--rb-font); font-weight: 500; color: var(--rb-muted); }
.rb-price__note { color: var(--rb-muted); margin: 0 0 20px; }
.rb-price__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.rb-land__foot {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 28px clamp(16px, 4vw, 48px); border-top: 1px solid var(--rb-line); color: var(--rb-muted); font-size: .9rem;
}
.rb-land__foot a { color: var(--rb-forest); }

.rb-demo {
  background: #fff; border: 1px solid var(--rb-line); border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(12,31,26,.06);
}
.rb-demo__tabs { display: flex; gap: 4px; padding: 10px; background: var(--rb-sand); border-bottom: 1px solid var(--rb-line); }
.rb-demo__tabs button {
  border: 0; background: transparent; padding: 10px 16px; border-radius: 999px; font: 700 .88rem var(--rb-font);
  color: var(--rb-muted); cursor: pointer;
}
.rb-demo__tabs button.is-active { background: #fff; color: var(--rb-forest); box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.rb-demo__panel { padding: 22px; }
.rb-demo__split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 18px; align-items: center; }
.rb-demo__preview {
  min-height: 180px; border-radius: 12px; background: linear-gradient(160deg, #0c1f1a, #0f6b4c);
  color: #b8f0d6; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.rb-demo__preview i { font-size: 2rem; }
.rb-demo__copy h3 { margin: 0 0 8px; }
.rb-demo__copy p { margin: 0; color: var(--rb-muted); line-height: 1.5; }
.rb-demo__copy--solo { max-width: 520px; }
.rb-demo__alert {
  margin-top: 14px; padding: 12px 14px; border-radius: 10px; background: var(--rb-warn-bg); color: var(--rb-warn);
  font-weight: 700; font-size: .9rem;
}
.rb-reveal { opacity: 0; transform: translateY(16px); transition: .55s ease; }
.rb-reveal.is-in { opacity: 1; transform: none; }
.rb-section--login { padding-top: 0; }
.rb-land-login {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 28px 32px; border-radius: 16px; background: linear-gradient(120deg, #0c1f1a, #0f6b4c); color: #f5fff9;
}
.rb-land-login h2 { margin: 0 0 6px; font-family: var(--rb-display); }
.rb-land-login p { margin: 0; opacity: .88; }
.rb-land-login .rb-btn--solid { background: #fff; color: var(--rb-forest); }

@media (max-width: 800px) {
  .rb-land__links { display: none; }
  .rb-hero { grid-template-columns: 1fr; min-height: auto; }
  .rb-hero__phone { justify-self: center; padding-bottom: 32px; }
  .rb-demo__split { grid-template-columns: 1fr; }
}

/* ——— Login ——— */
.rb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 10px 18px; font: 600 .92rem var(--rb-font);
  text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: transform .15s, background .15s, color .15s;
}
.rb-btn:hover { transform: translateY(-1px); }
.rb-btn--solid { background: var(--rb-forest); color: #fff; }
.rb-btn--solid:hover { background: #0c5a40; }
.rb-btn--ghost { background: transparent; color: inherit; border-color: currentColor; }
.rb-hero .rb-btn--ghost { color: #f5fff9; border-color: rgba(245,255,249,.45); }
.rb-btn--danger { background: var(--rb-err-bg); color: var(--rb-err); border-color: #fecaca; }
.rb-btn--ghost-dark { background: #fff; color: var(--rb-ink); border-color: var(--rb-line); }
.rb-btn--ghost-dark:hover { border-color: var(--rb-forest); color: var(--rb-forest); }
.rb-btn--lg { padding: 14px 22px; font-size: 1rem; }
.rb-btn--block { width: 100%; }

.rb-alert { padding: 12px 14px; border-radius: 8px; font-size: .9rem; margin: 10px 0; }
.rb-alert--err { background: var(--rb-err-bg); color: var(--rb-err); }
.rb-alert--warn { background: var(--rb-warn-bg); color: var(--rb-warn); }
.rb-muted { color: var(--rb-muted); }

/* ——— Login ——— */
.rb-login-page { margin: 0; min-height: 100vh; font-family: var(--rb-font); background: var(--rb-cream); color: var(--rb-ink); }
.rb-login { display: grid; min-height: 100vh; grid-template-columns: 1.1fr 1fr; }
.rb-login__brand {
  position: relative; padding: clamp(32px, 6vw, 64px); display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(155deg, #0c1f1a, #0f6b4c 55%, #2bbf8a); color: #f5fff9; overflow: hidden;
}
.rb-login__glow {
  position: absolute; width: 420px; height: 420px; right: -80px; top: -60px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.2), transparent 70%); pointer-events: none;
}
.rb-login__logo { font-family: var(--rb-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; margin: 0 0 12px; position: relative; }
.rb-login__logo span { color: #b8f0d6; }
.rb-login__logo-img {
  position: relative; width: min(240px, 70%); height: auto; margin: 0 0 18px;
  filter: none;
}
.rb-login__tag { margin: 0; max-width: 28ch; line-height: 1.5; position: relative; color: rgba(245,255,249,.9); }
.rb-login__form-wrap { padding: clamp(32px, 6vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.rb-login__form-wrap h1 { margin: 0 0 6px; font-size: 1.5rem; }
.rb-login__hint { margin: 0 0 20px; color: var(--rb-muted); }
.rb-login__back { margin-top: 20px; }
.rb-login__back a { color: var(--rb-forest); text-decoration: none; font-size: .9rem; }
@media (max-width: 860px) {
  .rb-login { grid-template-columns: 1fr; }
  .rb-login__brand { min-height: 220px; }
}

.rb-form { display: flex; flex-direction: column; gap: 14px; }
.rb-form label { display: flex; flex-direction: column; gap: 6px; font-size: .85rem; font-weight: 600; }
.rb-form input, .rb-form select, .rb-form textarea {
  font: 500 1rem var(--rb-font); padding: 12px 14px; border: 1px solid var(--rb-line);
  border-radius: 10px; background: #fff; color: var(--rb-ink);
}
.rb-form--compact { gap: 10px; margin-top: 10px; }
.rb-check { flex-direction: row !important; align-items: center; gap: 8px !important; font-weight: 500 !important; }
.rb-form-msg { font-size: .9rem; }
.rb-form-msg.ok { color: var(--rb-ok); }
.rb-form-msg.err { color: var(--rb-err); }

/* ——— Portal ——— */
.rb-portal { margin: 0; font-family: var(--rb-font); background: #f4f7f5; color: var(--rb-ink); min-height: 100vh; padding-bottom: 88px; }
.rb-portal__top {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 16px 18px; background: #fff; border-bottom: 1px solid var(--rb-line);
}
.rb-portal__brand { margin: 0; font-weight: 800; color: var(--rb-forest); font-size: .95rem; }
.rb-portal__logo { height: 36px; width: auto; display: block; }
.rb-portal__emp { margin: 2px 0 0; font-size: .78rem; color: var(--rb-muted); }
.rb-portal__user { display: flex; align-items: center; gap: 10px; font-size: .85rem; }
.rb-portal__user a { display: block; color: var(--rb-muted); font-size: .78rem; }
.rb-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--rb-leaf); color: var(--rb-forest);
  display: grid; place-items: center; font-weight: 700; font-size: .85rem;
}
.rb-portal__nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; border-top: 1px solid var(--rb-line);
}
.rb-portal__nav a {
  text-align: center; padding: 12px 8px; text-decoration: none; color: var(--rb-muted); font-size: .78rem; font-weight: 600;
  display: flex; flex-direction: column; gap: 4px; align-items: center;
}
.rb-portal__nav a.active { color: var(--rb-forest); }
.rb-portal__main { padding: 20px 18px 28px; max-width: 640px; margin: 0 auto; }
.rb-portal__main h1 { margin: 0 0 6px; font-size: 1.45rem; }
.rb-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 18px 0 22px; }
.rb-stat {
  background: #fff; border: 1px solid var(--rb-line); border-radius: 12px; padding: 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.rb-stat span { font-size: .75rem; color: var(--rb-muted); font-weight: 600; }
.rb-stat strong { font-size: 1.45rem; }
.rb-stat small { color: var(--rb-muted); }
.rb-stat--warn { border-color: #fcd34d; background: #fffbeb; }
.rb-stat--ok { border-color: #a7f3d0; background: #ecfdf5; }
.rb-stat--bad { border-color: #fecaca; background: #fef2f2; }
.rb-flash { margin: 0; padding: 12px 18px; font-size: .9rem; }
.rb-flash--ok { background: #ecfdf5; color: var(--rb-ok); }
.rb-flash--err { background: var(--rb-err-bg); color: var(--rb-err); }
.rb-list { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.rb-list__item { background: #fff; border: 1px solid var(--rb-line); border-radius: 12px; padding: 14px; }
.rb-list__head { display: flex; justify-content: space-between; gap: 8px; align-items: center; margin-bottom: 6px; }
.rb-list__meta { display: flex; justify-content: space-between; color: var(--rb-muted); font-size: .85rem; margin-top: 8px; }
.rb-badge { font-size: .72rem; font-weight: 700; padding: 4px 8px; border-radius: 999px; background: #e2e8f0; }
.rb-badge--em_analise { background: #e0f2fe; color: #0369a1; }
.rb-badge--devolvido { background: #ffedd5; color: #c2410c; }
.rb-badge--aprovado, .rb-badge--provisionado { background: #d1fae5; color: #047857; }
.rb-badge--pago { background: #bbf7d0; color: #166534; }
.rb-badge--recusado { background: #fee2e2; color: #b91c1c; }
.rb-motivo, .rb-mini-warn { font-size: .85rem; margin: 8px 0 0; }
.rb-mini-warn { color: var(--rb-warn); font-weight: 600; }
.rb-reenvio summary { cursor: pointer; color: var(--rb-forest); font-weight: 600; margin-top: 8px; }

/* ——— Admin dashboard ——— */
.rb-admin { padding: 0 0 32px; font-family: var(--rb-font); color: var(--rb-ink); }
.rb-admin__hero {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 22px 24px; border-radius: 16px; margin-bottom: 18px;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(31,169,122,.35), transparent 55%),
    linear-gradient(135deg, #0c1f1a, #0f6b4c); color: #f5fff9;
}
.rb-admin__logo {
  display: block; height: 40px; width: auto; margin: 0 0 12px;
  filter: none;
}
.rb-admin__eyebrow { margin: 0 0 6px; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; opacity: .8; font-weight: 700; }
.rb-admin__hero h1 { margin: 0 0 8px; font-size: 1.55rem; }
.rb-admin__hero p { margin: 0; max-width: 42ch; opacity: .9; font-size: .95rem; }
.rb-admin__stats { display: flex; gap: 14px; flex-wrap: wrap; }
.rb-admin__stats div {
  min-width: 120px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px; padding: 12px 14px;
}
.rb-admin__stats span { display: block; font-size: .72rem; opacity: .8; margin-bottom: 4px; }
.rb-admin__stats strong { font-size: 1.15rem; }
.rb-admin__tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.rb-admin__tabs a {
  text-decoration: none; color: var(--rb-muted); font-weight: 600; font-size: .9rem;
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--rb-line); background: #fff;
  display: inline-flex; align-items: center; gap: 8px;
}
.rb-admin__tabs a i { font-size: .85rem; opacity: .7; }
.rb-admin__tabs a.active { background: var(--rb-forest); color: #fff; border-color: var(--rb-forest); }
.rb-admin__tabs a.active i { opacity: 1; }
.rb-admin-grid { display: grid; grid-template-columns: minmax(280px, 360px) 1fr; gap: 18px; }
@media (max-width: 960px) { .rb-admin-grid { grid-template-columns: 1fr; } }
.rb-panel { background: #fff; border: 1px solid var(--rb-line); border-radius: 14px; padding: 18px; }
.rb-panel h2 { margin: 0 0 14px; font-size: 1.05rem; }
.rb-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.rb-table th, .rb-table td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--rb-line); vertical-align: top; }
.rb-table th { font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; color: var(--rb-muted); }
.rb-link-btn { background: none; border: none; color: var(--rb-forest); font-weight: 700; cursor: pointer; padding: 0; }

.rb-fila-head {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: flex-end;
  margin-bottom: 16px;
}
.rb-fila-head h2 { margin: 0 0 4px; font-size: 1.2rem; }
.rb-fila-head p { margin: 0; color: var(--rb-muted); font-size: .92rem; max-width: 52ch; }
.rb-fila-head__meta { display: flex; gap: 8px; flex-wrap: wrap; }
.rb-pill {
  display: inline-flex; align-items: center; padding: 6px 12px; border-radius: 999px;
  background: var(--rb-leaf); color: var(--rb-forest); font-weight: 700; font-size: .8rem;
}
.rb-pill--soft { background: #fff; border: 1px solid var(--rb-line); color: var(--rb-ink); }
.rb-empty {
  text-align: center; padding: 48px 24px; background: #fff; border: 1px dashed var(--rb-line); border-radius: 16px;
  color: var(--rb-muted);
}
.rb-empty i { font-size: 2rem; color: var(--rb-mint); margin-bottom: 10px; }
.rb-empty h3 { margin: 0 0 6px; color: var(--rb-ink); }
.rb-empty p { margin: 0; }

.rb-audit-list { display: flex; flex-direction: column; gap: 18px; }
.rb-audit {
  display: grid; grid-template-columns: minmax(260px, 38%) 1fr; gap: 0;
  background: #fff; border: 1px solid var(--rb-line); border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 28px rgba(12,31,26,.05);
}
.rb-audit--warn { border-color: #fcd34d; box-shadow: 0 8px 28px rgba(180,83,9,.08); }
@media (max-width: 900px) { .rb-audit { grid-template-columns: 1fr; } }
.rb-audit__preview {
  background: linear-gradient(165deg, #071512, #0c1f1a 40%, #0f3d2e);
  min-height: 300px; display: flex; flex-direction: column; padding: 0;
}
.rb-audit__preview-bar {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding: 10px 14px; font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: rgba(245,255,249,.65); border-bottom: 1px solid rgba(255,255,255,.08);
}
.rb-audit__preview-bar a { color: #b8f0d6; text-decoration: none; text-transform: none; letter-spacing: 0; font-weight: 600; }
.rb-audit__img-wrap {
  flex: 1; display: grid; place-items: center; padding: 16px; min-height: 260px;
}
.rb-audit__preview img { max-width: 100%; max-height: 420px; object-fit: contain; border-radius: 6px; box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.rb-audit__pdf {
  flex: 1; color: #b8f0d6; text-decoration: none; text-align: center;
  display: flex; flex-direction: column; gap: 10px; align-items: center; justify-content: center; padding: 32px 16px;
}
.rb-audit__pdf i { font-size: 2.8rem; }
.rb-audit__empty {
  flex: 1; color: rgba(255,255,255,.45); display: flex; flex-direction: column; gap: 8px;
  align-items: center; justify-content: center; padding: 40px 16px;
}
.rb-audit__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; }
.rb-audit__head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; flex-wrap: wrap; }
.rb-audit__head h3 { margin: 8px 0 2px; font-size: 1.12rem; letter-spacing: -.01em; }
.rb-audit__email { margin: 0; color: var(--rb-muted); font-size: .86rem; }
.rb-audit__valor { text-align: right; }
.rb-audit__valor strong { display: block; font-size: 1.45rem; color: var(--rb-forest); letter-spacing: -.02em; }
.rb-audit__valor span { font-size: .8rem; color: var(--rb-muted); }
.rb-audit__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.rb-audit__chips span {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 8px;
  background: var(--rb-cream); border: 1px solid var(--rb-line); font-size: .8rem; font-weight: 600; color: var(--rb-muted);
}
.rb-audit__chips i { color: var(--rb-mint); }
.rb-teto-bar {
  position: relative; height: 22px; border-radius: 999px; background: #e8f0ec; overflow: hidden;
  font-size: .72rem; font-weight: 700; color: var(--rb-forest);
}
.rb-teto-bar > div {
  height: 100%; background: linear-gradient(90deg, var(--rb-mint), var(--rb-forest)); border-radius: 999px;
  transition: width .4s ease;
}
.rb-teto-bar.is-over > div { background: linear-gradient(90deg, #f59e0b, #b45309); }
.rb-teto-bar span {
  position: absolute; inset: 0; display: grid; place-items: center; color: var(--rb-ink); mix-blend-mode: multiply;
}
.rb-audit__desc h4, .rb-audit__pay h4 {
  margin: 0 0 6px; font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--rb-muted);
}
.rb-audit__desc p { margin: 0; line-height: 1.5; white-space: pre-wrap; }
.rb-audit__pay {
  padding: 12px 14px; border-radius: 12px; background: #f4fbf7; border: 1px solid var(--rb-line);
}
.rb-audit__pay dl { margin: 0; display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .rb-audit__pay dl { grid-template-columns: 1fr; } }
.rb-audit__pay dt { font-size: .72rem; color: var(--rb-muted); font-weight: 700; margin-bottom: 2px; }
.rb-audit__pay dd { margin: 0; font-weight: 600; font-size: .92rem; word-break: break-word; }
.rb-audit__meta { color: var(--rb-muted); font-size: .88rem; margin: 6px 0 10px; }
.rb-audit__nota { display: block; margin: 4px 0 0; }
.rb-audit__nota span { display: block; font-size: .8rem; font-weight: 600; margin-bottom: 6px; }
.rb-audit__nota textarea {
  width: 100%; box-sizing: border-box; border: 1px solid var(--rb-line); border-radius: 10px;
  padding: 10px 12px; font: 500 .95rem var(--rb-font); resize: vertical; min-height: 64px;
}
.rb-audit__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; padding-top: 12px; border-top: 1px solid var(--rb-line); }

/* ——— Landing v2 ——— */
.rb-land { --rb-display: "Fraunces", Georgia, serif; }
.rb-top {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250,247,241,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rb-line);
}
.rb-top__inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
  padding: 10px clamp(16px, 4vw, 32px);
  flex-wrap: nowrap;
}
.rb-top__brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.rb-top__brand img { height: 40px; width: auto; display: block; }
.rb-top__nav {
  display: flex; gap: 18px; margin-left: 8px; flex: 1; min-width: 0;
  justify-content: center;
}
.rb-top__nav a {
  color: var(--rb-muted); text-decoration: none; font-size: .88rem; font-weight: 600;
  transition: color .15s; white-space: nowrap;
}
.rb-top__nav a:hover { color: var(--rb-forest); }
.rb-top__cta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.rb-top__cta .rb-btn { white-space: nowrap; font-size: .82rem; padding: 10px 14px; }
.rb-top__menu {
  display: none; margin-left: auto; border: 1px solid var(--rb-line); background: #fff;
  width: 42px; height: 42px; border-radius: 10px; cursor: pointer; color: var(--rb-ink);
  flex-shrink: 0; align-items: center; justify-content: center;
}
.rb-top__drawer {
  display: none;
  flex-direction: column; gap: 4px; padding: 8px 16px 16px;
  border-top: 1px solid var(--rb-line); background: #fff;
}
.rb-top__drawer.is-open {
  display: flex;
}
.rb-top__drawer[hidden] {
  display: none !important;
}
.rb-top__drawer a {
  text-decoration: none; color: var(--rb-ink); font-weight: 600; padding: 12px 8px;
  border-radius: 8px;
}
.rb-top__drawer a:hover { background: var(--rb-leaf); color: var(--rb-forest); }
.rb-top__drawer .rb-btn { margin-top: 8px; }

.rb-hero--v2 {
  display: block !important; min-height: auto !important; padding: 0 !important;
  grid-template-columns: none !important; align-items: stretch !important;
  overflow: hidden; isolation: isolate;
}
.rb-hero__inner--v2 {
  max-width: 720px; margin: 0 auto; text-align: center;
  padding: clamp(56px, 12vh, 110px) clamp(16px, 4vw, 32px) clamp(48px, 8vh, 88px);
  color: #f5fff9; position: relative; z-index: 1;
}
.rb-hero__logo-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; padding: 14px 22px; border-radius: 16px;
  background: #fff; box-shadow: 0 12px 40px rgba(0,0,0,.18);
  animation: rbRise .7s ease both;
}
.rb-hero__logo {
  height: clamp(48px, 8vw, 72px); width: auto; margin: 0; display: block;
  filter: none;
}
.rb-hero--v2 .rb-hero__title {
  max-width: 16ch; margin: 0 auto 16px; font-family: var(--rb-display);
  font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 700; letter-spacing: -.03em;
  line-height: 1.12; color: #fff; opacity: 1;
  text-shadow: 0 2px 24px rgba(0,0,0,.2);
  animation: rbRise .8s .08s ease both;
}
.rb-hero--v2 .rb-hero__lead {
  margin: 0 auto 28px; max-width: 42ch; font-size: 1.08rem;
  color: rgba(245,255,249,.92); line-height: 1.55; opacity: 1;
  animation: rbRise .85s .14s ease both;
}
.rb-hero--v2 .rb-hero__cta { justify-content: center; animation: rbRise .9s .2s ease both; }
.rb-hero__chips {
  list-style: none; margin: 28px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  animation: rbRise 1s .3s ease both;
}
.rb-hero__chips li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  font-size: .85rem; font-weight: 600; color: rgba(245,255,249,.92);
}
.rb-hero__chips i { color: #b8f0d6; }

.rb-section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.rb-kicker {
  margin: 0 0 8px; font-size: .75rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--rb-mint);
}
.rb-flow {
  list-style: none; margin: 0 auto; padding: 0; max-width: 1040px;
  display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr);
}
.rb-flow li {
  position: relative; padding: 28px 24px; background: #fff;
  border: 1px solid var(--rb-line); border-radius: 4px;
  box-shadow: 0 10px 30px rgba(12,31,26,.04);
}
.rb-flow__n {
  display: block; font-family: var(--rb-display); font-size: 2rem; font-weight: 700;
  color: var(--rb-forest); margin-bottom: 12px; letter-spacing: -.02em; opacity: .35;
}
.rb-flow h3 { margin: 0 0 8px; font-size: 1.15rem; }
.rb-flow p { margin: 0; color: var(--rb-muted); line-height: 1.55; font-size: .95rem; }

.rb-guides {
  display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); max-width: 960px; margin: 0 auto;
}
.rb-guide {
  background: #fff; border: 1px solid var(--rb-line); border-radius: 16px; padding: 28px 26px;
  box-shadow: 0 12px 36px rgba(12,31,26,.05);
}
.rb-guide__icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--rb-leaf); color: var(--rb-forest); margin-bottom: 14px; font-size: 1.1rem;
}
.rb-guide h3 { margin: 0 0 14px; font-size: 1.15rem; }
.rb-guide ol { margin: 0; padding: 0 0 0 1.15rem; color: var(--rb-muted); line-height: 1.65; }
.rb-guide li { margin-bottom: 8px; }
.rb-guide strong { color: var(--rb-ink); }

.rb-feature-grid {
  display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); max-width: 1040px; margin: 0 auto;
}
.rb-feature-grid article {
  padding: 22px 20px; background: #fff; border: 1px solid var(--rb-line); border-radius: 14px;
}
.rb-feature-grid i { color: var(--rb-mint); font-size: 1.2rem; margin-bottom: 12px; display: block; }
.rb-feature-grid h3 { margin: 0 0 8px; font-size: 1rem; }
.rb-feature-grid p { margin: 0; color: var(--rb-muted); font-size: .9rem; line-height: 1.5; }

.rb-faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.rb-faq__item {
  background: #fff; border: 1px solid var(--rb-line); border-radius: 12px; padding: 4px 18px 4px;
}
.rb-faq__item summary {
  cursor: pointer; list-style: none; font-weight: 700; padding: 16px 0; position: relative;
  padding-right: 28px;
}
.rb-faq__item summary::-webkit-details-marker { display: none; }
.rb-faq__item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--rb-forest); font-size: 1.25rem; font-weight: 500;
}
.rb-faq__item[open] summary::after { content: "–"; }
.rb-faq__item p { margin: 0 0 16px; color: var(--rb-muted); line-height: 1.55; }

.rb-price--v2 {
  max-width: 560px; border-radius: 20px; padding: 40px 28px 36px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(31,169,122,.18), transparent 60%),
    linear-gradient(180deg, #fff, #eef8f3);
}
.rb-price__logo { height: 42px; width: auto; margin: 0 auto 16px; display: block; }
.rb-price__after { margin: 0 0 8px; color: var(--rb-muted); }
.rb-price__after strong { color: var(--rb-ink); }

.rb-foot {
  background: #0c1f1a; color: rgba(245,255,249,.78); margin-top: 24px;
  padding: clamp(40px, 6vh, 64px) clamp(16px, 4vw, 32px) 24px;
}
.rb-foot__grid {
  max-width: 1040px; margin: 0 auto 32px;
  display: grid; gap: 28px; grid-template-columns: 1.4fr repeat(3, 1fr);
}
.rb-foot__brand img {
  height: 48px; width: auto; margin-bottom: 14px; display: block;
  filter: none;
}
.rb-foot__brand p { margin: 0; max-width: 32ch; line-height: 1.55; font-size: .92rem; }
.rb-foot h4 {
  margin: 0 0 12px; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
  color: #b8f0d6; font-weight: 800;
}
.rb-foot a {
  display: block; color: rgba(245,255,249,.78); text-decoration: none;
  font-size: .92rem; margin-bottom: 8px; font-weight: 500;
}
.rb-foot a:hover { color: #fff; }
.rb-foot__bar {
  max-width: 1040px; margin: 0 auto; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: .82rem; color: rgba(245,255,249,.5);
}

@media (max-width: 980px) {
  .rb-top__nav, .rb-top__cta { display: none !important; }
  .rb-top__menu { display: inline-flex !important; }
  .rb-flow { grid-template-columns: 1fr; }
  .rb-guides { grid-template-columns: 1fr; }
  .rb-feature-grid { grid-template-columns: 1fr 1fr; }
  .rb-foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .rb-feature-grid { grid-template-columns: 1fr; }
  .rb-foot__grid { grid-template-columns: 1fr; }
}

/* ——— Landing v3: hero photo, showcase, mosaic ——— */
.rb-hero--v3 {
  position: relative; min-height: min(92vh, 860px); display: grid !important;
  place-items: end stretch; padding: 0 !important; overflow: hidden; isolation: isolate;
  grid-template-columns: 1fr !important;
}
.rb-hero__media { position: absolute; inset: 0; z-index: 0; }
.rb-hero__photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  transform: scale(1.08); transition: transform .6s ease-out; will-change: transform;
}
.rb-hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,21,18,.55) 0%, rgba(12,31,26,.72) 45%, rgba(12,31,26,.88) 100%),
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(31,169,122,.28), transparent 60%);
}
.rb-hero__inner--v3 {
  position: relative; z-index: 1; max-width: 720px; margin: 0 auto; text-align: center;
  padding: clamp(72px, 14vh, 140px) clamp(16px, 4vw, 32px) clamp(56px, 10vh, 96px);
  color: #f5fff9;
}
.rb-hero__logo--light {
  height: clamp(56px, 9vw, 88px); width: auto; margin: 0 auto 26px; display: block;
  filter: none; animation: rbRise .7s ease both;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.28));
}
.rb-hero--v3 .rb-hero__title {
  max-width: 14ch; margin: 0 auto 16px; font-family: var(--rb-display);
  font-size: clamp(2.1rem, 5.2vw, 3.35rem); font-weight: 700; letter-spacing: -.03em;
  line-height: 1.1; color: #fff; text-shadow: 0 2px 28px rgba(0,0,0,.35);
  animation: rbRise .8s .08s ease both;
}
.rb-hero--v3 .rb-hero__lead {
  margin: 0 auto 28px; max-width: 42ch; font-size: 1.08rem;
  color: rgba(245,255,249,.92); line-height: 1.55;
  animation: rbRise .85s .14s ease both;
}
.rb-btn--light { background: #fff !important; color: var(--rb-forest) !important; }
.rb-btn--light:hover { background: #e8f6ef !important; }
.rb-hero__scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 2;
  width: 28px; height: 44px; border: 2px solid rgba(255,255,255,.45); border-radius: 999px;
  display: grid; place-items: start center; padding-top: 8px; text-decoration: none;
}
.rb-hero__scroll span {
  width: 4px; height: 8px; border-radius: 999px; background: #fff;
  animation: rbScroll 1.6s ease-in-out infinite;
}
@keyframes rbScroll {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { opacity: 0; }
}

.rb-flow--interactive li {
  cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  overflow: hidden;
}
.rb-flow--interactive li:hover,
.rb-flow--interactive li.is-active {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(12,31,26,.1);
  border-color: var(--rb-mint);
}
.rb-flow__visual {
  position: relative; border-radius: 10px; overflow: hidden; margin: 0 0 14px;
  aspect-ratio: 16/10; background: #0c1f1a;
}
.rb-flow__visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease; opacity: .92;
}
.rb-flow--interactive li.is-active .rb-flow__visual img,
.rb-flow--interactive li:hover .rb-flow__visual img { transform: scale(1.06); opacity: 1; }
.rb-flow__badge {
  position: absolute; left: 10px; bottom: 10px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 999px; background: rgba(12,31,26,.82);
  color: #b8f0d6; font-size: .72rem; font-weight: 700;
}

.rb-showcase { max-width: 980px; margin: 0 auto; }
.rb-showcase__tabs {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 18px;
}
.rb-showcase__tabs button {
  border: 1px solid var(--rb-line); background: #fff; color: var(--rb-muted);
  font: 700 .88rem var(--rb-font); padding: 10px 16px; border-radius: 999px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; transition: .2s ease;
}
.rb-showcase__tabs button.is-active {
  background: var(--rb-forest); color: #fff; border-color: var(--rb-forest);
}
.rb-showcase__stage {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--rb-line); background: #0c1f1a;
  box-shadow: 0 24px 60px rgba(12,31,26,.12); min-height: 340px;
}
.rb-showcase__panel { margin: 0; position: relative; }
.rb-showcase__panel img {
  width: 100%; height: min(62vh, 520px); object-fit: cover; display: block;
  animation: rbFadeIn .45s ease;
}
@keyframes rbFadeIn {
  from { opacity: .4; transform: scale(1.02); }
  to { opacity: 1; transform: none; }
}
.rb-showcase__panel figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 24px 22px;
  background: linear-gradient(180deg, transparent, rgba(7,21,18,.9));
  color: #f5fff9; display: flex; flex-direction: column; gap: 4px;
}
.rb-showcase__panel figcaption strong { font-size: 1.15rem; }
.rb-showcase__panel figcaption span { opacity: .85; font-size: .95rem; }
.rb-showcase__ui {
  position: absolute; right: 18px; top: 18px; display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}
.rb-mini-card {
  background: rgba(255,255,255,.95); border-radius: 12px; padding: 10px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18); min-width: 140px;
  animation: rbFloat 3.5s ease-in-out infinite;
}
.rb-mini-card span { display: block; font-size: .7rem; color: var(--rb-muted); font-weight: 700; }
.rb-mini-card strong { font-size: 1rem; color: var(--rb-ink); }
.rb-mini-card--ok { animation-delay: 1.1s; }
.rb-mini-card--ok strong { color: var(--rb-forest); }
@keyframes rbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.rb-guides--media { max-width: 1040px; }
.rb-guides--media .rb-guide { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.rb-guide__media { aspect-ratio: 16/9; overflow: hidden; }
.rb-guide__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.rb-guide:hover .rb-guide__media img { transform: scale(1.05); }
.rb-guide__body { padding: 22px 24px 26px; }
.rb-guide__body .rb-guide__icon { margin-bottom: 10px; }

.rb-mosaic {
  max-width: 1040px; margin: 0 auto;
  display: grid; gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(140px, auto);
}
.rb-mosaic__item {
  background: #fff; border: 1px solid var(--rb-line); border-radius: 16px; padding: 20px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 6px;
  position: relative; overflow: hidden; min-height: 160px;
}
.rb-mosaic__item i { color: var(--rb-mint); font-size: 1.3rem; margin-bottom: 4px; }
.rb-mosaic__item h3 { margin: 0; font-size: 1.05rem; }
.rb-mosaic__item p { margin: 0; color: var(--rb-muted); font-size: .9rem; line-height: 1.45; }
.rb-mosaic__item--wide { grid-column: span 2; grid-row: span 2; padding: 0; color: #fff; }
.rb-mosaic__item--photo { grid-column: span 2; padding: 0; color: #fff; }
.rb-mosaic__item--wide img,
.rb-mosaic__item--photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.rb-mosaic__item--wide > div,
.rb-mosaic__item--photo > div {
  position: relative; z-index: 1; margin-top: auto; padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(7,21,18,.85));
}
.rb-mosaic__item--wide p,
.rb-mosaic__item--photo p { color: rgba(245,255,249,.85); }

.rb-land-login--photo {
  position: relative; overflow: hidden; padding: 0; min-height: 240px;
  display: grid; place-items: center;
}
.rb-land-login--photo > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.45);
}
.rb-land-login__content {
  position: relative; z-index: 1; text-align: center; padding: 40px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 10px; color: #f5fff9;
}
.rb-land-login__logo { height: 48px; width: auto; margin-bottom: 6px; }
.rb-land-login__content h2 { margin: 0; font-family: var(--rb-display); }
.rb-land-login__content p { margin: 0 0 8px; opacity: .9; }

.rb-login-tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 0 0 20px;
}
.rb-login-tabs a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 10px; border-radius: 12px; text-decoration: none; font-size: .82rem; font-weight: 700;
  color: var(--rb-muted); background: #f1f5f0; border: 1px solid transparent;
}
.rb-login-tabs a.is-active {
  color: #0f6b4c; background: #ecfdf5; border-color: #6ee7b7;
}
.rb-badge--pre_aprovado { background: #d1fae5; color: #065f46; }
.rb-badge--aprovado { background: #e0e7ff; color: #3730a3; }
.rb-liq-bar { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }

@media (max-width: 900px) {
  .rb-mosaic { grid-template-columns: 1fr 1fr; }
  .rb-mosaic__item--wide, .rb-mosaic__item--photo { grid-column: span 2; grid-row: auto; min-height: 220px; }
  .rb-showcase__ui { display: none; }
}
@media (max-width: 560px) {
  .rb-mosaic { grid-template-columns: 1fr; }
  .rb-mosaic__item--wide, .rb-mosaic__item--photo { grid-column: span 1; }
}

/* ——— Landing (header + hero com preview do produto) ——— */
.rb-land { scroll-padding-top: 96px; }
.rb-land section[id] { scroll-margin-top: 96px; }

.rb-topbar {
  background: #0c1f1a; color: rgba(245,255,249,.88);
  font-size: .82rem; font-weight: 600;
}
.rb-topbar__inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px 14px; padding: 8px clamp(16px, 4vw, 32px);
}
.rb-topbar a { color: #b8f0d6; font-weight: 800; text-decoration: none; }
.rb-topbar a:hover { text-decoration: underline; }
.rb-topbar__sep { opacity: .45; }

.rb-top--v4 { top: 0; }
.rb-top__nav--pills a {
  padding: 8px 12px; border-radius: 999px;
}
.rb-top__nav--pills a:hover { background: var(--rb-leaf); }
.rb-top__logo-wrap {
  display: inline-flex; align-items: center; padding: 4px 8px;
  background: #fff; border-radius: 10px; border: 1px solid var(--rb-line);
}
.rb-top__logo-wrap img { height: 42px; width: auto; }

.rb-hero.rb-hero--v4 {
  display: block !important;
  min-height: auto !important;
  grid-template-columns: none !important;
  align-items: stretch !important;
  padding: 0 !important;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 55% at 80% 10%, rgba(31,169,122,.4), transparent 55%),
    linear-gradient(160deg, #0c1f1a 0%, #0f6b4c 48%, #147a58 100%);
}
.rb-hero--v4 .rb-hero__glow {
  position: absolute; inset: auto -20% -30% 40%; height: 70%;
  background: radial-gradient(ellipse at center, rgba(184,240,214,.22), transparent 65%);
  pointer-events: none;
}
.rb-hero--v4 .rb-hero__grid {
  position: relative; z-index: 1;
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 36px; align-items: center;
  padding: clamp(36px, 7vh, 72px) clamp(16px, 4vw, 32px) clamp(28px, 5vh, 48px);
}
.rb-hero--v4 .rb-hero__copy { color: #f5fff9; max-width: 560px; }
.rb-hero--v4 .rb-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 14px; font-size: .82rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: #b8f0d6;
}
.rb-hero--v4 .rb-hero__title {
  max-width: none; color: #fff; font-family: var(--rb-display);
  font-size: clamp(1.85rem, 4.2vw, 3.1rem); font-weight: 700; line-height: 1.15;
  animation: none;
}
.rb-hero--v4 .rb-hero__title em { font-style: italic; color: #d8f3e7; }
.rb-hero--v4 .rb-hero__lead {
  color: rgba(245,255,249,.88); max-width: 46ch; animation: none;
}
.rb-hero--v4 .rb-hero__cta { animation: none; }
.rb-hero--v4 .rb-hero__chips { animation: none; }
.rb-hero--v4 .rb-hero__stage { justify-self: stretch; width: 100%; }

.rb-hero-preview {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.18);
  background: #0c1f1a;
  aspect-ratio: 4 / 3;
}
.rb-hero-preview img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.rb-hero-preview__card {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: rgba(255,255,255,.96); color: var(--rb-ink);
  border-radius: 14px; padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.rb-hero-preview__card span {
  display: block; font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: var(--rb-forest); margin-bottom: 4px;
}
.rb-hero-preview__card strong { font-size: .95rem; font-weight: 700; }

.rb-trust { background: #fff; border-bottom: 1px solid var(--rb-line); }
.rb-trust__inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; padding: 18px clamp(16px, 4vw, 32px);
}
.rb-trust__inner div { display: flex; flex-direction: column; gap: 2px; padding: 8px 10px; }
.rb-trust__inner strong { font-size: .98rem; color: var(--rb-forest); }
.rb-trust__inner span { font-size: .8rem; color: var(--rb-muted); }

@media (prefers-reduced-motion: reduce) {
  .rb-reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .rb-hero--v4 .rb-hero__grid { grid-template-columns: 1fr; padding-top: 32px; }
  .rb-hero-preview { max-width: 480px; margin: 0 auto; }
  .rb-trust__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .rb-topbar__inner { font-size: .75rem; }
  .rb-trust__inner { grid-template-columns: 1fr; }
}

/* ——— Landing tech v5 ——— */
.rb-land--tech {
  --rbt-bg: #0A192F;
  --rbt-bg2: #0d2138;
  --rbt-card: #112240;
  --rbt-line: rgba(255, 215, 0, .16);
  --rbt-line-strong: rgba(255, 215, 0, .38);
  --rbt-mint: #FFD700;
  --rbt-mint-2: #F5E6A3;
  --rbt-text: #F8FAFC;
  --rbt-muted: #94A3B8;
  --rbt-warn: #FBBF24;
  background: var(--rbt-bg);
  color: var(--rbt-text);
  font-family: "Outfit", system-ui, sans-serif;
  scroll-padding-top: 88px;
}
.rb-land--tech section[id] { scroll-margin-top: 88px; }
.rbt-mono {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: .72rem; font-weight: 500; letter-spacing: .04em;
  color: var(--rbt-mint-2); text-transform: none;
}
.rbt-wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.rbt-noise {
  pointer-events: none; position: fixed; inset: 0; z-index: 0; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.rb-land--tech > *:not(.rbt-noise) { position: relative; z-index: 1; }

.rbt-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 12px; font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--rbt-mint-2);
}
.rbt-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--rbt-mint);
  box-shadow: 0 0 12px var(--rbt-mint); animation: rbtPulse 2s ease-in-out infinite;
}
@keyframes rbtPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}

.rbt-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 10px; padding: 10px 16px; font: 600 .9rem "Outfit", sans-serif;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s, background .15s, border-color .15s, box-shadow .15s;
}
.rbt-btn:hover { transform: translateY(-1px); }
.rbt-btn--solid {
  background: var(--rbt-mint); color: #0A192F; font-weight: 800;
  box-shadow: 0 0 0 1px rgba(255,215,0,.35), 0 10px 28px rgba(255,215,0,.16);
}
.rbt-btn--solid:hover { background: #ffe44d; }
.rbt-btn--ghost {
  background: transparent; color: var(--rbt-text);
  border-color: var(--rbt-line-strong);
}
.rbt-btn--ghost:hover { border-color: var(--rbt-mint); color: var(--rbt-mint); }
.rbt-btn--lg { padding: 14px 20px; font-size: .98rem; }
.rbt-btn--block { width: 100%; }

.rbt-topbar {
  background: #06101f; border-bottom: 1px solid var(--rbt-line);
  font-size: .8rem; color: var(--rbt-muted);
}
.rbt-topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; padding: 8px 0; flex-wrap: wrap;
}
.rbt-topbar a { color: var(--rbt-mint); font-weight: 700; text-decoration: none; }
.rbt-topbar .fa-circle { font-size: .45rem; color: var(--rbt-mint); margin-right: 6px; vertical-align: middle; }

.rbt-nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(10, 25, 47, .88); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rbt-line);
}
.rbt-nav__inner {
  display: flex; align-items: center; gap: 20px; padding: 12px 0;
}
.rbt-nav__brand img { height: 40px; width: auto; display: block; }
.rbt-nav__links { display: flex; gap: 4px; margin-left: auto; }
.rbt-nav__links a {
  color: var(--rbt-muted); text-decoration: none; font-size: .86rem; font-weight: 600;
  padding: 8px 12px; border-radius: 8px;
}
.rbt-nav__links a:hover { color: var(--rbt-text); background: rgba(255,255,255,.04); }
.rbt-nav__cta { display: flex; gap: 8px; }
.rbt-nav__menu {
  display: none; margin-left: auto; width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--rbt-line); background: transparent; color: var(--rbt-text); cursor: pointer;
}
.rbt-nav__drawer {
  display: none; flex-direction: column; gap: 8px;
  padding: 8px 16px 18px; border-top: 1px solid var(--rbt-line);
}
.rbt-nav__drawer.is-open { display: flex; }
.rbt-nav__drawer a { color: var(--rbt-text); text-decoration: none; font-weight: 600; padding: 10px 4px; }

.rbt-hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(36px, 6vh, 72px) 0 clamp(48px, 8vh, 80px);
}
.rbt-hero__grid-bg {
  position: absolute; inset: 0; z-index: -1; opacity: .35;
  background-image:
    linear-gradient(rgba(255,215,0,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,.12) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 70% at 70% 40%, #000 10%, transparent 75%);
}
.rbt-hero__orb {
  position: absolute; border-radius: 50%; filter: blur(60px); z-index: -1; pointer-events: none;
}
.rbt-hero__orb--a {
  width: 420px; height: 420px; right: -80px; top: -80px;
  background: radial-gradient(circle, rgba(255,215,0,.22), transparent 70%);
}
.rbt-hero__orb--b {
  width: 320px; height: 320px; left: -60px; bottom: -40px;
  background: radial-gradient(circle, rgba(56,189,248,.18), transparent 70%);
}
.rbt-hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.rbt-hero__copy h1 {
  margin: 0 0 16px; font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.08;
}
.rbt-hero__copy h1 em {
  font-style: normal; color: var(--rbt-mint);
  text-shadow: 0 0 40px rgba(255,215,0,.22);
}
.rbt-hero__lead {
  margin: 0 0 24px; font-size: 1.08rem; line-height: 1.6; color: var(--rbt-muted); max-width: 48ch;
}
.rbt-hero__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.rbt-hero__meta {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; max-width: 420px;
}
.rbt-hero__meta li { font-size: .88rem; color: var(--rbt-muted); }
.rbt-hero__meta strong {
  display: inline-block; min-width: 28px; margin-right: 6px;
  font-family: "IBM Plex Mono", monospace; font-size: .72rem; color: var(--rbt-mint);
}

.rbt-stack { position: relative; min-height: 420px; }
.rbt-stack__phone {
  position: absolute; left: 8%; bottom: 8%; z-index: 4;
  animation: rbtFloat 6s ease-in-out infinite;
}
.rbt-phone {
  width: 196px; background: #071018; border-radius: 28px; padding: 12px 12px 16px;
  border: 1px solid var(--rbt-line-strong);
  box-shadow: 0 24px 50px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
}
.rbt-phone__notch {
  width: 72px; height: 8px; border-radius: 999px; background: #121a28; margin: 4px auto 12px;
}
.rbt-phone__app { margin: 0 0 10px; font-size: .78rem; font-weight: 800; color: var(--rbt-mint-2); }
.rbt-phone__shot {
  border: 1px dashed var(--rbt-line-strong); border-radius: 10px; padding: 14px 8px;
  text-align: center; font-size: .72rem; color: var(--rbt-muted); margin-bottom: 10px;
}
.rbt-phone__line {
  display: flex; justify-content: space-between; font-size: .75rem; padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.rbt-phone__line span { color: var(--rbt-muted); }
.rbt-phone__alert {
  margin: 10px 0; padding: 8px; border-radius: 8px; background: rgba(251,191,36,.12);
  color: var(--rbt-warn); font-size: .68rem; font-weight: 700;
}
.rbt-phone__cta {
  text-align: center; background: var(--rbt-mint); color: #0A192F;
  border-radius: 999px; padding: 9px; font-size: .78rem; font-weight: 800;
}
.rbt-stack__audit { position: relative; z-index: 2; margin-left: 18%; }
.rbt-win {
  background: var(--rbt-card); border: 1px solid var(--rbt-line); border-radius: 14px;
  overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.rbt-win__bar {
  display: flex; align-items: center; gap: 6px; padding: 10px 12px;
  background: #0a1220; border-bottom: 1px solid var(--rbt-line);
  font-family: "IBM Plex Mono", monospace; font-size: .68rem; color: var(--rbt-muted);
}
.rbt-win__bar i { width: 8px; height: 8px; border-radius: 50%; background: #334155; display: inline-block; }
.rbt-win__bar i:nth-child(1) { background: #f87171; }
.rbt-win__bar i:nth-child(2) { background: #fbbf24; }
.rbt-win__bar i:nth-child(3) { background: #34d399; }
.rbt-win__bar span { margin-left: 8px; }
.rbt-win__row {
  display: flex; justify-content: space-between; gap: 12px; padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.05); font-size: .82rem;
}
.rbt-win__row span { color: var(--rbt-muted); }
.rbt-win__row em { font-style: normal; color: var(--rbt-mint-2); font-size: .75rem; }
.rbt-win__row.is-warn { background: rgba(251,191,36,.08); }
.rbt-win__row.is-ok { background: rgba(255,215,0,.08); }
.rbt-stack__cap, .rbt-stack__rules {
  position: absolute; z-index: 5; background: rgba(14,22,38,.92);
  border: 1px solid var(--rbt-line-strong); border-radius: 12px; padding: 12px 14px;
  backdrop-filter: blur(10px); max-width: 240px;
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.rbt-stack__cap { right: 0; top: 0; }
.rbt-stack__rules { right: 4%; bottom: 0; }
.rbt-stack__cap strong, .rbt-stack__rules strong { display: block; margin: 4px 0 2px; font-size: .95rem; }
.rbt-stack__cap p, .rbt-stack__rules p { margin: 0; font-size: .75rem; color: var(--rbt-muted); line-height: 1.4; }
@keyframes rbtFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.rbt-strip { border-top: 1px solid var(--rbt-line); border-bottom: 1px solid var(--rbt-line); background: var(--rbt-bg2); }
.rbt-strip__inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 22px 0;
}
.rbt-strip__inner div { display: flex; flex-direction: column; gap: 4px; padding: 4px 8px; }
.rbt-strip__inner strong { font-size: .95rem; }
.rbt-strip__inner small { color: var(--rbt-muted); font-size: .78rem; }

.rbt-section { padding: clamp(56px, 9vh, 96px) 0; }
.rbt-section--tight { padding-top: 24px; }
.rbt-section__head { max-width: 640px; margin-bottom: 32px; }
.rbt-section__head h2, .rbt-split h2, .rbt-price__copy h2, .rbt-cta h2 {
  margin: 0 0 10px; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -.02em;
}
.rbt-section__head p, .rbt-lead { margin: 0; color: var(--rbt-muted); line-height: 1.55; font-size: 1.02rem; }

.rbt-layers {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.rbt-layers li {
  background: var(--rbt-card); border: 1px solid var(--rbt-line); border-radius: 16px;
  padding: 20px 18px 22px; min-height: 220px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.rbt-layers li:hover { border-color: var(--rbt-line-strong); }
.rbt-layers__icon {
  width: 40px; height: 40px; border-radius: 10px; margin: 10px 0 12px;
  display: grid; place-items: center; background: rgba(255,215,0,.12); color: var(--rbt-mint);
}
.rbt-layers h3 { margin: 0 0 8px; font-size: 1.02rem; }
.rbt-layers p { margin: 0; color: var(--rbt-muted); font-size: .88rem; line-height: 1.5; }

.rbt-pipe {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 10px; align-items: stretch;
}
.rbt-pipe article {
  background: var(--rbt-card); border: 1px solid var(--rbt-line); border-radius: 16px; padding: 20px;
}
.rbt-pipe header { margin-bottom: 12px; }
.rbt-pipe h3 { margin: 6px 0 0; font-size: 1.15rem; }
.rbt-pipe p { margin: 12px 0 0; color: var(--rbt-muted); font-size: .9rem; line-height: 1.5; }
.rbt-pipe__ui { display: flex; flex-wrap: wrap; gap: 6px; }
.rbt-pipe__arrow {
  width: 18px; align-self: center; height: 2px;
  background: linear-gradient(90deg, transparent, var(--rbt-mint), transparent);
  position: relative;
}
.rbt-chip {
  font-family: "IBM Plex Mono", monospace; font-size: .68rem;
  padding: 6px 8px; border-radius: 6px; background: #0a1220;
  border: 1px solid var(--rbt-line); color: var(--rbt-mint-2);
}
.rbt-chip--warn { color: var(--rbt-warn); border-color: rgba(251,191,36,.35); }
.rbt-chip--ok { color: var(--rbt-mint); border-color: var(--rbt-line-strong); }

.rbt-split {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 36px; align-items: center;
}
.rbt-modes { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.rbt-modes li {
  padding: 12px 14px; border-radius: 10px; border: 1px solid var(--rbt-line);
  background: var(--rbt-card); font-size: .92rem; color: var(--rbt-muted);
}
.rbt-modes strong { color: var(--rbt-text); margin-right: 6px; }
.rbt-table {
  background: var(--rbt-card); border: 1px solid var(--rbt-line); border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.rbt-table__bar {
  padding: 10px 14px; border-bottom: 1px solid var(--rbt-line); background: #0a1220;
}
.rbt-table__row {
  display: grid; grid-template-columns: 1.1fr 1fr .8fr .9fr;
  gap: 8px; padding: 11px 14px; font-size: .82rem; border-bottom: 1px solid rgba(255,255,255,.05);
  font-family: "IBM Plex Mono", monospace;
}
.rbt-table__row--head { color: var(--rbt-muted); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; }
.rbt-table__row.is-hot { background: rgba(255,215,0,.1); color: var(--rbt-mint); }
.rbt-table__foot {
  padding: 12px 14px; font-size: .78rem; color: var(--rbt-mint-2);
  font-family: "IBM Plex Mono", monospace; background: #071018;
}

.rbt-personas { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rbt-personas article {
  background: var(--rbt-card); border: 1px solid var(--rbt-line); border-radius: 16px; padding: 24px;
}
.rbt-personas h3 { margin: 8px 0 14px; }
.rbt-personas ol { margin: 0 0 18px; padding-left: 18px; color: var(--rbt-muted); line-height: 1.7; }

.rbt-price {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: center;
  background: linear-gradient(160deg, #0e1626, #071018);
  border: 1px solid var(--rbt-line); border-radius: 20px; padding: 32px;
}
.rbt-price__copy ul { list-style: none; margin: 18px 0 0; padding: 0; }
.rbt-price__copy li { display: flex; gap: 10px; color: var(--rbt-muted); margin-bottom: 8px; }
.rbt-price__copy i { color: var(--rbt-mint); margin-top: 4px; }
.rbt-price__card {
  background: #05080f; border: 1px solid var(--rbt-line-strong); border-radius: 16px; padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.rbt-price__card img { height: 40px; width: auto; margin-bottom: 8px; }
.rbt-price__value { font-size: 2.4rem; font-weight: 800; margin: 4px 0; }
.rbt-price__value span { font-size: 1rem; color: var(--rbt-muted); font-weight: 600; }
.rbt-price__trial { margin: 0 0 12px; color: var(--rbt-muted); font-size: .88rem; }

.rbt-faq-wrap .rbt-section__head { margin-bottom: 20px; }
.rbt-faq { display: flex; flex-direction: column; gap: 8px; max-width: 760px; }
.rbt-faq details {
  background: var(--rbt-card); border: 1px solid var(--rbt-line); border-radius: 12px; padding: 4px 16px;
}
.rbt-faq summary {
  cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none;
}
.rbt-faq summary::-webkit-details-marker { display: none; }
.rbt-faq details p { margin: 0 0 14px; color: var(--rbt-muted); line-height: 1.55; }

.rbt-cta { padding: 0 0 72px; }
.rbt-cta__inner {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 28px 32px; border-radius: 18px;
  background: radial-gradient(ellipse at 80% 0%, rgba(46,230,168,.18), transparent 50%), var(--rbt-card);
  border: 1px solid var(--rbt-line-strong);
}
.rbt-cta p:last-of-type { margin: 0; color: var(--rbt-muted); }

.rbt-foot {
  background: #02040a; border-top: 1px solid var(--rbt-line); padding: 40px 0 20px;
}
.rbt-foot__grid {
  display: grid; grid-template-columns: 1.4fr .7fr .7fr .7fr; gap: 24px; padding-bottom: 28px;
}
.rbt-foot__brand p { margin: 12px 0 0; color: var(--rbt-muted); font-size: .9rem; line-height: 1.5; max-width: 36ch; }
.rbt-foot__brand img { height: 40px; width: auto; }
.rbt-foot h4 { margin: 0 0 12px; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--rbt-mint-2); }
.rbt-foot a { display: block; color: var(--rbt-muted); text-decoration: none; font-size: .9rem; margin-bottom: 8px; }
.rbt-foot a:hover { color: var(--rbt-text); }
.rbt-foot__bar {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding-top: 16px; border-top: 1px solid var(--rbt-line);
  color: var(--rbt-muted); font-size: .8rem;
}

.rb-land--tech .rb-reveal { opacity: 0; transform: translateY(14px); transition: .55s ease; }
.rb-land--tech .rb-reveal.is-in { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .rbt-nav__links, .rbt-nav__cta { display: none; }
  .rbt-nav__menu { display: inline-flex; }
  .rbt-hero__grid, .rbt-split, .rbt-personas, .rbt-price { grid-template-columns: 1fr; }
  .rbt-layers { grid-template-columns: 1fr 1fr; }
  .rbt-pipe { grid-template-columns: 1fr; }
  .rbt-pipe__arrow { width: 2px; height: 18px; margin: 0 auto; background: linear-gradient(180deg, transparent, var(--rbt-mint), transparent); }
  .rbt-strip__inner, .rbt-foot__grid { grid-template-columns: 1fr 1fr; }
  .rbt-stack { min-height: 380px; margin-top: 12px; }
}
@media (max-width: 640px) {
  .rbt-layers, .rbt-strip__inner, .rbt-foot__grid { grid-template-columns: 1fr; }
  .rbt-hero__meta { grid-template-columns: 1fr; }
  .rbt-stack { min-height: 460px; }
  .rbt-stack__phone { left: 0; }
  .rbt-stack__cap { max-width: 180px; }
  .rbt-price { padding: 22px; }
}

.rbt-hero__grid--login { grid-template-columns: 1.05fr .9fr; align-items: center; }
.rbt-hero__login { width: 100%; max-width: 440px; justify-self: end; }
.rbt-auth {
  background: rgba(17, 34, 64, .86);
  border: 1px solid var(--rbt-line-strong);
  border-radius: 18px;
  padding: 22px 22px 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
}
.rbt-auth__tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin: 0 0 18px;
  padding: 4px; background: rgba(10,25,47,.7); border-radius: 12px; border: 1px solid var(--rbt-line);
}
.rbt-auth__tabs--3 { grid-template-columns: 1fr 1.15fr 1fr; }
.rbt-auth__ok {
  margin: 0 0 12px; padding: 10px 12px; border-radius: 10px;
  background: rgba(255,215,0,.12); border: 1px solid rgba(255,215,0,.35);
  color: var(--rbt-mint-2); font-size: .88rem; font-weight: 600;
}
.rbt-auth__tabs a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 8px; border-radius: 9px; text-decoration: none;
  font-size: .82rem; font-weight: 700; color: var(--rbt-muted);
}
.rbt-auth__tabs a.is-active {
  background: var(--rbt-mint); color: #0A192F;
}
.rbt-auth h2 { margin: 0 0 6px; font-size: 1.25rem; font-weight: 800; }
.rbt-auth__hint { margin: 0 0 16px; color: var(--rbt-muted); font-size: .92rem; line-height: 1.5; }
.rbt-auth__err {
  margin: 0 0 12px; padding: 10px 12px; border-radius: 10px;
  background: rgba(185,28,28,.18); border: 1px solid rgba(248,113,113,.4);
  color: #fecaca; font-size: .88rem; font-weight: 600;
}
.rbt-auth__form { display: flex; flex-direction: column; gap: 12px; }
.rbt-auth__form label { display: flex; flex-direction: column; gap: 6px; font-size: .8rem; font-weight: 700; color: var(--rbt-mint-2); }
.rbt-auth__form input {
  font: 500 1rem "Outfit", sans-serif; padding: 12px 14px;
  border-radius: 10px; border: 1px solid var(--rbt-line);
  background: #0A192F; color: var(--rbt-text);
}
.rbt-auth__form input:focus {
  outline: none; border-color: var(--rbt-mint); box-shadow: 0 0 0 3px rgba(255,215,0,.18);
}
.rbt-auth .rbt-btn { margin-top: 4px; }

.rbt-layers--list {
  display: flex; flex-direction: column; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none;
}
.rbt-layers--list li {
  min-height: 0; display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: start;
  padding: 14px 16px;
}
.rbt-layers--list h3 { margin: 0 0 4px; }
.rbt-split--stack { align-items: start; }
.rbt-stack--static { min-height: 440px; }

.rbt-login-page { min-height: 100vh; }
.rbt-login-shell {
  min-height: 100vh; display: grid; grid-template-columns: 1.05fr .95fr;
  position: relative; z-index: 1;
}
.rbt-login-brand {
  padding: clamp(32px, 6vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--rbt-line);
  background:
    radial-gradient(ellipse 70% 50% at 20% 10%, rgba(255,215,0,.12), transparent 55%),
    var(--rbt-bg);
}
.rbt-login-brand h1 {
  margin: 8px 0 14px; font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.12; max-width: 16ch;
}
.rbt-login-brand > p { margin: 0 0 22px; color: var(--rbt-muted); max-width: 42ch; line-height: 1.55; }
.rbt-login-panel {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(28px, 5vw, 56px);
  background: var(--rbt-bg2);
}
.rbt-login-panel .rbt-auth { max-width: 440px; width: 100%; }
.rbt-login-back { margin: 16px 0 0; }
.rbt-login-back a { color: var(--rbt-muted); text-decoration: none; font-size: .88rem; }
.rbt-login-back a:hover { color: var(--rbt-mint); }

.rbt-foot { background: #06101f; }
.rbt-auth__short { display: none; }

@media (max-width: 980px) {
  .rbt-hero__grid--login, .rbt-login-shell, .rbt-split--stack { grid-template-columns: 1fr; }
  .rbt-hero__login { justify-self: stretch; max-width: none; }
  .rbt-login-brand { border-right: 0; border-bottom: 1px solid var(--rbt-line); min-height: auto; padding-bottom: 28px; }
  .rbt-layers--list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .rbt-auth__tabs--3 { grid-template-columns: 1fr; }
  .rbt-auth__tabs a { font-size: .8rem; }
}

/* ——— Celular, iPad e uso na rua ——— */
html { -webkit-text-size-adjust: 100%; }
.rb-land--tech,
.rb-portal,
.rbt-login-page {
  overflow-x: hidden;
}
.rb-land--tech,
.rbt-login-page {
  min-height: 100dvh;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.rbt-btn,
.rb-btn,
.rbt-nav__menu,
.rbt-nav__drawer a,
.rbt-auth__tabs a,
.rb-portal__nav a,
.rb-shot__cam,
.rb-shot__alt {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(255, 215, 0, .18);
}
.rbt-auth__form input,
.rbt-auth__form select,
.rb-form input:not([type="file"]):not([type="checkbox"]),
.rb-form select,
.rb-form textarea {
  font-size: 16px;
  min-height: 48px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
}
.rb-form textarea { min-height: 96px; }
.rb-form select { min-height: 52px; }

.rb-shot {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border: 1.5px dashed var(--rb-line);
  border-radius: 16px;
  background: #fff;
}
.rb-shot__label {
  margin: 0;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--rb-muted);
}
.rb-shot__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.rb-shot__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.rb-shot__cam,
.rb-shot__alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border-radius: 14px;
  font: 800 1rem var(--rb-font);
  cursor: pointer;
  border: 1px solid transparent;
}
.rb-shot__cam {
  background: var(--rb-forest);
  color: #fff;
  box-shadow: 0 8px 20px rgba(15, 107, 76, .28);
}
.rb-shot__alt {
  background: #fff;
  color: var(--rb-ink);
  border-color: var(--rb-line);
}
.rb-shot__preview {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  background: var(--rb-leaf);
}
.rb-shot__preview[hidden] { display: none !important; }
.rb-shot__preview img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
}
.rb-shot__preview span {
  font-size: .88rem;
  font-weight: 700;
  word-break: break-all;
}
.rb-btn--street {
  min-height: 56px;
  font-size: 1.05rem;
  font-weight: 800;
  gap: 10px;
}
.rb-check {
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 12px;
  border-radius: 12px;
  background: var(--rb-warn-bg);
}
.rb-check input {
  width: 22px;
  height: 22px;
  min-height: 22px;
  margin-top: 2px;
  flex-shrink: 0;
}

.rb-portal {
  padding-bottom: calc(88px + env(safe-area-inset-bottom));
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.rb-portal__top {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: calc(12px + env(safe-area-inset-top));
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
}
.rb-portal__nav {
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -8px 24px rgba(12, 31, 26, .08);
}
.rb-portal__nav a {
  min-height: 56px;
  padding: 10px 8px;
  font-size: .8rem;
  gap: 6px;
}
.rb-portal__nav a i { font-size: 1.15rem; }
.rb-portal__nav-cta { color: var(--rb-forest) !important; }
.rb-portal__nav-cta i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--rb-forest);
  color: #fff;
}
.rb-portal__nav-cta.active i {
  box-shadow: 0 0 0 3px rgba(15, 107, 76, .2);
}
.rb-stat strong { font-size: 1.35rem; letter-spacing: -.02em; }

@media (max-width: 980px) {
  .rbt-wrap { width: min(1120px, calc(100% - 24px)); }
  .rbt-nav { padding-top: env(safe-area-inset-top); }
  .rbt-nav__inner { padding: 10px 0; }
  .rbt-nav__menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
  }
  .rbt-nav__drawer {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
  .rbt-nav__drawer a {
    min-height: 48px;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
  }
  .rbt-hero__grid--login {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .rbt-hero__login { order: -1; }
  .rbt-hero { padding: 20px 0 36px; }
  .rbt-hero__copy h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .rbt-hero__lead { font-size: 1rem; }
  .rbt-stack--static { display: none; }
  .rbt-topbar { display: none; }
  .rbt-auth {
    padding: 18px 16px 20px;
    border-radius: 16px;
  }
  .rbt-auth__tabs--3 { grid-template-columns: repeat(3, 1fr); }
  .rbt-auth__tabs a {
    min-height: 52px;
    flex-direction: column;
    gap: 4px;
    font-size: .68rem;
    padding: 8px 4px;
    text-align: center;
  }
  .rbt-auth__long { display: none; }
  .rbt-auth__short { display: inline; }
  .rbt-auth h2 { font-size: 1.2rem; }
  .rbt-btn--lg,
  .rbt-btn--block { min-height: 52px; font-size: 1rem; }
  .rbt-login-brand {
    padding: 20px 20px 16px;
    padding-top: calc(16px + env(safe-area-inset-top));
  }
  .rbt-login-brand h1 { font-size: 1.45rem; max-width: none; }
  .rbt-login-panel {
    padding: 16px 16px calc(28px + env(safe-area-inset-bottom));
  }
  .rbt-login-panel .rbt-auth { max-width: none; }
  .rbt-cta__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 18px;
    text-align: center;
  }
  .rbt-section { padding: 40px 0; }
}

@media (max-width: 640px) {
  .rbt-auth__tabs--3 { grid-template-columns: repeat(3, 1fr); }
  .rbt-login-brand .rbt-hero__meta,
  .rbt-login-brand > p:not(.rbt-kicker) { display: none; }
  .rbt-price__value { font-size: 2rem; }
  .rb-portal__main { padding: 16px 16px 32px; }
  .rb-portal__main h1 { font-size: 1.35rem; }
  .rb-portal__user strong {
    max-width: 42vw;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .rb-list__head { align-items: flex-start; }
  .rb-list__item { padding: 16px; }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .rbt-wrap { width: min(1120px, calc(100% - 40px)); }
  .rb-portal__main { max-width: 720px; padding: 24px 24px 40px; }
  .rb-shot__actions { grid-template-columns: 1.2fr .8fr; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .rb-portal__nav {
    left: 50%;
    right: auto;
    width: min(720px, 100%);
    transform: translateX(-50%);
    border-radius: 18px 18px 0 0;
    border-left: 1px solid var(--rb-line);
    border-right: 1px solid var(--rb-line);
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .rbt-hero { padding: 12px 0 20px; }
  .rbt-hero__copy h1 { font-size: 1.5rem; margin-bottom: 8px; }
  .rbt-hero__lead,
  .rbt-hero__meta,
  .rbt-topbar { display: none; }
  .rb-portal__emp { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .rbt-btn:hover, .rb-btn:hover { transform: none; }
  .rbt-dot { animation: none; }
}

@media (hover: none) {
  .rbt-btn:hover, .rb-btn:hover { transform: none; }
}

/* ——— Login iPhone: só o essencial ——— */
@media (max-width: 820px) {
  .rb-land--app .rbt-topbar,
  .rb-land--app .rbt-hero__copy,
  .rb-land--app .rbt-strip,
  .rb-land--app main .rbt-section,
  .rb-land--app .rbt-foot,
  .rb-land--app .rbt-nav__menu,
  .rb-land--app .rbt-nav__drawer,
  .rb-land--app .rbt-nav__links,
  .rb-land--app .rbt-nav__cta,
  .rb-land--app .rbt-hero__grid-bg,
  .rb-land--app .rbt-hero__orb {
    display: none !important;
  }
  .rb-land--app .rbt-nav {
    background: transparent;
    border-bottom: 0;
    padding-top: env(safe-area-inset-top);
  }
  .rb-land--app .rbt-nav__inner {
    justify-content: center;
    padding: 18px 0 4px;
  }
  .rb-land--app .rbt-nav__brand img { height: 36px; }
  .rb-land--app .rbt-hero {
    min-height: calc(100dvh - 88px);
    padding: 8px 0 28px;
    display: flex;
    align-items: flex-start;
  }
  .rb-land--app .rbt-hero__grid--login {
    width: 100%;
  }
  .rb-land--app .rbt-auth {
    background: rgba(17, 34, 64, .94);
    border-color: rgba(255, 215, 0, .28);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
    padding: 20px 18px 22px;
  }
  .rb-land--app .rbt-auth h2 {
    font-size: 1.45rem;
    margin: 4px 0 4px;
    letter-spacing: -.03em;
  }
  .rb-land--app .rbt-auth__hint {
    font-size: .88rem;
    margin-bottom: 18px;
  }
  .rb-land--app .rbt-auth__tabs {
    margin-bottom: 16px;
  }
  .rb-land--app .rbt-btn--lg {
    min-height: 54px;
    border-radius: 14px;
    font-size: 1.05rem;
  }
  .rbt-login-page.rb-land--app .rbt-login-shell {
    min-height: 100dvh;
    grid-template-columns: 1fr;
  }
  .rbt-login-page.rb-land--app .rbt-login-brand {
    border: 0;
    padding: calc(18px + env(safe-area-inset-top)) 20px 8px;
    text-align: center;
    align-items: center;
    background: transparent;
  }
  .rbt-login-page.rb-land--app .rbt-login-brand h1,
  .rbt-login-page.rb-land--app .rbt-login-brand .rbt-kicker,
  .rbt-login-page.rb-land--app .rbt-login-brand .rbt-hero__meta,
  .rbt-login-page.rb-land--app .rbt-login-brand > p {
    display: none !important;
  }
  .rbt-login-page.rb-land--app .rbt-login-panel {
    padding: 8px 16px calc(28px + env(safe-area-inset-bottom));
    background: transparent;
  }
}

/* ——— Portal interno objetivo ——— */
.rb-portal__hello {
  margin: 0;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--rb-muted);
}
.rb-portal__main h1 { margin: 2px 0 16px; letter-spacing: -.03em; }
.rb-portal__h2 {
  margin: 22px 0 10px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rb-muted);
}
.rb-status-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 16px 0 4px;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.rb-status-row::-webkit-scrollbar { display: none; }
.rb-status-chip {
  flex: 0 0 auto;
  min-width: 88px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--rb-line);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rb-status-chip strong { font-size: 1.35rem; letter-spacing: -.03em; }
.rb-status-chip span { font-size: .72rem; font-weight: 700; color: var(--rb-muted); }
.rb-status-chip--warn { background: #fffbeb; border-color: #fcd34d; }
.rb-status-chip--ok { background: #ecfdf5; border-color: #a7f3d0; }
.rb-status-chip--bad { background: #fef2f2; border-color: #fecaca; }
.rb-limite-list { display: flex; flex-direction: column; gap: 8px; }
.rb-limite {
  background: #fff;
  border: 1px solid var(--rb-line);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rb-limite span { font-size: .78rem; font-weight: 700; color: var(--rb-muted); }
.rb-limite strong { font-size: 1.15rem; }
.rb-limite small { color: var(--rb-muted); font-size: .78rem; }
.rb-portal__top {
  border-bottom: 0;
  box-shadow: 0 1px 0 var(--rb-line);
}
.rb-list__item p {
  margin: 4px 0 0;
  color: var(--rb-muted);
  font-size: .92rem;
  line-height: 1.4;
}

/* ——— Admin: cadastro da equipe ——— */
.rb-colab-form { max-width: 560px; }
.rb-form-sec {
  border: 1px solid var(--rb-line);
  border-radius: 14px;
  padding: 14px 16px 16px;
  margin: 0 0 14px;
  background: #fafdfb;
}
.rb-form-sec legend {
  padding: 0 8px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rb-forest);
}
.rb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.rb-form-row--3 { grid-template-columns: 1.1fr .8fr .9fr; }
.rb-form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.rb-colab-form .rb-check {
  background: #fff;
  border: 1px solid var(--rb-line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--rb-ink);
}
.rb-colab-form select {
  min-height: 46px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--rb-line);
  border-radius: 10px;
  padding: 10px 12px;
  font: 500 1rem var(--rb-font);
  background: #fff;
  color: var(--rb-ink);
}
@media (max-width: 720px) {
  .rb-form-row,
  .rb-form-row--3 { grid-template-columns: 1fr; }
}

/* ——— App nativo no celular (portal logado) ——— */
.rb-app {
  --app-navy: #0A192F;
  --app-gold: #FFD700;
  --app-bg: #eef1f4;
  background: var(--app-navy);
  color: var(--rb-ink);
  min-height: 100dvh;
  padding: 0;
}
.rb-app__frame {
  min-height: 100dvh;
  background: var(--app-bg);
  display: flex;
  flex-direction: column;
  padding-bottom: calc(86px + env(safe-area-inset-bottom));
}
.rb-app .rb-portal__top,
.rb-app .rb-portal__nav { display: none; }
.rb-app__head {
  background: linear-gradient(165deg, #0A192F 0%, #123056 100%);
  color: #f8fafc;
  padding: calc(12px + env(safe-area-inset-top)) 18px 22px;
}
.rb-app__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rb-app__who {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.rb-app__who .rb-avatar {
  width: 42px;
  height: 42px;
  background: var(--app-gold);
  color: #0A192F;
  font-size: .8rem;
}
.rb-app__who strong {
  display: block;
  font-size: .95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 52vw;
}
.rb-app__who span {
  display: block;
  font-size: .72rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 52vw;
}
.rb-app__logout {
  color: var(--app-gold);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 0, .35);
}
.rb-app__main {
  flex: 1;
  max-width: none;
  margin: 0;
  padding: 18px 16px 8px;
}
.rb-app[data-sec="inicio"] .rb-app__main {
  margin-top: -14px;
  padding-top: 20px;
  background: var(--app-bg);
  border-radius: 22px 22px 0 0;
  position: relative;
}
.rb-app .rb-portal__hello {
  color: #64748b;
  margin: 0 0 2px;
}
.rb-app .rb-portal__main h1 {
  font-size: 1.85rem;
  margin: 0 0 16px;
  letter-spacing: -.04em;
}
.rb-app__cam {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
  color: #0A192F;
  background: var(--app-gold);
  border-radius: 20px;
  padding: 18px 18px 16px 72px;
  position: relative;
  box-shadow: 0 12px 28px rgba(255, 215, 0, .28);
  margin-bottom: 18px;
}
.rb-app__cam i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #0A192F;
  color: var(--app-gold);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.rb-app__cam span {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.rb-app__cam em {
  font-style: normal;
  font-size: .8rem;
  font-weight: 600;
  color: #5b4b00;
}
.rb-app .rb-status-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  overflow: visible;
  margin: 0 0 8px;
}
.rb-app .rb-status-chip {
  min-width: 0;
  flex: 1;
  align-items: flex-start;
  padding: 12px 10px;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}
.rb-app .rb-status-chip strong { font-size: 1.2rem; }
.rb-app .rb-limite {
  border: 0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .05);
  border-radius: 16px;
}
.rb-app__card {
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .06);
}
.rb-app .rb-shot {
  border: 0;
  background: #f4f7fb;
  border-radius: 16px;
}
.rb-app .rb-list {
  gap: 10px;
}
.rb-app .rb-list__item {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .06);
  padding: 16px;
}
.rb-app .rb-flash {
  margin: 0;
  padding: 10px 16px;
  font-weight: 700;
}
.rb-app__tabs {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(15, 23, 42, .08);
  padding: 6px 8px calc(8px + env(safe-area-inset-bottom));
}
.rb-app__tabs a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  text-decoration: none;
  color: #94a3b8;
  font-size: .68rem;
  font-weight: 800;
  min-height: 52px;
  padding-bottom: 2px;
}
.rb-app__tabs a i { font-size: 1.15rem; }
.rb-app__tabs a.is-on { color: #0A192F; }
.rb-app__tabs-cam { transform: translateY(-10px); }
.rb-app__fab {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--app-gold);
  color: #0A192F;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 24px rgba(255, 215, 0, .4);
  margin-bottom: 2px;
}
.rb-app__tabs-cam.is-on .rb-app__fab {
  background: #0A192F;
  color: var(--app-gold);
}

@media (max-width: 420px) {
  .rb-app .rb-status-row { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 640px) {
  .rb-app { background: #071018; }
  .rb-app__frame {
    max-width: 430px;
    margin: 0 auto;
    box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 24px 80px rgba(0,0,0,.45);
  }
  .rb-app__tabs {
    left: 50%;
    right: auto;
    width: 430px;
    transform: translateX(-50%);
    border-radius: 0;
  }
}

/* Login celular: tela cheia */
@media (max-width: 820px) {
  html:has(.rb-land--app) {
    height: 100%;
  }
  .rb-land--app {
    background: #0A192F;
    padding: 0;
    min-height: 100dvh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
  }
  .rb-land--app .rbt-noise { display: none; }
  .rb-land--app .rbt-wrap {
    width: 100% !important;
    max-width: none !important;
    margin: 0;
  }
  .rb-land--app .rbt-nav {
    flex-shrink: 0;
    padding-top: env(safe-area-inset-top);
  }
  .rb-land--app .rbt-nav__inner {
    width: 100%;
    padding: 14px 16px 12px;
  }
  .rb-land--app .rbt-nav__brand img { height: 40px; }
  .rb-land--app main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .rb-land--app .rbt-hero {
    flex: 1;
    min-height: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: stretch;
  }
  .rb-land--app .rbt-wrap.rbt-hero__grid,
  .rb-land--app .rbt-hero__grid--login {
    width: 100% !important;
    max-width: none !important;
    margin: 0;
    padding: 0;
    display: flex;
    flex: 1;
    min-height: 0;
  }
  .rb-land--app .rbt-hero__login {
    flex: 1;
    display: flex;
    width: 100%;
    max-width: none !important;
    min-height: 0;
  }
  .rb-land--app .rbt-auth {
    flex: 1;
    width: 100%;
    max-width: none;
    background: #fff;
    color: #0f172a;
    border: 0;
    border-radius: 28px 28px 0 0;
    box-shadow: none;
    padding: 22px 20px calc(16px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .rb-land--app .rbt-auth h2 {
    color: #0A192F;
    font-size: 1.55rem;
    margin: 6px 0 4px;
  }
  .rb-land--app .rbt-auth__hint {
    color: #64748b;
    margin-bottom: 18px;
  }
  .rb-land--app .rbt-auth__tabs {
    background: #eef2f7;
    border: 0;
    padding: 4px;
    margin-bottom: 14px;
  }
  .rb-land--app .rbt-auth__tabs a { color: #64748b; }
  .rb-land--app .rbt-auth__tabs a.is-active {
    background: #0A192F;
    color: #FFD700;
  }
  .rb-land--app .rbt-auth__form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .rb-land--app .rbt-auth__form label { color: #334155; }
  .rb-land--app .rbt-auth__form input {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #0f172a;
    min-height: 52px;
    border-radius: 14px;
  }
  .rb-land--app .rbt-auth__form input:focus {
    border-color: #0A192F;
    box-shadow: 0 0 0 3px rgba(10, 25, 47, .15);
    background: #fff;
  }
  .rb-land--app .rbt-auth .rbt-btn--lg,
  .rb-land--app .rbt-auth .rbt-btn--block {
    margin-top: auto;
    min-height: 56px;
    border-radius: 16px;
  }
  .rb-land--app .rbt-btn--solid {
    background: #FFD700;
    color: #0A192F;
    box-shadow: none;
  }

  .rbt-login-page.rb-land--app .rbt-login-shell {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .rbt-login-page.rb-land--app .rbt-login-brand {
    flex-shrink: 0;
    padding: calc(14px + env(safe-area-inset-top)) 16px 10px;
  }
  .rbt-login-page.rb-land--app .rbt-login-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: 0;
    background: transparent;
  }
  .rbt-login-page.rb-land--app .rbt-login-panel .rbt-auth {
    border-radius: 28px 28px 0 0;
  }
  .rbt-login-page.rb-land--app .rbt-login-back {
    display: none;
  }
}
