/* ═══════════════════════════════════════════════════════════
   RESTAURANTE.CSS — Complexo 34 · página /restaurante/
   Parte 1: HERÓI ANIMADO (contador + revelação + selo).
   Reaproveita /style.css (navbar, rodapé, menu mobile, reveal).
═══════════════════════════════════════════════════════════ */

/* ── Tokens da página (preto + laranja) ── */
:root {
  --r-ink:        #050505;
  --r-ember:      #160b04;
  --r-orange:     #F9640B;
  --r-orange-2:   #ff7a24;
  --r-orange-glow:rgba(249,100,11,0.45);
  --r-cream:      #f4ede4;
  --r-cream-70:   rgba(244,237,228,0.70);
  --r-line:       rgba(255,255,255,0.14);
  --r-fd:         'Fraunces', Georgia, serif;
  --r-fu:         'Barlow', sans-serif;
}

body { background: var(--r-ink); }

/* ═══════════════════════════════ PRELOADER ═══════════════════════════════ */
.rload {
  position: fixed; inset: 0; z-index: 12000;
  display: none;                 /* só aparece quando há JS + is-loading */
  align-items: stretch;
  background: var(--r-ink);
  opacity: 1;
  transition: opacity .6s ease;
}
.js.is-loading .rload { display: flex; }
.rload.is-done { opacity: 0; pointer-events: none; }

.rload__panels { position: absolute; inset: 0; display: flex; }
.rload__panel {
  flex: 1 1 0;
  background-size: cover;
  background-position: center;
  clip-path: inset(0 100% 0 0);  /* começa escondido, JS revela */
  will-change: clip-path;
}
.rload__panel::after {           /* escurece para leitura do número */
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,.35), rgba(5,5,5,.72));
}
.rload__veil {
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 40%, transparent 40%, rgba(5,5,5,.55) 100%);
}
.rload__count {
  position: absolute; left: 48px; bottom: 40px;
  display: flex; align-items: baseline; gap: 6px;
  color: #fff;
}
.rload__num {
  font-family: var(--r-fd); font-weight: 600;
  font-size: clamp(64px, 12vw, 128px); line-height: .82;
  letter-spacing: -0.02em;
}
.rload__pct {
  font-family: var(--r-fu); font-weight: 600;
  font-size: 20px; color: var(--r-orange-2);
}
.rload__label {
  position: absolute; left: 50px; bottom: 24px;
  font-family: var(--r-fu); font-size: 10px; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--r-cream-70);
}

/* ═══════════════════════════════ HERÓI ═══════════════════════════════ */
.rhero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--r-ink);
  isolation: isolate;
}

.rhero__slides {
  position: absolute; inset: 0; z-index: -3; overflow: hidden;
  transform: scale(1.04);
}
.js.is-loading .rhero__slides { transform: scale(1.12); }
.rhero.is-revealed .rhero__slides {
  transform: scale(1.04);
  transition: transform 1.4s cubic-bezier(.22,.61,.36,1);
}
.rhero__slide {
  position: absolute; inset: 0;
  background-position: center 45%;
  background-size: cover; background-repeat: no-repeat;
  opacity: 0; transition: opacity 1.2s ease;
}
.rhero__slide.is-active { opacity: 1; }
.rhero__slide::after { content: ''; position: absolute; inset: 0; background: rgba(5,5,5,0.10); }

.rhero__veil {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.86) 0%, rgba(5,5,5,0.55) 30%, rgba(5,5,5,0.12) 60%, rgba(5,5,5,0) 82%),
    linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.10) 26%, rgba(5,5,5,0.22) 55%, rgba(5,5,5,0.92) 100%);
}
@media (max-width: 760px) {
  .rhero__veil {
    background:
      linear-gradient(90deg, rgba(5,5,5,0.80) 0%, rgba(5,5,5,0.45) 45%, rgba(5,5,5,0.12) 85%),
      linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.20) 24%, rgba(5,5,5,0.40) 55%, rgba(5,5,5,0.94) 100%);
  }
}
.rhero__glow {
  position: absolute; z-index: -1; pointer-events: none;
  left: -12%; bottom: -22%;
  width: 62vw; height: 62vw; max-width: 820px; max-height: 820px;
  background: radial-gradient(circle, var(--r-orange-glow) 0%, transparent 62%);
  opacity: .5; filter: blur(8px);
}

