/* ============================================================
   EISI Redesign — Site CSS
   Loaded AFTER tokens.css.
   ============================================================ */

/* ============================================================
   NAV (glass, floating, always over hero or scrolled)
   ============================================================ */
.r-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: 1180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 20px;
  border-radius: var(--r-r-pill);
  background: rgba(20, 18, 16, 0.55);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--r-cream-on-night);
  transition: background var(--r-t), border-color var(--r-t);
}
body.r-light-nav .r-nav {
  background: rgba(245, 241, 234, 0.78);
  border-color: rgba(26,23,20,0.10);
  color: var(--r-ink);
}

.r-nav-logo {
  display: flex; align-items: center;
  gap: 10px;
}
.r-nav-logo img { height: 26px; width: auto; filter: brightness(1.05); }
.r-nav-links {
  display: flex; align-items: center;
  gap: 26px;
}
.r-nav-link {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.78;
  transition: opacity var(--r-t);
}
.r-nav-link:hover { opacity: 1; }
.r-nav-cta {
  height: 36px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 500;
  background: var(--r-cream-on-night);
  color: var(--r-night-0);
  border-radius: var(--r-r-pill);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--r-t);
  white-space: nowrap;
  flex-shrink: 0;
}
.r-nav-cta:hover { background: #fff; }
body.r-light-nav .r-nav-cta { background: var(--r-ink); color: var(--r-bone); }

@media (max-width: 740px) {
  .r-nav-links { display: none; }
}

/* ============================================================
   HERO — full bleed cinematic
   ============================================================ */
.r-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  max-height: 1100px;
  overflow: hidden;
  background: var(--r-night-0);
  color: var(--r-cream-on-night);
  isolation: isolate;
}

/* image layer */
.r-hero-bg {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center 55%;
  filter: saturate(1.05) contrast(1.05);
  animation: r-kenburns 38s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes r-kenburns {
  0%   { transform: scale(1.0)  translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.5%, -1%); }
}

/* gradient mask — darken top + bottom for text legibility */
.r-hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.10) 24%, rgba(10,9,8,0.30) 60%, rgba(10,9,8,0.92) 100%),
    radial-gradient(120% 80% at 20% 90%, rgba(10,9,8,0.55), transparent 60%);
  pointer-events: none;
}

/* atmospheric color wash — adds brand teal lift on edges */
.r-hero-wash {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(70% 60% at 90% 20%, rgba(217,126,42,0.12), transparent 70%),
    radial-gradient(60% 60% at 5% 80%, rgba(0,212,170,0.08), transparent 65%);
  pointer-events: none;
  mix-blend-mode: screen;
}

/* drifting particles (the "clouds") — pure CSS dots */
.r-hero-particles {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.r-particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255, 230, 200, 0.55);
  filter: blur(0.5px);
  box-shadow: 0 0 8px rgba(255, 230, 200, 0.7);
  animation: r-drift linear infinite;
  opacity: 0;
}
@keyframes r-drift {
  0%   { transform: translate(0, 30vh) scale(0.7); opacity: 0; }
  10%  { opacity: 0.6; }
  50%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { transform: translate(8vw, -30vh) scale(1.1); opacity: 0; }
}

/* drone — sweeps L to R slowly, every 26s */
.r-hero-drone {
  display: none; /* removed — fashion direction uses swinging tag instead */
}

/* swinging price tag — hangs top-right, swings gently like a product label */
.r-hero-tag {
  position: absolute;
  top: 78px;
  right: 56px;
  z-index: 6;
  width: 130px;
  height: 280px;
  transform-origin: 50% 0;
  animation: r-tag-sway 5.5s ease-in-out infinite;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.45));
  pointer-events: none;
}
.r-hero-tag svg { width: 100%; height: 100%; }
@keyframes r-tag-sway {
  0%, 100% { transform: rotate(-4deg); }
  50%      { transform: rotate(4deg); }
}
@media (max-width: 880px) {
  .r-hero-tag { right: 16px; width: 90px; height: 200px; top: 78px; }
}
@media (max-width: 600px) {
  .r-hero-tag { display: none; }
}

/* hero content layout */
.r-hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;
  padding: 120px var(--r-page-pad-x) 56px;
  max-width: var(--r-container);
  margin: 0 auto;
}

.r-hero-text {
  align-self: end;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.r-hero-text h1 { color: var(--r-cream-on-night); }
.r-hero-text h1 em {
  color: #f5b676;             /* warm amber italic accent — picks up the dusk light */
  font-style: italic;
}
.r-hero-text .r-lead {
  max-width: 560px;
  color: rgba(245,243,240,0.78);
}
.r-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* hero bottom row — eyebrow + small stats */
.r-hero-foot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(245,243,240,0.12);
  margin-top: 48px;
}
.r-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
}
.r-hero-stat .num {
  display: block;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--r-cream-on-night);
  line-height: 1;
  font-family: var(--r-font-serif);
  font-style: italic;
}
.r-hero-stat .lbl {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245,243,240,0.55);
  font-family: var(--r-font-mono);
}