.rhero__wrap {
  position: relative; width: 100%;
  max-width: 1240px; margin: 0 auto;
  padding: 128px 48px 92px;
}

/* Conteúdo do herói entra APÓS o preloader (classe is-revealed via JS).
   Enquanto carrega, fica invisível. Sem JS, aparece normal (progressive). */
.js.is-loading .rhero__eyebrow,
.js.is-loading .rhero__title,
.js.is-loading .rhero__meta,
.js.is-loading .rhero__lede,
.js.is-loading .rhero__cta,
.js.is-loading .rseal {
  opacity: 0; transform: translateY(22px);
}
.rhero.is-revealed .rhero__eyebrow,
.rhero.is-revealed .rhero__title,
.rhero.is-revealed .rhero__meta,
.rhero.is-revealed .rhero__lede,
.rhero.is-revealed .rhero__cta,
.rhero.is-revealed .rseal {
  opacity: 0; transform: translateY(22px);
  animation: rheroIn .9s cubic-bezier(.22,.61,.36,1) forwards;
}
.rhero.is-revealed .rhero__eyebrow { animation-delay: .04s; }
.rhero.is-revealed .rhero__title   { animation-delay: .12s; }
.rhero.is-revealed .rhero__meta    { animation-delay: .28s; }
.rhero.is-revealed .rhero__lede    { animation-delay: .38s; }
.rhero.is-revealed .rhero__cta     { animation-delay: .48s; }
.rhero.is-revealed .rseal          { animation-delay: .62s; }
@keyframes rheroIn { to { opacity: 1; transform: translateY(0); } }

/* Sobrescrito */
.rhero__eyebrow {
  font-family: var(--r-fu); font-size: 11px; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--r-orange-2); margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
}
.rhero__eyebrow::before {
  content: ''; width: 34px; height: 1px;
  background: var(--r-orange); box-shadow: 0 0 10px var(--r-orange-glow);
}

/* Wordmark (H1) */
.rhero__title { margin: 0; line-height: .9; }
.rhero__title-main {
  display: block; font-family: var(--r-fd);
  font-optical-sizing: auto; font-weight: 600;
  font-size: clamp(3.4rem, 12vw, 10rem);
  letter-spacing: -0.022em; color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,.45);
}
.rhero__title-main .n34 { color: var(--r-orange-2); }
.rhero__title-sub {
  display: block; font-family: var(--r-fd);
  font-style: italic; font-weight: 400;
  font-size: clamp(1.35rem, 3.6vw, 2.7rem);
  color: var(--r-orange-2); margin-top: .18em; margin-left: .04em;
}

/* Meta com barras */
.rhero__meta {
  margin-top: 26px; font-family: var(--r-fu);
  font-size: clamp(11px, 1.15vw, 13px); font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--r-cream-70);
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
}
.rhero__meta .sep { color: var(--r-orange); opacity: .8; }

/* Parágrafo com filete */
.rhero__lede {
  margin-top: 30px; max-width: 46ch; padding-left: 20px;
  border-left: 1px solid var(--r-orange);
  font-family: var(--r-fu);
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 400; line-height: 1.72; color: var(--r-cream);
}