@media (max-width: 720px) {
  .r-hero-stats { grid-template-columns: 1fr; gap: 14px; }
  .r-hero-foot { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   LIVE ORDER STACK — multiple cards stacking up like notifications
   ============================================================ */
.r-live-stack {
  position: absolute;
  top: 96px;
  right: var(--r-page-pad-x);
  width: 320px;
  height: 200px;
  z-index: 6;
  pointer-events: none;
}

.r-live-card {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  padding: 14px 16px;
  border-radius: var(--r-r-md);
  background: rgba(20, 18, 16, 0.72);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--r-cream-on-night);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  transform-origin: top right;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.r-live-card.r-instant { transition: none !important; }

/* stack positions */
.r-live-card[data-stack="0"] {
  transform: translate(0, 0) scale(1);
  opacity: 1;
  z-index: 4;
}
.r-live-card[data-stack="1"] {
  transform: translate(-10px, 14px) scale(0.96);
  opacity: 0.55;
  z-index: 3;
}
.r-live-card[data-stack="2"] {
  transform: translate(-20px, 28px) scale(0.92);
  opacity: 0.25;
  z-index: 2;
}
.r-live-card[data-stack="incoming"] {
  transform: translate(0, -80px) scale(0.94);
  opacity: 0;
  z-index: 5;
}
.r-live-card.r-leaving {
  transform: translate(32px, 60px) scale(0.86);
  opacity: 0;
  z-index: 1;
}

.r-live-card .top {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--r-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245,243,240,0.6);
  margin-bottom: 10px;
}
.r-live-card .top .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--r-accent);
  box-shadow: 0 0 0 0 rgba(0,212,170,0.5);
  animation: r-livepulse 1.6s infinite;
}
@keyframes r-livepulse {
  0% { box-shadow: 0 0 0 0 rgba(0,212,170,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(0,212,170,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,212,170,0); }
}
.r-live-card .row { display: flex; align-items: center; gap: 12px; }
.r-live-card .pic {
  width: 44px; height: 44px;
  border-radius: var(--r-r-sm);
  background: linear-gradient(135deg, rgba(217,126,42,0.4), rgba(184,90,46,0.3));
  border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  display: grid; place-items: center;
  color: rgba(245,243,240,0.7);
}
.r-live-card .body { flex: 1; min-width: 0; }
.r-live-card .name {
  font-size: 14px; font-weight: 500;
  color: var(--r-cream-on-night);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.r-live-card .meta {
  font-size: 12px;
  color: rgba(245,243,240,0.55);
  margin-top: 2px;
  font-variant-numeric: tabular-nums;
}
.r-live-card .price {
  font-size: 14px; font-weight: 500;
  color: var(--r-accent);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 740px) {
  .r-live-stack { display: none; }
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.r-section { padding: var(--r-section-y) 0; }
.r-section.alt { background: var(--r-bone-2); }
.r-section.dark {
  background: var(--r-night-0);
  color: var(--r-cream-on-night);
}
.r-section.dark .r-lead { color: var(--r-cream-on-night-2); }

.r-section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
.r-section-head .left { display: flex; flex-direction: column; gap: 14px; }
.r-section-head .right { padding-bottom: 6px; }
@media (max-width: 880px) {
  .r-section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   "HOW IT WORKS" — 3 steps with numbers
   ============================================================ */
.r-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--r-line);
}
.r-step {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--r-line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.r-step:last-child { border-right: none; padding-right: 0; }
.r-step:not(:first-child) { padding-left: 28px; }
.r-step .num {
  font-family: var(--r-font-serif);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  font-weight: 400;
  color: var(--r-ink);
  letter-spacing: -0.02em;
}
.r-step h3 { color: var(--r-ink); }
.r-step p { color: var(--r-ink-2); font-size: 15px; line-height: 1.5; max-width: 36ch; }
@media (max-width: 880px) {
  .r-steps { grid-template-columns: 1fr; }
  .r-step { border-right: none; border-bottom: 1px solid var(--r-line); padding: 28px 0; }
  .r-step:last-child { border-bottom: none; }
  .r-step:not(:first-child) { padding-left: 0; }
}

/* ============================================================
   FEATURES — editorial two-column with image left
   ============================================================ */
.r-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--r-line);
}
.r-feature:last-child { border-bottom: 0; }
.r-feature.reverse { direction: rtl; }
.r-feature.reverse > * { direction: ltr; }
.r-feature-img {
  border-radius: var(--r-r-lg);
  overflow: hidden;
  background: var(--r-paper);
  border: 1px solid var(--r-line);
  aspect-ratio: 4/3;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.18);
}
.r-feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.r-feature-text {
  display: flex; flex-direction: column; gap: 18px;
  padding: 8px 12px;
}
.r-feature-text ul {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 8px;
}
.r-feature-text li {
  display: flex; gap: 12px;
  font-size: 15px; line-height: 1.5;
  color: var(--r-ink);
  align-items: flex-start;
}
.r-feature-text li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--r-accent);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
@media (max-width: 880px) {
  .r-feature { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .r-feature.reverse { direction: ltr; }
}

/* ============================================================
   MOBILE SECTION — dark cinematic with phone mockup
   ============================================================ */
.r-mobile {
  background: var(--r-night-0);
  color: var(--r-cream-on-night);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.r-mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 75% 30%, rgba(217,126,42,0.10), transparent 65%),
    radial-gradient(50% 50% at 15% 75%, rgba(0,212,170,0.08), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.r-mobile > .r-container { position: relative; z-index: 1; }
.r-mobile .r-eyebrow { color: var(--r-cream-on-night-2); }
.r-mobile .r-h2 { color: var(--r-cream-on-night); }

.r-mobile-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) {
  .r-mobile-grid { grid-template-columns: 1fr; gap: 56px; }
}

.r-mobile-text { display: flex; flex-direction: column; gap: 22px; }
.r-mobile-text .r-lead { color: var(--r-cream-on-night-2); max-width: 480px; }

/* "Em um clique" callout — large editorial display number */
.r-one-click {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 8px 0 4px;
}
.r-one-click .big {
  font-family: var(--r-font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--r-cream-on-night);
}
.r-one-click .lbl {
  font-family: var(--r-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--r-cream-on-night-3);
  line-height: 1.4;
  align-self: end;
  padding-bottom: 10px;
}

/* bullet list for mobile section */
.r-mobile-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-top: 6px;
}
.r-mobile-bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--r-cream-on-night-2);
  line-height: 1.45;
}
.r-mobile-bullets li svg {
  width: 16px; height: 16px;
  color: var(--r-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 600px) { .r-mobile-bullets { grid-template-columns: 1fr; } }

/* Phone mockup — two phones layered, editorial */
.r-mobile-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 580px;
}
.r-mobile-glow {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,182,118,0.18), transparent 65%);
  z-index: 0;
}
.r-phone {
  width: 260px;
  height: 540px;
  background: linear-gradient(160deg, #2a2622 0%, #141210 80%);
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04) inset;
  overflow: hidden;
}
.r-phone::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #0a0908;
  border-radius: 12px;
  z-index: 3;
}
.r-phone-screen {
  position: absolute;
  inset: 4px;
  border-radius: 34px;
  background: linear-gradient(180deg, #1a1714 0%, #0f0d0b 100%);
  padding: 46px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.r-phone-head { display: flex; flex-direction: column; gap: 4px; padding: 0 4px; }
.r-phone-head .brand {
  font-size: 13px;
  font-weight: 500;
  color: var(--r-cream-on-night);
  letter-spacing: -0.01em;
}
.r-phone-head .greet {
  font-size: 10.5px;
  color: var(--r-cream-on-night-3);
  font-family: var(--r-font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.r-phone-hero {
  height: 100px;
  border-radius: 12px;
  background:
    linear-gradient(160deg, rgba(217,126,42,0.5), rgba(184,90,46,0.35)),
    radial-gradient(60% 60% at 30% 40%, rgba(245,182,118,0.4), transparent 70%);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.r-phone-hero .tag {
  font-size: 9px;
  font-family: var(--r-font-mono);
  letter-spacing: 0.16em;
  color: rgba(245,243,240,0.9);
  text-transform: uppercase;
}
.r-phone-hero .h {
  font-family: var(--r-font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--r-cream-on-night);
  line-height: 1;
}

.r-phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.r-phone-card {
  background: rgba(245,243,240,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.r-phone-card .img {
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(0,212,170,0.18), rgba(79,110,247,0.14));
  display: grid;
  place-items: center;
  color: rgba(245,243,240,0.55);
}
.r-phone-card .img svg { width: 26px; height: 26px; }
.r-phone-card .nm {
  font-size: 9px;
  color: var(--r-cream-on-night-2);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.r-phone-card .pr {
  font-size: 10px;
  font-weight: 500;
  color: var(--r-accent);
  font-variant-numeric: tabular-nums;
}

.r-phone-nav {
  margin-top: auto;
  margin: 0 -16px -16px;
  padding: 10px 0 12px;
  background: rgba(245,243,240,0.04);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.r-phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--r-cream-on-night-3);
}
.r-phone-nav-item svg { width: 14px; height: 14px; }
.r-phone-nav-item.act { color: var(--r-accent); }
.r-phone-nav-item span { font-size: 7px; font-family: var(--r-font-mono); letter-spacing: 0.08em; text-transform: uppercase; }

/* Push notification card — floats above phone */
.r-push {
  position: absolute;
  z-index: 4;
  top: 60px;
  left: -40px;
  width: 240px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(245,243,240,0.95);
  color: var(--r-night-0);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  display: flex;
  gap: 10px;
  align-items: center;
  animation: r-push-float 6s ease-in-out infinite;
}
@keyframes r-push-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}
.r-push .ic {
  width: 28px; height: 28px;
  background: var(--r-ink);
  color: var(--r-bone);
  border-radius: 6px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.r-push .ic svg { width: 16px; height: 16px; }
.r-push .txt { font-size: 11.5px; line-height: 1.3; min-width: 0; }
.r-push .ttl { font-weight: 600; }
.r-push .sub { color: var(--r-ink-2); font-size: 10.5px; margin-top: 1px; }

/* second phone (offset, faded) */
.r-phone.r-phone-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(20%, -42%) rotate(6deg) scale(0.85);
  z-index: 1;
  opacity: 0.6;
  filter: blur(0.5px);
}
@media (max-width: 600px) {
  .r-phone.r-phone-2 { display: none; }
  .r-push { left: -10px; width: 200px; }
}

/* ============================================================
   CASHBACK / LOYALTY — special feature block treatment
   ============================================================ */
.r-feature.r-feature-loyalty .r-feature-img {
  background: linear-gradient(160deg, var(--r-night-0), #1f1714);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 32px;
}
.r-loyalty-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin-top: 60px;
}
.r-loyalty-card {
  background: linear-gradient(135deg, rgba(0,212,170,0.18), rgba(0,212,170,0.04));
  border: 1px solid rgba(0,212,170,0.3);
  border-radius: 18px;
  padding: 22px 24px;
  color: var(--r-cream-on-night);
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.r-loyalty-card.r-back {
  position: absolute;
  top: -56px;
  right: -16px;
  left: auto;
  bottom: auto;
  background: linear-gradient(135deg, rgba(217,126,42,0.22), rgba(217,126,42,0.08));
  border-color: rgba(217,126,42,0.4);
  z-index: 0;
  transform: rotate(-5deg);
  width: 210px;
  padding: 12px 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}
.r-loyalty-card.r-back .r-loyalty-row { margin-bottom: 4px; font-size: 9px; }
.r-loyalty-card.r-back .r-loyalty-amount { font-size: 28px; }
.r-loyalty-card.r-back .r-loyalty-meta { font-size: 10.5px; }
.r-loyalty-card.r-front { position: relative; z-index: 1; }
.r-loyalty-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--r-font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,243,240,0.7);
  margin-bottom: 12px;
}
.r-loyalty-row .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--r-accent);
  display: inline-block;
  margin-right: 6px;
  vertical-align: 1px;
  box-shadow: 0 0 6px var(--r-accent);
}
.r-loyalty-amount {
  font-family: var(--r-font-serif);
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--r-cream-on-night);
  margin-bottom: 4px;
}
.r-loyalty-meta {
  font-size: 12px;
  color: rgba(245,243,240,0.7);
}
.r-loyalty-bar {
  margin-top: 14px;
  height: 6px;
  background: rgba(245,243,240,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.r-loyalty-bar > span {
  display: block;
  height: 100%;
  width: 72%;
  background: var(--r-accent);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(0,212,170,0.5);
}
.r-loyalty-foot {
  margin-top: 10px;
  display: flex; justify-content: space-between;
  font-size: 11px; color: rgba(245,243,240,0.6);
  font-family: var(--r-font-mono);
}
.r-ai {
  background: var(--r-night-0);
  color: var(--r-cream-on-night);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.r-ai::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 40% at 80% 15%, rgba(0,212,170,0.10), transparent 70%),
    radial-gradient(50% 50% at 10% 85%, rgba(217,126,42,0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.r-ai > .r-container { position: relative; z-index: 1; }
.r-ai .r-eyebrow { color: var(--r-cream-on-night-2); }
.r-ai .r-h2 { color: var(--r-cream-on-night); }
.r-ai .r-lead { color: var(--r-cream-on-night-2); }
.r-ai .r-eyebrow .dot { background: var(--r-accent); }

/* AI badge — appears next to the heading */
.r-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(0, 212, 170, 0.35);
  background: rgba(0, 212, 170, 0.08);
  color: var(--r-accent);
  border-radius: var(--r-r-pill);
  font-family: var(--r-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.r-ai-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--r-accent);
  box-shadow: 0 0 8px var(--r-accent);
}

/* 2x2 grid of AI cards */
.r-ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--r-night-line);
  border: 1px solid var(--r-night-line);
  border-radius: var(--r-r-lg);
  overflow: hidden;
}
@media (max-width: 880px) { .r-ai-grid { grid-template-columns: 1fr; } }

.r-ai-card {
  background: var(--r-night-1);
  padding: 40px 40px 44px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  align-items: start;
  position: relative;
  transition: background var(--r-t);
}
.r-ai-card:hover { background: var(--r-night-2); }

/* corner sparkle */
.r-ai-card::after {
  content: '';
  position: absolute;
  top: 16px; right: 16px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--r-accent);
  opacity: 0;
  transition: opacity var(--r-t);
  box-shadow: 0 0 10px var(--r-accent);
}
.r-ai-card:hover::after { opacity: 1; }

.r-ai-icon {
  width: 64px; height: 64px;
  border: 1px solid rgba(0, 212, 170, 0.25);
  background: rgba(0, 212, 170, 0.05);
  border-radius: var(--r-r-md);
  display: grid;
  place-items: center;
  color: var(--r-accent);
}
.r-ai-icon svg { width: 30px; height: 30px; }

.r-ai-body { display: flex; flex-direction: column; gap: 10px; }
.r-ai-body h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--r-cream-on-night);
  line-height: 1.15;
}
.r-ai-body h3 em {
  font-family: var(--r-font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--r-accent);
}
.r-ai-body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--r-cream-on-night-2);
}
.r-ai-body .r-ai-meta {
  font-family: var(--r-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--r-cream-on-night-3);
  margin-top: 4px;
}
.r-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--r-line);
  border: 1px solid var(--r-line);
  border-radius: var(--r-r-md);
  overflow: hidden;
}
.r-module {
  background: var(--r-bone);
  padding: 28px 24px 32px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
  transition: background var(--r-t);
}
.r-module:hover { background: var(--r-paper); }
.r-module .ic {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--r-ink);
}
.r-module .ic svg { width: 100%; height: 100%; }
.r-module h4 {
  font-size: 17px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--r-ink);
}
.r-module p {
  font-size: 14px; line-height: 1.5;
  color: var(--r-ink-2);
}
.r-section.alt .r-module { background: var(--r-bone-2); }
.r-section.alt .r-module:hover { background: var(--r-paper); }
@media (max-width: 960px) { .r-modules { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .r-modules { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING — editorial table-card hybrid
   ============================================================ */
.r-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.r-plan {
  background: var(--r-paper);
  border: 1px solid var(--r-line);
  border-radius: var(--r-r-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  gap: 18px;
}
.r-plan.feat {
  background: var(--r-night-0);
  color: var(--r-cream-on-night);
  border-color: var(--r-night-0);
}
.r-plan-tag {
  font-family: var(--r-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--r-ink-3);
}
.r-plan.feat .r-plan-tag { color: var(--r-accent); }
.r-plan-name {
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.015em;
}
.r-plan-price {
  display: baseline;
  font-family: var(--r-font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.r-plan-price small {
  font-family: var(--r-font-sans);
  font-style: normal;
  font-size: 14px;
  color: var(--r-ink-3);
  margin-left: 6px;
}
.r-plan.feat .r-plan-price small { color: var(--r-cream-on-night-3); }
.r-plan-list { display: flex; flex-direction: column; gap: 10px; margin: 8px 0 6px; }
.r-plan-list li {
  font-size: 14px; line-height: 1.5;
  display: flex; gap: 10px;
  align-items: flex-start;
}
.r-plan-list li::before {
  content: '+';
  font-family: var(--r-font-mono);
  color: var(--r-ink-3);
  font-size: 13px;
  margin-top: 1px;
}
.r-plan.feat .r-plan-list li { color: var(--r-cream-on-night-2); }
.r-plan.feat .r-plan-list li::before { color: var(--r-accent); }
.r-plan .r-btn { margin-top: auto; justify-content: center; }
@media (max-width: 960px) { .r-pricing { grid-template-columns: 1fr; } }

/* ============================================================
   CTA — full-bleed dark with editorial type
   ============================================================ */
.r-cta {
  text-align: center;
  padding: clamp(96px, 14vw, 200px) var(--r-page-pad-x);
  max-width: 980px;
  margin: 0 auto;
}
.r-cta h2 { margin-bottom: 22px; }
.r-cta p { color: var(--r-cream-on-night-2); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.r-cta .actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.r-footer { background: var(--r-night-0); color: var(--r-cream-on-night-2); padding: 64px 0 32px; }
.r-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--r-night-line);
}
.r-footer-brand img { height: 32px; margin-bottom: 14px; }
.r-footer-brand p { max-width: 280px; font-size: 14px; line-height: 1.5; color: var(--r-cream-on-night-3); }
.r-footer-col h5 {
  font-family: var(--r-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--r-cream-on-night);
  margin-bottom: 14px;
}
.r-footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--r-cream-on-night-2);
  transition: color var(--r-t);
}
.r-footer-col a:hover { color: var(--r-cream-on-night); }
.r-footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--r-cream-on-night-3);
}
@media (max-width: 760px) {
  .r-footer-grid { grid-template-columns: 1fr 1fr; }
  .r-footer-bottom { flex-direction: column; gap: 12px; }
}


/* ============================================================
   v5 COPY — new sections
   ============================================================ */

/* Strip de destaques — runs below hero, alt section */
.r-destaques {
  background: var(--r-bone-2);
  padding: 32px 0;
  border-bottom: 1px solid var(--r-line);
  border-top: 1px solid var(--r-line);
}
.r-destaques-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-family: var(--r-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--r-ink-2);
}
.r-destaques-inner span {
  display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.r-destaques-inner span::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--r-accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px rgba(0,212,170,0.5);
}
@media (max-width: 760px) {
  .r-destaques-inner { gap: 18px; font-size: 10.5px; }
}