/* CTAs */
.rhero__cta { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; }
.rbtn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--r-fu); font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  padding: 16px 30px; border-radius: 2px;
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.rbtn--primary { background: var(--r-orange); color: #0a0500; box-shadow: 0 10px 34px -12px var(--r-orange-glow); }
.rbtn--primary:hover { transform: translateY(-2px); background: var(--r-orange-2); box-shadow: 0 16px 40px -12px var(--r-orange-glow); }
.rbtn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.34); }
.rbtn--ghost:hover { transform: translateY(-2px); border-color: #fff; background: rgba(255,255,255,0.06); }
.rhero__link {
  font-family: var(--r-fu); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--r-cream-70); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .3s ease, gap .3s ease;
}
.rhero__link:hover { color: #fff; gap: 12px; }

/* ── SELO ONDULADO (canto inferior direito) ── */
.rseal {
  position: absolute; right: 48px; bottom: 40px;
  width: 132px; height: 132px;
  display: grid; place-items: center;
  text-decoration: none; color: #fff;
}
.rseal__ring {
  position: absolute; inset: 0; width: 100%; height: 100%;
  animation: rsealSpin 24s linear infinite;
}
.rseal__ring text {
  font-family: var(--r-fu); font-size: 10.5px; font-weight: 700;
  letter-spacing: .22em; fill: var(--r-cream-70);
  text-transform: uppercase;
}
.rseal__scallop { fill: none; stroke: var(--r-orange); stroke-width: 1.4; }
.rseal__arrow {
  position: relative; width: 26px; height: 26px;
  color: var(--r-orange-2);
  transition: transform .3s ease, color .3s ease;
}
.rseal:hover .rseal__arrow { transform: translateY(4px); color: #fff; }
.rseal:hover .rseal__scallop { stroke: var(--r-orange-2); }
@keyframes rsealSpin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════ MOBILE ═══════════════════════════════ */
@media (max-width: 760px) {
  .rhero__wrap { padding: 112px 24px 84px; }
  .rhero__lede { max-width: none; }
  .rhero__cta { gap: 12px; }
  .rbtn { padding: 15px 24px; flex: 1 1 auto; justify-content: center; }
  .rhero__link { width: 100%; justify-content: center; margin-top: 4px; }
  .rseal { display: none; }
  .rload__count { left: 24px; bottom: 34px; }
  .rload__label { left: 26px; bottom: 20px; }
}

/* ═══════════════════════════════ A11Y ═══════════════════════════════ */
.rbtn:focus-visible, .rhero__link:focus-visible, .rseal:focus-visible {
  outline: 2px solid var(--r-orange-2); outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .rhero.is-revealed .rhero__eyebrow,
  .rhero.is-revealed .rhero__title,
  .rhero.is-revealed .rhero__meta,
  .rhero.is-revealed .rhero__lede,
  .rhero.is-revealed .rhero__cta,
  .rhero.is-revealed .rseal { animation: none; opacity: 1; transform: none; }
  .rseal__ring { animation: none; }
  .rhero__slides, .rhero.is-revealed .rhero__slides { transform: none; transition: none; }
  .rhero__slide { transition: none; }
}

/* ═══════════════════════════════ CARDÁPIO (Parte 2) ═══════════════════════════════ */
.rmenu {
  position: relative;
  background: #070707;
  border-top: 1px solid var(--r-line);
  padding: 96px 0 104px;
  scroll-margin-top: 76px;
}
.rmenu__wrap { max-width: 900px; margin: 0 auto; padding: 0 32px; }

.rmenu__head { text-align: center; margin-bottom: 52px; }
.rmenu__eyebrow {
  font-family: var(--r-fu); font-size: 11px; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase; color: var(--r-orange-2);
  margin: 0 0 14px;
}
.rmenu__title {
  font-family: var(--r-fd); font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 4.6rem); line-height: .95;
  color: #fff; margin: 0 0 30px; letter-spacing: -.02em;
}

/* serviços (almoço x jantar) */
.rmenu__services {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  max-width: 640px; margin: 0 auto 22px; text-align: left;
}
.rsvc {
  border: 1px solid var(--r-line); border-radius: 4px;
  padding: 18px 20px; background: rgba(255,255,255,.02);
  display: flex; flex-direction: column; gap: 3px;
}
.rsvc--alacarte.is-active {
  border-color: var(--r-orange);
  background: linear-gradient(180deg, rgba(249,100,11,.10), rgba(249,100,11,.02));
  box-shadow: 0 0 0 3px rgba(249,100,11,.06);
}
.rsvc__label { font-family: var(--r-fu); font-size: 10px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--r-orange-2); }
.rsvc__name  { font-family: var(--r-fd); font-size: 1.28rem; color: #fff; font-weight: 600; }
.rsvc__time  { font-family: var(--r-fu); font-size: 12px; color: var(--r-cream-70); letter-spacing: .03em; }

.rmenu__note {
  font-family: var(--r-fu); font-size: 14px; line-height: 1.6;
  color: var(--r-cream); max-width: 560px; margin: 0 auto 26px;
}
.rmenu__note strong { color: #fff; font-weight: 600; }

/* nav de categorias */
.rmenu__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.rmenu__nav a {
  font-family: var(--r-fu); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  color: var(--r-cream-70); border: 1px solid var(--r-line);
  padding: 9px 16px; border-radius: 100px; transition: color .25s, border-color .25s, background .25s;
}
.rmenu__nav a:hover { color: #fff; border-color: var(--r-orange); background: rgba(249,100,11,.08); }

/* categorias */
.rmenu__cat { padding-top: 26px; margin-top: 34px; scroll-margin-top: 90px; }
.rmenu__cat + .rmenu__cat { border-top: 1px solid var(--r-line); }
.rmenu__cat-title {
  font-family: var(--r-fd); font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.4rem); color: #fff; margin: 0 0 6px;
  display: flex; align-items: center; gap: 14px; letter-spacing: -.01em;
}
.rmenu__cat-title::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, var(--r-orange), transparent); opacity: .55; }
.rmenu__cat-note {
  font-family: var(--r-fu); font-size: 12px; letter-spacing: .06em;
  color: var(--r-orange-2); text-transform: uppercase; margin: 0 0 24px; font-weight: 600;
}