/* Visão geral — single intro band */
.r-overview {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--r-bone);
  text-align: left;
}
.r-overview-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: end;
}
.r-overview-inner .left { display: flex; flex-direction: column; gap: 14px; }
.r-overview-inner h2 { line-height: 1.0; }
@media (max-width: 880px) {
  .r-overview-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* Conteúdo e marketing — 4-up card grid (compact) */
.r-content4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--r-line);
  border: 1px solid var(--r-line);
  border-radius: var(--r-r-md);
  overflow: hidden;
}
.r-content4-card {
  background: var(--r-bone);
  padding: 32px 26px 36px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background var(--r-t);
}
.r-content4-card:hover { background: var(--r-paper); }
.r-section.alt .r-content4-card { background: var(--r-bone-2); }
.r-section.alt .r-content4-card:hover { background: var(--r-paper); }
.r-content4-card .ic {
  width: 36px; height: 36px;
  color: var(--r-ink);
  margin-bottom: 6px;
}
.r-content4-card .ic svg { width: 100%; height: 100%; }
.r-content4-card h4 {
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em; color: var(--r-ink);
  line-height: 1.2;
}
.r-content4-card h4 em {
  font-family: var(--r-font-serif);
  font-style: italic;
  font-weight: 400;
}
.r-content4-card p {
  font-size: 14px; line-height: 1.55;
  color: var(--r-ink-2);
}
@media (max-width: 960px) { .r-content4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .r-content4 { grid-template-columns: 1fr; } }

/* WhatsApp section — dark, conversational mockup left, copy right */
.r-whats {
  background: var(--r-night-0);
  color: var(--r-cream-on-night);
  position: relative;
  overflow: hidden;
}
.r-whats::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(55% 50% at 18% 30%, rgba(0,212,170,0.10), transparent 60%);
  pointer-events: none;
}
.r-whats > .r-container { position: relative; }
.r-whats .r-eyebrow { color: var(--r-cream-on-night-2); }
.r-whats .r-h2 { color: var(--r-cream-on-night); }
.r-whats .r-lead { color: var(--r-cream-on-night-2); }
.r-whats-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 880px) {
  .r-whats-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* WhatsApp conversation mockup */
.r-whats-chat {
  max-width: 380px;
  margin: 0 auto;
  background: var(--r-night-1);
  border: 1px solid var(--r-night-line);
  border-radius: 18px;
  padding: 18px 16px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.r-whats-chat .head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--r-night-line);
  margin-bottom: 4px;
}
.r-whats-chat .head .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--r-accent), #0095a0);
  display: grid; place-items: center;
  color: var(--r-night-0);
}
.r-whats-chat .head .av svg { width: 18px; height: 18px; }
.r-whats-chat .head .meta-name {
  font-size: 14px; font-weight: 500;
  color: var(--r-cream-on-night);
}
.r-whats-chat .head .meta-sub {
  font-size: 11px;
  color: rgba(0,212,170,0.7);
  display: flex; align-items: center; gap: 5px;
}
.r-whats-chat .head .meta-sub::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--r-accent);
  border-radius: 50%;
}
.r-bubble {
  max-width: 80%;
  padding: 8px 12px 10px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
  position: relative;
}
.r-bubble.r-in {
  background: var(--r-night-2);
  color: var(--r-cream-on-night);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.r-bubble.r-out {
  background: rgba(0, 212, 170, 0.18);
  color: var(--r-cream-on-night);
  border: 1px solid rgba(0,212,170,0.25);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.r-bubble .time {
  font-size: 9.5px;
  color: rgba(245,243,240,0.45);
  margin-left: 8px;
  font-variant-numeric: tabular-nums;
}
.r-bubble.r-out .time { color: rgba(245,243,240,0.55); }
.r-bubble strong { color: var(--r-accent); font-weight: 500; }
.r-bubble.r-status {
  background: var(--r-night-2);
  border: 1px dashed var(--r-night-line);
  font-family: var(--r-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,243,240,0.6);
  align-self: center;
  border-radius: 999px;
  padding: 6px 14px;
}

/* Operação — 2 columns side-by-side */
.r-ops {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--r-line);
  border: 1px solid var(--r-line);
  border-radius: var(--r-r-lg);
  overflow: hidden;
}
.r-ops-card {
  background: var(--r-paper);
  padding: 44px 40px 48px;
  display: flex; flex-direction: column; gap: 14px;
}
.r-ops-card .eb {
  font-family: var(--r-font-mono);
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--r-ink-3);
}
.r-ops-card h3 {
  font-size: 28px; font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.1; color: var(--r-ink);
}
.r-ops-card h3 em { font-family: var(--r-font-serif); font-style: italic; font-weight: 400; }
.r-ops-card p { color: var(--r-ink-2); font-size: 15px; line-height: 1.55; }
.r-ops-card ul { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.r-ops-card li {
  display: flex; gap: 10px;
  font-size: 14px; color: var(--r-ink);
  align-items: flex-start;
}
.r-ops-card li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--r-accent);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
@media (max-width: 880px) { .r-ops { grid-template-columns: 1fr; } }