/* item */
.rmenu__list { display: flex; flex-direction: column; gap: 22px; }
.ritem__head { display: flex; align-items: baseline; gap: 10px; }
.ritem__name { font-family: var(--r-fu); font-weight: 600; font-size: 1.02rem; color: #fff; letter-spacing: .01em; }
.ritem__dots { flex: 1; border-bottom: 1px dotted rgba(255,255,255,.22); transform: translateY(-3px); }
.ritem__price { font-family: var(--r-fu); font-weight: 700; font-size: 1rem; color: var(--r-cream); white-space: nowrap; }
.ritem__desc { font-family: var(--r-fu); font-size: 14px; line-height: 1.55; color: var(--r-cream-70); margin: 5px 0 0; max-width: 64ch; }

/* adicionais */
.radd { margin-top: 28px; border: 1px solid var(--r-line); border-radius: 6px; padding: 20px 22px; background: rgba(255,255,255,.02); }
.radd__title { font-family: var(--r-fu); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--r-orange-2); margin-bottom: 14px; }
.radd__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; }
.radd__row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; font-family: var(--r-fu); font-size: 14px; color: var(--r-cream); border-bottom: 1px dotted rgba(255,255,255,.12); padding-bottom: 6px; }
.radd__row span:last-child { color: var(--r-cream-70); font-weight: 600; white-space: nowrap; }

/* marmitas fit */
.rmarmita {
  margin-top: 46px; scroll-margin-top: 90px;
  border: 1px solid var(--r-orange); border-radius: 8px;
  padding: 34px 30px; text-align: center;
  background: linear-gradient(180deg, rgba(249,100,11,.12), rgba(249,100,11,.02));
}
.rmarmita__tag { font-family: var(--r-fu); font-size: 10px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--r-orange-2); margin-bottom: 10px; }
.rmarmita__title { font-family: var(--r-fd); font-weight: 600; font-size: clamp(1.7rem, 4.5vw, 2.4rem); color: #fff; margin: 0 0 6px; }
.rmarmita__sub { font-family: var(--r-fu); font-size: 15px; color: var(--r-cream); margin: 0 0 18px; }
.rmarmita__facts { list-style: none; padding: 0; margin: 0 auto 22px; max-width: 520px; display: flex; flex-direction: column; gap: 9px; text-align: left; }
.rmarmita__facts li { font-family: var(--r-fu); font-size: 14px; color: var(--r-cream); padding-left: 22px; position: relative; line-height: 1.5; }
.rmarmita__facts li::before { content: ''; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--r-orange); }

.rmenu__fineprint { margin-top: 42px; text-align: center; font-family: var(--r-fu); font-size: 12px; color: rgba(244,237,228,.45); letter-spacing: .02em; }

@media (max-width: 620px) {
  .rmenu { padding: 72px 0 84px; }
  .rmenu__wrap { padding: 0 22px; }
  .rmenu__services { grid-template-columns: 1fr; }
  .radd__grid { grid-template-columns: 1fr; }
}