/* Pricing — single fixed card (replaces 3-tier) */
.r-price-fixed {
  background: var(--r-night-0);
  color: var(--r-cream-on-night);
  border-radius: var(--r-r-lg);
  padding: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.r-price-fixed::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,170,0.18), transparent 65%);
  pointer-events: none;
}
.r-price-fixed > * { position: relative; }
.r-price-fixed .eb {
  font-family: var(--r-font-mono);
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--r-accent);
  margin-bottom: 16px;
  display: block;
}
.r-price-fixed h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--r-cream-on-night);
  font-weight: 500;
  margin-bottom: 20px;
}
.r-price-fixed h2 em {
  font-family: var(--r-font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--r-accent);
}
.r-price-fixed p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--r-cream-on-night-2);
  margin-bottom: 28px;
}
.r-price-fixed ul {
  display: flex; flex-direction: column; gap: 12px;
}
.r-price-fixed li {
  display: flex; gap: 14px;
  align-items: flex-start;
  color: var(--r-cream-on-night);
  font-size: 15px;
}
.r-price-fixed li svg {
  width: 18px; height: 18px;
  color: var(--r-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.r-price-fixed li strong {
  display: block;
  font-weight: 500;
  color: var(--r-cream-on-night);
}
.r-price-fixed li span {
  display: block;
  font-size: 13.5px;
  color: var(--r-cream-on-night-3);
  margin-top: 2px;
}
.r-price-fixed-right {
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 20px;
  border-left: 1px solid var(--r-night-line);
  padding-left: 64px;
}
.r-price-fixed-right .num {
  font-family: var(--r-font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--r-cream-on-night);
}
.r-price-fixed-right .num small {
  font-family: var(--r-font-sans);
  font-style: normal;
  font-size: 16px;
  color: var(--r-cream-on-night-3);
  margin-left: 6px;
  letter-spacing: 0;
}
.r-price-fixed-right .note {
  font-family: var(--r-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--r-cream-on-night-3);
}
.r-price-fixed-right .micro {
  font-size: 13px;
  color: var(--r-cream-on-night-3);
}
@media (max-width: 880px) {
  .r-price-fixed { grid-template-columns: 1fr; gap: 36px; }
  .r-price-fixed-right { border-left: 0; border-top: 1px solid var(--r-night-line); padding-left: 0; padding-top: 36px; }
}

/* Para quem é — audience cards */
.r-quem {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.r-quem-card {
  background: var(--r-paper);
  border: 1px solid var(--r-line);
  border-radius: var(--r-r-lg);
  padding: 36px 32px 40px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color var(--r-t), transform var(--r-t);
}
.r-quem-card:hover { border-color: var(--r-ink); transform: translateY(-3px); }
.r-quem-card .tag {
  font-family: var(--r-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--r-accent);
}
.r-quem-card h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--r-ink);
}
.r-quem-card h3 em { font-family: var(--r-font-serif); font-style: italic; font-weight: 400; }
.r-quem-card p { font-size: 14.5px; line-height: 1.55; color: var(--r-ink-2); }
@media (max-width: 880px) { .r-quem { grid-template-columns: 1fr; } }

/* Migração — 4 step horizontal timeline */
.r-mig {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 16px;
  position: relative;
}
.r-mig::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: var(--r-line);
  z-index: 0;
}
.r-mig-step {
  padding: 0 24px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  z-index: 1;
}
.r-mig-step:first-child { padding-left: 0; }
.r-mig-step:last-child { padding-right: 0; }
.r-mig-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--r-paper);
  border: 1px solid var(--r-line);
  display: grid; place-items: center;
  font-family: var(--r-font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--r-ink);
  letter-spacing: -0.02em;
}
.r-mig-step.r-done .r-mig-num {
  background: var(--r-accent);
  border-color: var(--r-accent);
  color: var(--r-night-0);
}
.r-mig-step h4 {
  font-size: 17px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--r-ink);
}
.r-mig-step p { font-size: 14px; line-height: 1.5; color: var(--r-ink-2); }
@media (max-width: 880px) {
  .r-mig { grid-template-columns: 1fr; gap: 24px; }
  .r-mig::before { display: none; }
}

/* Marcas — placeholder strip (no fake logos) */
.r-marcas-note {
  text-align: center;
  margin: 0 auto 28px;
  max-width: 560px;
  font-size: 15px;
  color: var(--r-ink-2);
}
.r-marcas {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.r-marcas-slot {
  height: 80px;
  background: var(--r-paper);
  border: 1px dashed var(--r-line);
  border-radius: var(--r-r-md);
  display: grid; place-items: center;
  font-family: var(--r-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--r-ink-3);
}
@media (max-width: 760px) { .r-marcas { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   Try-on mockup — REAL product flow:
   left = catalog photo (peça no modelo)
   right = AI result (cliente vestindo)
   ============================================================ */
.r-tryon-stack {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  background: var(--r-paper);
  border: 1px solid var(--r-line);
  border-radius: var(--r-r-lg);
  padding: 14px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.25);
  overflow: visible;
}
.r-tryon-pair {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-radius: var(--r-r-md);
  overflow: hidden;
  aspect-ratio: 5/4;
}
.r-tryon-pane {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--r-night-1);
}
.r-tryon-pane.r-catalog {
  background: repeating-linear-gradient(45deg, var(--r-bone-2) 0 14px, var(--r-bone) 14px 28px);
}
.r-tryon-pane.r-result {
  background: repeating-linear-gradient(-45deg, rgba(0,212,170,0.08) 0 14px, rgba(0,212,170,0.02) 14px 28px);
}
.r-tryon-placeholder {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--r-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--r-ink-3);
  z-index: 1;
}
.r-tryon-tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 6px 12px;
  background: rgba(245,243,240,0.92);
  color: var(--r-ink);
  font-family: var(--r-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--r-r-pill);
  z-index: 2;
}
.r-tryon-pane.r-result .r-tryon-tag {
  background: rgba(0,212,170,0.95);
  color: var(--r-night-0);
}
.r-tryon-pane.r-result .r-tryon-tag::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--r-night-0);
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: 1px;
}