/* ── cardápio recolhível: ações + colapso ── */
.rmenu__head { margin-bottom: 0; }
.rmenu__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.rmenu__actions .rbtn { min-width: 210px; justify-content: center; }
.rbtn--wa svg { width: 16px; height: 16px; fill: #25D366; }
.rmenu__full { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .6s ease, opacity .45s ease; }
.rmenu__full.is-open { max-height: 9000px; opacity: 1; }
.rmenu__full-inner { padding-top: 46px; }
.rmenu__full .rmenu__nav { margin-bottom: 6px; }
.rmenu__full .rmenu__cat:first-of-type { margin-top: 26px; }
@media (prefers-reduced-motion: reduce) { .rmenu__full { transition: opacity .2s ease; } }
@media (max-width: 620px) { .rmenu__actions .rbtn { width: 100%; } }

/* ═══════════════════════════════════════════════════════════
   GALERIA — carrossel 3D (coverflow) com auto-play + lightbox
═══════════════════════════════════════════════════════════ */
.rgal { background: var(--r-ink); padding: clamp(64px, 8vw, 110px) 20px; overflow: hidden; }
.rgal__wrap { max-width: 1120px; margin: 0 auto; }
.rgal__head { text-align: center; margin-bottom: clamp(36px, 5vw, 60px); }
.rgal__eyebrow {
  font-family: var(--r-fu); font-size: 11px; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase; color: var(--r-orange-2); margin: 0 0 14px;
}
.rgal__title { font-family: var(--r-fd); font-weight: 600; font-size: clamp(38px, 7vw, 68px); line-height: 1; margin: 0; color: var(--r-cream); }

.rgal__viewport { position: relative; }
.rgal__stage { position: relative; height: clamp(250px, 46vw, 440px); perspective: 1500px; }
.rgal__slide {
  position: absolute; top: 50%; left: 50%; width: clamp(230px, 40vw, 380px); aspect-ratio: 3 / 2;
  margin: 0; padding: 0; border: 0; border-radius: 14px; overflow: hidden; background: var(--r-ember); cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform .85s cubic-bezier(.22,.61,.36,1), opacity .7s ease, box-shadow .6s ease;
  will-change: transform, opacity;
}
.rgal__slide img { width: 100%; height: 100%; object-fit: cover; display: block; -webkit-user-drag: none; }
.rgal__slide.is-active { box-shadow: 0 30px 60px -20px rgba(0,0,0,.85), 0 0 0 1px var(--r-orange-glow); }
.rgal__zoom {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(5,5,5,.55); color: var(--r-cream);
  opacity: 0; transform: scale(.9); transition: opacity .3s ease, transform .3s ease, background .2s ease; pointer-events: none;
}
.rgal__slide.is-active .rgal__zoom { opacity: 1; transform: scale(1); }
.rgal__slide.is-active:hover .rgal__zoom { background: var(--r-orange); color: #0a0500; }
.rgal__zoom svg { width: 16px; height: 16px; }

.rgal__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; z-index: 20;
  display: grid; place-items: center; background: rgba(5,5,5,.5); border: 1px solid var(--r-line); color: var(--r-cream);
  cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.rgal__arrow:hover { background: var(--r-orange); border-color: var(--r-orange); color: #0a0500; }
.rgal__arrow:focus-visible { outline: 2px solid var(--r-orange-2); outline-offset: 3px; }
.rgal__arrow svg { width: 22px; height: 22px; }
.rgal__arrow--prev { left: 0; }
.rgal__arrow--next { right: 0; }

.rgal__lb {
  position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center;
  background: rgba(3,3,3,.94); padding: clamp(16px, 4vw, 48px);
}
.rgal__lb.is-open { display: flex; }
.rgal__lb-stage { position: relative; max-width: 1200px; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.rgal__lb-img { max-width: 100%; max-height: 80vh; border-radius: 10px; object-fit: contain; box-shadow: 0 40px 80px -30px rgba(0,0,0,.9); }
.rgal__lb-count { font-family: var(--r-fu); font-size: 13px; color: var(--r-cream-70); font-variant-numeric: tabular-nums; }
.rgal__lb-btn {
  position: absolute; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(244,237,228,.1); border: 0; color: var(--r-cream); cursor: pointer; transition: background .2s ease, color .2s ease;
}
.rgal__lb-btn:hover { background: var(--r-orange); color: #0a0500; }
.rgal__lb-btn:focus-visible { outline: 2px solid var(--r-orange-2); outline-offset: 3px; }
.rgal__lb-btn svg { width: 24px; height: 24px; }
.rgal__lb-prev { top: 50%; left: -8px; transform: translateY(-50%); }
.rgal__lb-next { top: 50%; right: -8px; transform: translateY(-50%); }
.rgal__lb-close { top: -6px; right: -6px; width: 44px; height: 44px; }

@media (max-width: 700px) { .rgal__arrow { display: none; } .rgal__lb-prev { left: 4px; } .rgal__lb-next { right: 4px; } }
@media (prefers-reduced-motion: reduce) { .rgal__slide { transition: opacity .3s ease; } }
/* ════════════════════════════════════════════════════════════
   CONTATO — WhatsApp · Ligar · Voltar ao Complexo 34
════════════════════════════════════════════════════════════ */
.rcta {
  position: relative;
  background: var(--r-ember);
  padding: clamp(64px, 8vw, 110px) 20px;
  overflow: hidden;
}
.rcta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 50% 0%, var(--r-orange-glow), transparent 62%);
  opacity: .5; pointer-events: none;
}
.rcta__wrap { position: relative; max-width: 860px; margin: 0 auto; text-align: center; }
.rcta__eyebrow {
  font-family: var(--r-fu); font-size: 11px; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase; color: var(--r-orange-2); margin: 0 0 14px;
}
.rcta__title {
  font-family: var(--r-fd); font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem); line-height: 1.02;
  letter-spacing: -.02em; color: var(--r-cream); margin: 0;
}
.rcta__lede {
  font-family: var(--r-fu); font-size: clamp(15px, 1.6vw, 17px); line-height: 1.6;
  color: var(--r-cream-70); max-width: 48ch; margin: 18px auto 0;
}
.rcta__actions {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 14px 18px; margin-top: 40px;
}
.rcta__ico { width: 20px; height: 20px; flex: none; }
.rcta__num { text-transform: none; letter-spacing: .02em; color: var(--r-orange-2); font-weight: 700; }
.rcta__back {
  font-family: var(--r-fu); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--r-cream-70); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 18px; transition: color .3s ease, gap .3s ease;
}
.rcta__back:hover { color: #fff; gap: 12px; }
.rcta__back:focus-visible { outline: 2px solid var(--r-orange-2); outline-offset: 3px; }
@media (max-width: 620px) {
  .rcta__actions .rbtn { width: 100%; justify-content: center; }
  .rcta__back { width: 100%; justify-content: center; }
}
/* ═════════════════════════════════════════════════════════════
   COMO CHEGAR — split (info + mapa emoldurado)
═════════════════════════════════════════════════════════════ */
.rmap {
  position: relative;
  background: var(--r-ink);
  border-top: 1px solid var(--r-line);
  padding: clamp(64px, 8vw, 110px) 20px;
  scroll-margin-top: 76px;
  overflow: hidden;
}
.rmap__wrap { max-width: 1120px; margin: 0 auto; }
.rmap__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}
.rmap__info { align-self: center; }
.rmap__eyebrow {
  font-family: var(--r-fu); font-size: 11px; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase; color: var(--r-orange-2); margin: 0 0 14px;
}
.rmap__title {
  font-family: var(--r-fd); font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -.02em;
  color: var(--r-cream); margin: 0 0 14px;
}
.rmap__sub {
  font-family: var(--r-fu); font-size: clamp(14px, 1.5vw, 16px); line-height: 1.55;
  color: var(--r-cream-70); margin: 0 0 30px; max-width: 42ch;
}
.rmap__pills { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 12px; }
.rmap__pill {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--r-fu); font-size: 14px; line-height: 1.45; color: var(--r-cream);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--r-line); border-radius: 3px;
  padding: 14px 16px;
}
.rmap__pill svg { width: 20px; height: 20px; flex: none; color: var(--r-orange-2); margin-top: 1px; }
.rmap__btn svg { width: 18px; height: 18px; }
.rmap__map {
  position: relative; min-height: 420px; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--r-line);
  box-shadow: 0 34px 70px -34px var(--r-orange-glow);
}
.rmap__map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block;
}
@media (max-width: 860px) {
  .rmap__grid { grid-template-columns: minmax(0, 1fr); }
  .rmap__info { order: 1; }
  .rmap__map { order: 2; min-height: 320px; }
}
@media (max-width: 620px) {
  .rmap__btn { width: 100%; box-sizing: border-box; justify-content: center; }
}
/* ═════════════════════════════════════════════════════════════
   AVALIAÇÕES — mural em movimento (marquee duplo, pausa no hover)
═════════════════════════════════════════════════════════════ */
.rrev {
  position: relative;
  background: linear-gradient(180deg, var(--r-ink), var(--r-ember));
  border-top: 1px solid var(--r-line);
  padding: clamp(64px, 8vw, 110px) 0;
  overflow: hidden;
}
.rrev__head { text-align: center; padding: 0 20px; margin-bottom: clamp(34px, 5vw, 56px); }
.rrev__eyebrow {
  font-family: var(--r-fu); font-size: 11px; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase; color: var(--r-orange-2); margin: 0 0 14px;
}
.rrev__title {
  font-family: var(--r-fd); font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; letter-spacing: -.02em;
  color: var(--r-cream); margin: 0 0 12px;
}
.rrev__sub {
  font-family: var(--r-fu); font-size: clamp(14px, 1.5vw, 16px); line-height: 1.55;
  color: var(--r-cream-70); margin: 0 auto; max-width: 46ch;
}