/* meta strip at the bottom of the card */
.r-tryon-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 6px 4px;
  margin-top: 4px;
}
.r-tryon-meta .left {
  display: flex; flex-direction: column; gap: 3px; min-width: 0;
}
.r-tryon-meta .product {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--r-ink);
  letter-spacing: -0.005em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.r-tryon-meta .ready {
  font-size: 11px;
  font-family: var(--r-font-mono);
  color: var(--r-ink-3);
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 6px;
}
.r-tryon-meta .ready::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--r-accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--r-accent);
}
.r-tryon-stars {
  display: flex; gap: 3px;
  flex-shrink: 0;
}
.r-tryon-stars svg {
  width: 16px; height: 16px;
  color: var(--r-amber);
}
.r-tryon-stars svg.dim { color: var(--r-line); fill: var(--r-line); }

/* floating "Nova foto" pill — anchored bottom-right */
.r-tryon-action {
  position: absolute;
  bottom: -16px; right: 24px;
  background: var(--r-ink);
  color: var(--r-bone);
  padding: 10px 18px 10px 14px;
  border-radius: var(--r-r-pill);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 16px 28px rgba(0,0,0,0.25);
  z-index: 4;
}
.r-tryon-action svg { width: 14px; height: 14px; }

@media (max-width: 600px) {
  .r-tryon-pair { aspect-ratio: 1/1; }
  .r-tryon-meta { flex-wrap: wrap; }
}

/* Chat IA mockup — for "Chat IA" feature */
.r-chatai {
  background: linear-gradient(160deg, var(--r-night-0), #1a1714);
  border-radius: var(--r-r-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  border: 1px solid var(--r-night-line);
  position: relative;
  overflow: hidden;
}
.r-chatai::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 50% at 70% 20%, rgba(0,212,170,0.10), transparent 65%);
  pointer-events: none;
}
.r-chatai > * { position: relative; }
.r-chatai-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--r-night-line);
  margin-bottom: 6px;
}
.r-chatai-head .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--r-accent), #f5b676);
  display: grid; place-items: center;
}
.r-chatai-head .av svg { width: 20px; height: 20px; color: var(--r-night-0); }
.r-chatai-head .ttl {
  font-size: 14px; font-weight: 500;
  color: var(--r-cream-on-night);
}
.r-chatai-head .badge {
  margin-left: auto;
  font-family: var(--r-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--r-accent);
  padding: 4px 10px;
  border: 1px solid rgba(0,212,170,0.3);
  border-radius: var(--r-r-pill);
}
.r-chatai-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--r-cream-on-night);
}
.r-chatai-msg.user {
  background: var(--r-night-2);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.r-chatai-msg.bot {
  background: rgba(0,212,170,0.10);
  border: 1px solid rgba(0,212,170,0.18);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.r-chatai-msg strong { color: var(--r-accent); font-weight: 500; }
.r-chatai-suggest {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}
.r-chatai-suggest a {
  font-size: 11.5px;
  font-family: var(--r-font-mono);
  letter-spacing: 0.08em;
  padding: 6px 12px;
  background: rgba(245,243,240,0.05);
  border: 1px solid rgba(245,243,240,0.12);
  border-radius: var(--r-r-pill);
  color: var(--r-cream-on-night-2);
  cursor: pointer;
  transition: var(--r-t);
}
.r-chatai-suggest a:hover { background: rgba(0,212,170,0.12); color: var(--r-accent); border-color: rgba(0,212,170,0.3); }