/* faixa deslizante */
.rrev__marquee {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.rrev__lane {
  display: flex; gap: 18px; width: max-content; padding: 4px 0;
  will-change: transform; user-select: none; -webkit-user-select: none;
  touch-action: pan-y; cursor: grab;
}
.rrev__lane--b { margin-top: 18px; }
.rrev__marquee { cursor: grab; }
.rrev__marquee.is-dragging { cursor: grabbing; }

/* card de depoimento */
.rrev__card {
  width: 340px; flex: none; box-sizing: border-box;
  display: flex; flex-direction: column; gap: 13px;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--r-line); border-radius: 10px;
  padding: 22px 22px 20px;
}
.rrev__stars { color: var(--r-orange-2); font-size: 15px; letter-spacing: 3px; line-height: 1; }
.rrev__quote {
  font-family: var(--r-fu); font-size: 15px; line-height: 1.5; color: var(--r-cream);
  margin: 0; quotes: "\201C" "\201D";
}
.rrev__quote::before { content: open-quote; color: var(--r-orange); margin-right: 1px; }
.rrev__quote::after  { content: close-quote; color: var(--r-orange); margin-left: 1px; }
.rrev__foot { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 4px; }
.rrev__ava {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: var(--r-fd); font-weight: 600; font-size: 17px; color: #1a0c02;
  background: linear-gradient(135deg, var(--r-orange), var(--r-orange-2));
}
.rrev__who { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rrev__name { font-family: var(--r-fu); font-weight: 700; font-size: 13.5px; color: #fff; letter-spacing: .01em; }
.rrev__meta { font-family: var(--r-fu); font-size: 11px; color: var(--r-cream-70); display: inline-flex; align-items: center; gap: 5px; }
.rrev__g { width: 12px; height: 12px; flex: none; }

/* CTA */
.rrev__cta { text-align: center; margin-top: clamp(34px, 5vw, 52px); padding: 0 20px; }
.rrev__btn { display: inline-flex; }
.rrev__btn .rrev__g { width: 16px; height: 16px; }

@media (max-width: 620px) {
  .rrev__card { width: 280px; }
  .rrev__btn { width: 100%; box-sizing: border-box; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .rrev__lane { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
  .rrev__lane--b { margin-top: 0; }
  .rrev__card--dup { display: none; }
  .rrev__marquee { -webkit-mask-image: none; mask-image: none; }
}