/* ============================================================
   Recriar Filmes — home-new.css
   Nova home: Instrument Serif + Inter, estilo editorial
   ============================================================ */

/* ── Variáveis ───────────────────────────────────────────── */
:root {
  --rf-cream:      #F5F0E8;
  --rf-cream-dark: #EDE7DB;
  --rf-dark:       #0E0E0E;
  --rf-dark-2:     #1A1A1A;
  --rf-mid:        #666666;
  --rf-gold:       #C9A96E;
  --rf-white:      #FFFFFF;
  --rf-serif:      'Instrument Serif', Georgia, serif;
  --rf-sans:       'Inter', -apple-system, sans-serif;
  --rf-ease:       cubic-bezier(0.76, 0, 0.24, 1);
}

/* ── Base ────────────────────────────────────────────────── */
html { background: var(--rf-cream); }
body { background: var(--rf-cream); }

.rf-home {
  background: var(--rf-cream);
  color: var(--rf-dark);
  font-family: var(--rf-sans);
  overflow-x: clip;
}

.rf-home *,
.rf-home *::before,
.rf-home *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.rf-home img,
.rf-home video {
  display: block;
  max-width: 100%;
}

.rf-home a {
  color: inherit;
  text-decoration: none;
}

/* ── Header ──────────────────────────────────────────────── */
.rf-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 900;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--rf-ease), background 0.4s var(--rf-ease);
}

.rf-header.is-scrolled {
  padding: 20px 48px;
  background: var(--rf-cream);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.rf-header-logo {
  position: relative;
  z-index: 1100;
  line-height: 0;
}

.rf-header-logo img {
  height: 32px;
  width: auto;
  transition: filter 0.3s;
}

/* Logo branca por padrão (header transparente sobre hero escuro) */
.rf-logo {
  filter: brightness(0) invert(1);
}

/* Header com fundo claro (scrolled ou is-light): inverte para preto */
.rf-header.is-scrolled .rf-logo,
.rf-header.is-light .rf-logo {
  filter: invert(1);
}

/* Menu overlay aberto: sempre volta branca */
.rf-header.menu-open .rf-logo {
  filter: brightness(0) invert(1);
}

/* Hamburger */
.rf-hamburger {
  position: relative;
  z-index: 1100;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.rf-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--rf-white);
  transition: background 0.3s, width 0.4s var(--rf-ease), transform 0.4s var(--rf-ease), opacity 0.3s;
}

/* Hamburger escuro quando header sobre fundo claro */
.rf-header.is-scrolled .rf-hamburger span,
.rf-header.is-light .rf-hamburger span {
  background: var(--rf-dark);
}

/* Quando menu aberto: escuro (overlay é claro) */
.rf-header.menu-open .rf-hamburger span {
  background: var(--rf-dark);
  transition: all 0.4s var(--rf-ease);
  transform-origin: right center;
}

.rf-hamburger span:nth-child(1) { width: 32px; }
.rf-hamburger span:nth-child(2) { width: 22px; }
.rf-hamburger span:nth-child(3) { width: 32px; }

.rf-hamburger.is-active span:nth-child(1) {
  width: 30px;
  transform: rotate(-45deg) translate(1px, -1px);
}
.rf-hamburger.is-active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.rf-hamburger.is-active span:nth-child(3) {
  width: 30px;
  transform: rotate(45deg) translate(1px, 1px);
}

/* Menu Full Screen */
.rf-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--rf-cream);
  display: flex;
  align-items: center;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--rf-ease);
}

.rf-menu-overlay.is-open {
  pointer-events: all;
  clip-path: inset(0 0 0% 0);
}

/* Botão fechar (X) */
.rf-menu-close {
  position: absolute;
  top: 32px;
  right: 48px;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(14,14,14,0.15);
  cursor: pointer;
  color: var(--rf-dark);
  transition: background 0.3s, border-color 0.3s;
}

.rf-menu-close:hover {
  background: var(--rf-dark);
  color: var(--rf-white);
  border-color: var(--rf-dark);
}

.rf-menu-inner {
  width: 100%;
  padding: 120px 80px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

.rf-menu-nav {
  list-style: none;
}

.rf-menu-nav li {
  overflow: hidden;
  line-height: 1;
  margin-bottom: 8px;
}

.rf-menu-nav a {
  display: inline-block;
  font-family: var(--rf-serif);
  font-style: italic;
  font-size: clamp(48px, 8vw, 100px);
  color: var(--rf-dark);
  opacity: 0.2;
  letter-spacing: -0.02em;
  line-height: 1.05;
  transform: translateY(100%);
  transition: transform 0.6s var(--rf-ease), opacity 0.3s;
}

.rf-menu-overlay.is-open .rf-menu-nav a {
  transform: translateY(0);
}

.rf-menu-overlay.is-open .rf-menu-nav li:nth-child(1) a { transition-delay: 0.1s; }
.rf-menu-overlay.is-open .rf-menu-nav li:nth-child(2) a { transition-delay: 0.15s; }
.rf-menu-overlay.is-open .rf-menu-nav li:nth-child(3) a { transition-delay: 0.2s; }
.rf-menu-overlay.is-open .rf-menu-nav li:nth-child(4) a { transition-delay: 0.25s; }
.rf-menu-overlay.is-open .rf-menu-nav li:nth-child(5) a { transition-delay: 0.3s; }
.rf-menu-overlay.is-open .rf-menu-nav li:nth-child(6) a { transition-delay: 0.35s; }

.rf-menu-nav a:hover {
  opacity: 1;
}

.rf-menu-side {
  color: rgba(14,14,14,0.45);
  font-family: var(--rf-sans);
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 2;
  opacity: 0;
  transition: opacity 0.5s 0.4s;
}

.rf-menu-overlay.is-open .rf-menu-side {
  opacity: 1;
}

.rf-menu-side a {
  color: rgba(14,14,14,0.45);
  display: block;
  transition: color 0.2s;
}
.rf-menu-side a:hover { color: var(--rf-dark); }

/* ── Hero ────────────────────────────────────────────────── */
.rf-hero {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.rf-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.rf-hero-bg video,
.rf-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

/* Iframe (Vimeo/YouTube): dimensiona pra sempre cobrir 100vw x 100dvh
   mantendo razao 16:9 — usa max() pra escolher o eixo dominante.
   O +2px elimina hairline gaps por arredondamento subpixel.
   Overflow do .rf-hero-bg corta o excesso. */
.rf-hero-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, calc(100dvh * 16 / 9)) !important;
  height: max(100dvh, calc(100vw * 9 / 16)) !important;
  max-width: none;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.rf-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.04) 35%,
    rgba(0,0,0,0.45) 75%,
    rgba(0,0,0,0.72) 100%
  );
}

/* Conteúdo hero — tudo empilhado no fundo ao centro */
.rf-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  overflow: hidden;
}

.rf-hero-tagline-label {
  display: block;
  font-family: var(--rf-sans);
  font-size: clamp(8px, 2vw, 18px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.rf-hero-tagline-title {
  font-family: var(--rf-serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 48px);
  color: var(--rf-white);
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

.rf-hero-display {
  display: block;
  font-family: var(--rf-serif);
  font-size: 22vw;
  color: var(--rf-white);
  letter-spacing: -0.01em;
  line-height: 0.82;
  font-weight: 400;
  text-align: center;
  width: 100%;
  padding: 0;
  white-space: nowrap;
  margin-top: 2px;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ── Intro ───────────────────────────────────────────────── */
.rf-intro {
  background: var(--rf-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rf-intro-copy {
  padding: 120px 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  width: 100%;
  max-width: 720px;
}

.rf-label {
  font-family: var(--rf-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rf-gold);
}

.rf-intro-title {
  font-family: var(--rf-serif);
  font-style: italic;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.15;
  color: var(--rf-dark);
  font-weight: 400;
  text-align: center;
}

.rf-intro-text {
  font-family: var(--rf-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--rf-mid);
  max-width: 480px;
  text-align: center;
}

.rf-intro-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--rf-sans);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rf-dark);
  border-bottom: 1px solid var(--rf-dark);
  padding-bottom: 2px;
  width: fit-content;
  transition: gap 0.3s, color 0.3s;
}
.rf-intro-link:hover { gap: 18px; color: var(--rf-gold); border-color: var(--rf-gold); }
.rf-intro-link svg { flex-shrink: 0; }

.rf-intro-image {
  position: relative;
  overflow: hidden;
  width: calc(100% - 80px);
  aspect-ratio: 16 / 9;
}

.rf-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Momentos ────────────────────────────────────────────── */
.rf-momentos {
  background: var(--rf-cream);
  border-top: 1px solid rgba(14,14,14,0.1);
}

.rf-momentos-header {
  padding: 100px 48px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.rf-momentos-header h2 {
  font-family: var(--rf-serif);
  font-style: italic;
  font-size: clamp(40px, 5.5vw, 80px);
  color: var(--rf-dark);
  font-weight: 400;
  text-align: center;
  line-height: 1.1;
}

.rf-momentos-header .rf-label {
  margin-bottom: 0;
}

.rf-momento-item {
  display: grid;
  grid-template-columns: 32% 68%;
  min-height: 50vh;
  position: sticky;
  top: 0;
  overflow: hidden;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  background: var(--rf-cream);
}

.rf-momento-meta {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  background: var(--rf-cream);
  position: relative;
  z-index: 1;
}

.rf-momento-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rf-momento-num {
  font-family: var(--rf-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rf-mid);
}

.rf-momento-nome {
  font-family: var(--rf-serif);
  font-size: clamp(26px, 2.8vw, 44px);
  color: var(--rf-dark);
  font-weight: 400;
  line-height: 1.1;
}

.rf-momento-local {
  font-family: var(--rf-sans);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--rf-mid);
  text-transform: uppercase;
}

.rf-momento-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--rf-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rf-dark);
  border-bottom: 1px solid var(--rf-dark);
  padding-bottom: 2px;
  width: fit-content;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  transition: gap 0.3s, color 0.3s, border-color 0.3s;
}
.rf-momento-cta:hover { gap: 14px; color: var(--rf-gold); border-color: var(--rf-gold); }

/* ── Lightbox de vídeo ───────────────────────────────────── */
.rf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rf-lightbox[hidden] { display: none; }

.rf-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,6,4,0.88);
  cursor: pointer;
}

.rf-lightbox-wrap {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 1100px;
  aspect-ratio: 16/9;
}

.rf-lightbox-media {
  width: 100%;
  height: 100%;
  background: #000;
}

.rf-lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--rf-white);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}

.rf-lightbox-close:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

@media (max-width: 640px) {
  .rf-lightbox-wrap { width: 96vw; }
  .rf-lightbox-close { top: -44px; }
}

.rf-momento-media {
  position: relative;
  overflow: hidden;
}

.rf-momento-media img,
.rf-momento-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--rf-ease);
}

.rf-momento-item:hover .rf-momento-media img,
.rf-momento-item:hover .rf-momento-media video {
  transform: scale(1.03);
}

/* Imagem secundária sobreposta — estilo Bellevoire */
.rf-momento-img-sec {
  position: absolute;
  bottom: 48px;
  left: 20%;
  width: 28%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  z-index: 2;
}

.rf-momento-img-sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--rf-ease);
}

.rf-momento-item:hover .rf-momento-img-sec img {
  transform: scale(1.03);
}

/* ── Entregas (Serviços) ─────────────────────────────────── */
.rf-entregas {
  background: var(--rf-cream);
  color: var(--rf-dark);
  padding: 100px 0;
}

.rf-entregas-header {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.rf-entregas-title {
  font-family: var(--rf-serif);
  font-size: clamp(36px, 4vw, 60px);
  color: var(--rf-dark);
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.rf-entregas-lista {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.rf-entrega-row {
  display: grid;
  grid-template-columns: 52px 1fr 1fr 320px;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(14,14,14,0.12);
}

.rf-entrega-row:last-child {
  border-bottom: 1px solid rgba(14,14,14,0.12);
}

.rf-entrega-num {
  font-family: var(--rf-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--rf-mid);
  align-self: flex-start;
  padding-top: 8px;
}

.rf-entrega-nome {
  font-family: var(--rf-serif);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  color: var(--rf-dark);
  line-height: 1.1;
}

.rf-entrega-desc {
  font-family: var(--rf-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--rf-mid);
}

.rf-entrega-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.rf-entrega-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--rf-ease);
}

.rf-entrega-row:hover .rf-entrega-media img {
  transform: scale(1.04);
}

/* ── Frase Grande ────────────────────────────────────────── */
.rf-frase {
  background: var(--rf-cream);
  padding: 140px 80px;
  text-align: center;
}

.rf-frase p {
  font-family: var(--rf-serif);
  font-style: italic;
  font-size: clamp(32px, 5vw, 80px);
  color: var(--rf-dark);
  line-height: 1.2;
  font-weight: 400;
  max-width: 1100px;
  margin: 0 auto;
}

.rf-frase cite {
  display: block;
  margin-top: 32px;
  font-family: var(--rf-sans);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rf-mid);
}

/* ── Fullscreen Foto com Frase ───────────────────────────── */
.rf-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rf-fullscreen-bg {
  position: absolute;
  inset: 0;
}

.rf-fullscreen-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rf-fullscreen-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.rf-fullscreen-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  max-width: 900px;
}

.rf-fullscreen-content p {
  font-family: var(--rf-serif);
  font-style: italic;
  font-size: clamp(36px, 5.5vw, 80px);
  color: var(--rf-white);
  line-height: 1.2;
  font-weight: 400;
}

/* ── Lugares ─────────────────────────────────────────────── */
.rf-lugares {
  background: var(--rf-cream);
  padding: 100px 0;
}

.rf-lugares-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.rf-lugares-topo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 80px;
}

.rf-lugares-title {
  font-family: var(--rf-serif);
  font-size: clamp(36px, 4vw, 60px);
  color: var(--rf-dark);
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.rf-lugares-corpo {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 80px;
  align-items: start;
}

.rf-lugares-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.rf-lugar-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s var(--rf-ease);
}

.rf-lugar-img.is-active {
  opacity: 1;
}

.rf-lugar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rf-lugares-list {
  list-style: none;
}

.rf-lugares-list li {
  border-bottom: 1px solid rgba(14,14,14,0.1);
  padding: 28px 0;
  cursor: pointer;
}

.rf-lugares-list li:first-child {
  border-top: 1px solid rgba(14,14,14,0.1);
}

.rf-lugar-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.rf-lugar-nome {
  font-family: var(--rf-serif);
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 400;
  color: var(--rf-dark);
  opacity: 0.18;
  transition: opacity 0.3s;
}

.rf-lugares-list li.is-active .rf-lugar-nome,
.rf-lugares-list li:hover .rf-lugar-nome {
  opacity: 1;
}

/* ── Foto Grande com Frase ───────────────────────────────── */
.rf-photo-phrase {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.rf-photo-phrase-bg {
  position: absolute;
  inset: 0;
}

.rf-photo-phrase-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rf-photo-phrase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 70%);
}

.rf-photo-phrase-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 700px;
}

.rf-photo-phrase-content p {
  font-family: var(--rf-serif);
  font-style: italic;
  font-size: clamp(40px, 5.5vw, 80px);
  color: var(--rf-white);
  line-height: 1.15;
  font-weight: 400;
}

/* ── Galeria / Mais Trabalho ─────────────────────────────── */
.rf-galeria {
  background: var(--rf-cream);
  padding: 120px 0 0;
  overflow: hidden;
}

/* Header centrado */
.rf-galeria-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 0 48px 72px;
  max-width: 640px;
  margin: 0 auto;
}

.rf-galeria-title {
  font-family: var(--rf-serif);
  font-size: clamp(32px, 4.5vw, 64px);
  color: var(--rf-dark);
  font-weight: 400;
  line-height: 1.15;
}

/* Segunda linha em itálico via <em> opcional — se título vier simples, tudo normal */
.rf-galeria-title em {
  font-style: italic;
}

.rf-galeria-subtitle {
  font-family: var(--rf-sans);
  font-size: 14px;
  color: var(--rf-mid);
  line-height: 1.75;
  max-width: 420px;
}

/* Link "Ver Portfólio" estilo editorial */
.rf-galeria-link {
  display: inline-block;
  font-family: var(--rf-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rf-dark);
  border-bottom: 1px solid var(--rf-dark);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}
.rf-galeria-link:hover { opacity: 0.5; }

/* ── Carrossel ───────────────────────────────────────────── */
.rf-carousel {
  position: relative;
  display: flex;
  align-items: center;
}

/* Setas */
.rf-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(14,14,14,0.2);
  background: var(--rf-cream);
  color: var(--rf-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, opacity 0.3s;
}

.rf-carousel-prev { left: 24px; }
.rf-carousel-next { right: 24px; }

.rf-carousel-btn:hover {
  background: var(--rf-dark);
  color: var(--rf-white);
  border-color: var(--rf-dark);
}

.rf-carousel-btn.is-disabled {
  opacity: 0.2;
  pointer-events: none;
}

/* Track wrapper — mascara o overflow */
.rf-carousel-wrap {
  width: 100%;
  overflow: hidden;
  /* Altura máxima = slide central */
  height: 68vh;
  display: flex;
  align-items: flex-end;
}

/* Track — flex linha que se move com transform */
.rf-carousel-track {
  display: flex;
  align-items: flex-end;
  height: 100%;
  will-change: transform;
}

/* Slide base — largura definida via JS para garantir 3 no desktop */
.rf-carousel-slide {
  flex: 0 0 auto;
  height: 52vh;
  overflow: hidden;
  transition: height 0.65s var(--rf-ease);
}

/* Slide central — mais alto */
.rf-carousel-slide.is-center {
  height: 68vh;
}

.rf-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--rf-ease);
  display: block;
}

.rf-carousel-slide:hover img {
  transform: scale(1.04);
}

/* ── Pacotes — grade 3 colunas ───────────────────────────── */
/* ── PACOTES ─────────────────────────────────────────────── */
.rf-pacotes {
  background: var(--rf-cream);
  padding: 120px 0 100px;
}

.rf-pacotes-intro {
  text-align: center;
  padding: 0 64px 72px;
  max-width: 680px;
  margin: 0 auto;
}

.rf-pacotes-intro .rf-label {
  justify-content: center;
  display: block;
  margin-bottom: 16px;
}

.rf-pacotes-titulo {
  font-family: var(--rf-serif);
  font-style: italic;
  font-size: clamp(32px, 3.5vw, 56px);
  color: var(--rf-dark);
  font-weight: 400;
  line-height: 1.15;
}

/* ── Grid ── */
.rf-pacotes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Card base (branco, cream) ── */
.rf-pacote-card {
  position: relative;
  flex: 1 1 320px;
  max-width: 420px;
  background: var(--rf-white);
  color: var(--rf-dark);
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rf-cream-dark);
  transition: box-shadow 0.5s var(--rf-ease);
}

.rf-pacote-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

/* ── Card destaque (dourado claro) ── */
.rf-pacote-card.is-destaque {
  background: #F5EBDA;
  color: var(--rf-dark);
  border-color: var(--rf-gold);
  box-shadow: 0 12px 44px rgba(201,169,110,0.12);
}

.rf-pacote-card.is-destaque:hover {
  box-shadow: 0 20px 60px rgba(201,169,110,0.2);
}

/* ── Badge (bandeirinha canto direito) ── */
.rf-pacote-badge {
  position: absolute;
  top: 0;
  left: 24px;
  font-family: var(--rf-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rf-white);
  background: var(--rf-gold);
  padding: 10px 14px 12px;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
  z-index: 2;
}

/* ── Topo (nome + descricao) ── */
.rf-pacote-topo {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--rf-cream-dark);
}

.rf-pacote-card.is-destaque .rf-pacote-topo {
  border-bottom-color: rgba(201,169,110,0.3);
}

.rf-pacote-nome {
  font-family: var(--rf-serif);
  font-style: italic;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
  color: var(--rf-dark);
  line-height: 1.2;
  margin-bottom: 10px;
}

.rf-pacote-desc {
  font-family: var(--rf-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--rf-mid);
}

/* ── Listas (Gravacao + Entrega) ── */
.rf-pacote-listas {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.rf-pacote-grupo-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--rf-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rf-dark);
  margin-bottom: 14px;
  opacity: 0.45;
}

.rf-pacote-grupo-label svg {
  flex-shrink: 0;
}

.rf-pacote-card.is-destaque .rf-pacote-grupo-label {
  color: var(--rf-dark);
  opacity: 0.45;
}

.rf-pacote-grupo ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rf-pacote-grupo li {
  font-family: var(--rf-sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--rf-dark);
  padding-left: 24px;
  position: relative;
  opacity: 0.7;
}

.rf-pacote-card.is-destaque .rf-pacote-grupo li {
  color: var(--rf-dark);
  opacity: 0.7;
}

.rf-pacote-grupo li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%23C9A96E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* checkmarks dourados em todos os cards */

/* ── CTA / Botao ── */
.rf-pacote-cta {
  margin-top: auto;
  padding-top: 8px;
}

@media (max-width: 768px) {
  .rf-pacote-cta { margin-top: 0; }
}

/* Card normal: botao cor do site, hover dourado */
.rf-pacote-card .rf-btn--pacote {
  display: block;
  text-align: center;
  width: 100%;
  padding: 16px 24px;
  background: var(--rf-cream);
  color: var(--rf-dark);
  border: 1.5px solid var(--rf-cream-dark);
  font-family: var(--rf-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.35s var(--rf-ease), color 0.35s var(--rf-ease), border-color 0.35s var(--rf-ease);
}

.rf-pacote-card .rf-btn--pacote:hover {
  background: var(--rf-gold);
  color: var(--rf-white);
  border-color: var(--rf-gold);
}

/* Card destaque: botao dourado, hover clareia */
.rf-pacote-card.is-destaque .rf-btn--pacote {
  background: var(--rf-gold);
  color: var(--rf-white);
  border-color: var(--rf-gold);
  font-weight: 700;
}

.rf-pacote-card.is-destaque .rf-btn--pacote:hover {
  background: #D4B87A;
  border-color: #D4B87A;
}

/* ── Responsivo ── */
@media (max-width: 1024px) {
  .rf-pacotes-grid { padding: 0 24px; gap: 16px; }
  .rf-pacote-card { padding: 36px 28px 36px; }
}

@media (max-width: 768px) {
  .rf-pacotes { padding: 80px 0 64px; }
  .rf-pacotes-intro { padding: 0 24px 48px; }
  .rf-pacotes-grid { padding: 0 20px; gap: 16px; }
  .rf-pacote-card { flex: 1 1 100%; max-width: 100%; }
  .rf-pacote-card.is-destaque { order: -1; }
}

/* ── Play overlay — momentos ─────────────────────────────── */
.rf-momento-media.has-video { cursor: pointer; }

.rf-momento-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 52px;
  height: 52px;
  background: rgba(201,169,110,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  color: var(--rf-dark);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.rf-momento-media.has-video:hover .rf-momento-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ── Play indicator — lugares ────────────────────────────── */
.rf-lugares-list li.has-video { cursor: pointer; }

.rf-lugar-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rf-gold);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.rf-lugares-list li.has-video:hover .rf-lugar-play { opacity: 1; }

/* ── Depoimentos ─────────────────────────────────────────── */
.rf-depoimentos {
  background: var(--rf-cream);
  padding: 80px 64px;
  overflow: hidden;
}

.rf-depoimentos-header {
  text-align: center;
  margin: 0 0 40px;
}

.rf-depoimentos-header .rf-label { color: var(--rf-gold); justify-content: center; display: block; margin: 0 0 8px; }

.rf-depoimentos-header h2 {
  font-family: var(--rf-serif);
  font-style: italic;
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 400;
  color: var(--rf-dark);
  line-height: 1.15;
  margin: 0;
}

.rf-depoimentos-carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.rf-depoimentos-viewport {
  position: relative;
  padding: 0;
}

.rf-depoimentos-track {
  position: relative;
  height: clamp(440px, 42vw, 540px);
  display: flex;
  justify-content: center;
}

.rf-dep-item {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(880px, 92%);
  display: grid;
  grid-template-columns: minmax(240px, 42%) 1fr;
  gap: 48px;
  align-items: center;
  background: var(--rf-white);
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.05);
  transform: translate(-50%, 0) scale(0.8);
  transform-origin: 50% 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.7s var(--rf-ease),
    opacity 0.6s var(--rf-ease),
    visibility 0s linear 0.7s;
  z-index: 1;
}

/* Card central — grande e nítido */
.rf-dep-item[data-pos="center"] {
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  filter: none;
  z-index: 5;
  transition:
    transform 0.7s var(--rf-ease),
    opacity 0.6s var(--rf-ease),
    visibility 0s linear 0s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08), 0 24px 64px rgba(0,0,0,0.12);
}

/* Cards laterais — menores, desfocados, deslocados */
.rf-dep-item[data-pos="prev"],
.rf-dep-item[data-pos="next"] {
  opacity: 0.5;
  visibility: visible;
  filter: blur(2.5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  z-index: 2;
  transition:
    transform 0.7s var(--rf-ease),
    opacity 0.6s var(--rf-ease),
    visibility 0s linear 0s;
  cursor: pointer;
  pointer-events: auto;
}

.rf-dep-item[data-pos="prev"] {
  transform: translate(calc(-50% - 48%), 0) scale(0.72);
}

.rf-dep-item[data-pos="next"] {
  transform: translate(calc(-50% + 48%), 0) scale(0.72);
}

/* Navegação — abaixo do depoimento */
.rf-dep-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rf-white);
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--rf-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--rf-ease), background 0.3s, color 0.3s;
  flex: 0 0 auto;
}

.rf-dep-nav:hover {
  background: var(--rf-gold);
  color: var(--rf-white);
  transform: scale(1.08);
}

/* Dots + setas numa única linha centralizada abaixo do carrossel */
.rf-dep-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 56px;
}

.rf-dep-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.rf-dep-dot.is-active {
  background: var(--rf-gold);
  transform: scale(1.3);
}

.rf-dep-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: default;
  background: #eee;
}

.rf-dep-media.has-video { cursor: pointer; }

.rf-dep-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--rf-ease);
}

.rf-dep-media.has-video:hover img { transform: scale(1.04); }

.rf-dep-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(201,169,110,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  color: var(--rf-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: transform 0.3s, background 0.3s;
  pointer-events: none;
}

.rf-dep-media.has-video:hover .rf-dep-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--rf-gold);
}

.rf-dep-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 8px 16px;
}

.rf-dep-autor {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rf-dep-avatar {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--rf-cream);
}

.rf-dep-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rf-dep-identidade {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rf-dep-nome {
  font-family: var(--rf-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rf-dark);
}

.rf-dep-casamento {
  font-family: var(--rf-sans);
  font-size: 12px;
  color: var(--rf-mid);
}

.rf-dep-destaque {
  font-family: var(--rf-serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  color: var(--rf-dark);
  font-weight: 400;
  margin: 0;
}

@media (max-width: 1024px) {
  .rf-depoimentos { padding: 64px 40px; }
  .rf-dep-item { gap: 32px; padding: 20px; width: min(760px, 90%); }
  .rf-dep-item[data-pos="prev"]  { transform: translate(calc(-50% - 54%), 0) scale(0.68); }
  .rf-dep-item[data-pos="next"]  { transform: translate(calc(-50% + 54%), 0) scale(0.68); }
}

@media (max-width: 768px) {
  .rf-depoimentos { padding: 80px 24px; }
  .rf-depoimentos-viewport { padding: 24px 0 8px; }
  .rf-depoimentos-track { height: auto; min-height: 0; display: block; }

  .rf-dep-item {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px;
    transform: none;
  }

  /* Mobile: mostra só o central — laterais somem */
  .rf-dep-item[data-pos="prev"],
  .rf-dep-item[data-pos="next"],
  .rf-dep-item:not([data-pos="center"]) {
    display: none;
  }
  .rf-dep-item[data-pos="center"] {
    display: grid;
    transform: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  }

  .rf-dep-content { padding: 0 4px 8px; }

  .rf-dep-nav { width: 40px; height: 40px; }
  .rf-dep-dots { gap: 14px; margin-top: 28px; }
}

/* ── Instagram ───────────────────────────────────────────── */
.rf-insta {
  background: var(--rf-cream);
  padding: 120px 64px;
}

.rf-insta-header {
  text-align: center;
  margin-bottom: 56px;
}

.rf-insta-header .rf-label { justify-content: center; display: block; margin-bottom: 16px; }

.rf-insta-titulo {
  font-family: var(--rf-serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  color: var(--rf-dark);
  line-height: 1.15;
}

.rf-insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1200px;
  margin: 0 auto;
}

.rf-insta-post {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--rf-cream-dark);
}

.rf-insta-post a {
  display: block;
  width: 100%;
  height: 100%;
}

.rf-insta-post img,
.rf-insta-post video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--rf-ease);
}

/* Iframe (Vimeo/YouTube): superdimensiona pra cobrir o quadrado 1:1
   sem letterbox, mantendo razao 16:9. */
.rf-insta-post iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, calc(100% * 16 / 9));
  height: max(100%, calc(100% * 16 / 9));
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.rf-insta-post:hover img,
.rf-insta-post:hover video {
  transform: scale(1.06);
}

.rf-insta-footer {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .rf-insta { padding: 80px 40px; }
}

@media (max-width: 640px) {
  .rf-insta { padding: 80px 24px; }
  .rf-insta-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
}

/* ── Formulário CTA ──────────────────────────────────────── */
.rf-cta-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.rf-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rf-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.rf-form-group label,
.rf-form-label {
  font-family: var(--rf-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rf-mid);
}

.rf-form-group input[type="text"],
.rf-form-group input[type="email"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(14,14,14,0.25);
  padding: 10px 0;
  font-family: var(--rf-sans);
  font-size: 14px;
  color: var(--rf-dark);
  outline: none;
  width: 100%;
  transition: border-color 0.25s;
}

.rf-form-group input:focus {
  border-bottom-color: var(--rf-dark);
}

.rf-form-group input::placeholder { color: rgba(14,14,14,0.35); }

.rf-form-group--radio { justify-content: flex-end; }

.rf-radio-group {
  display: flex;
  gap: 20px;
  padding: 10px 0;
}

.rf-radio-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--rf-sans);
  font-size: 13px;
  color: var(--rf-dark);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.rf-radio-label input[type="radio"] {
  accent-color: var(--rf-gold);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.rf-btn.rf-btn--submit {
  display: block;
  width: 100%;
  padding: 16px;
  font-family: var(--rf-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  background: var(--rf-gold);
  color: var(--rf-white);
  border: 1px solid var(--rf-gold);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  margin-top: 8px;
}

.rf-btn.rf-btn--submit:hover {
  background: #D4B87A;
  border-color: #D4B87A;
  color: var(--rf-white);
}


@media (max-width: 640px) {
  .rf-form-row { grid-template-columns: 1fr; }
  .rf-form-group--radio { justify-content: flex-start; }
  .rf-cta-box { max-width: 100%; }
}

/* ── FAQ ─────────────────────────────────────────────────── */
.rf-faq {
  background: var(--rf-cream);
  padding: 120px 64px;
}

.rf-faq-inner {
  max-width: 820px;
  margin: 0 auto;
}

.rf-faq-header {
  margin-bottom: 64px;
}

.rf-faq-header h2 {
  font-family: var(--rf-serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  color: var(--rf-dark);
  line-height: 1.2;
  margin-top: 16px;
}

.rf-faq-list {
  border-top: 1px solid rgba(14,14,14,0.12);
}

.rf-faq-item {
  border-bottom: 1px solid rgba(14,14,14,0.12);
}

.rf-faq-question button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--rf-dark);
}

.rf-faq-question button span {
  font-family: var(--rf-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--rf-dark);
}

.rf-faq-icon {
  flex-shrink: 0;
  color: var(--rf-gold);
  transition: transform 0.3s var(--rf-ease);
}

.rf-faq-minus { display: none; }

.rf-faq-item.is-open .rf-faq-plus  { display: none; }
.rf-faq-item.is-open .rf-faq-minus { display: block; }
.rf-faq-item.is-open .rf-faq-icon  { transform: rotate(180deg); }

.rf-faq-answer {
  padding-bottom: 28px;
}

.rf-faq-answer[hidden] { display: none; }

.rf-faq-answer p {
  font-family: var(--rf-sans);
  font-size: 14px;
  line-height: 1.75;
  color: var(--rf-mid);
  max-width: 680px;
}

@media (max-width: 1024px) {
  .rf-faq { padding: 80px 40px; }
}

@media (max-width: 640px) {
  .rf-faq { padding: 64px 24px; }
  .rf-faq-header { margin-bottom: 40px; }
  .rf-faq-question button { padding: 22px 0; }
  .rf-faq-question button span { font-size: 14px; }
}

/* ── CTA Final ───────────────────────────────────────────── */
.rf-cta {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rf-cta-bg {
  position: absolute;
  inset: 0;
}

.rf-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rf-cta-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.rf-cta-box {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 72px 64px;
  max-width: 860px;
  width: 90%;
  background: var(--rf-cream);
  box-shadow: 0 24px 80px rgba(0,0,0,0.18), 0 4px 20px rgba(0,0,0,0.08);
}

.rf-cta-box .rf-label { color: var(--rf-gold); justify-content: center; display: block; margin-bottom: 20px; }

.rf-cta-title {
  font-family: var(--rf-serif);
  font-style: italic;
  font-size: clamp(36px, 4vw, 60px);
  color: var(--rf-dark);
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 20px;
}

.rf-cta-subtitle {
  font-family: var(--rf-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--rf-mid);
  margin-bottom: 40px;
  text-align: center;
}

.rf-cta-box .rf-btn {
  background: var(--rf-gold);
  color: var(--rf-dark);
  border-color: var(--rf-gold);
}

.rf-cta-box .rf-btn:hover {
  background: #D4B87A;
  color: var(--rf-white);
  border-color: #D4B87A;
}


.rf-btn {
  display: inline-block;
  padding: 16px 48px;
  font-family: var(--rf-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rf-dark);
  background: var(--rf-white);
  border: 1px solid var(--rf-white);
  transition: background 0.3s, color 0.3s;
}

.rf-btn:hover {
  background: transparent;
  color: var(--rf-white);
}

.rf-btn-outline {
  background: transparent;
  color: var(--rf-white);
  border: 1px solid rgba(255,255,255,0.4);
}
.rf-btn-outline:hover {
  background: var(--rf-white);
  color: var(--rf-dark);
}

/* ── Footer ──────────────────────────────────────────────── */
.rf-footer {
  position: relative;
  background: var(--rf-cream);
  color: var(--rf-dark);
  overflow: hidden;
}

/* Decorativo SVG de fundo */
.rf-footer-deco {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  max-width: 100vw;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(0deg, rgba(0,0,0,0) 69.7072%, rgb(0,0,0) 100%);
          mask-image: linear-gradient(0deg, rgba(0,0,0,0) 69.7072%, rgb(0,0,0) 100%);
  opacity: 1;
}

.rf-footer-deco img {
  width: 100%;
  height: auto;
  display: block;
}

/* Container interno */
.rf-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Hero do footer: logo + tagline centrados */
.rf-footer-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 0 64px;
}

.rf-footer-logo-link {
  display: inline-block;
  margin-bottom: 20px;
  line-height: 0;
}

.rf-footer-logo-link img {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

/* Footer fundo gold — logo branca, textos escuros */

.rf-footer-logo {
  display: block;
  margin-bottom: 24px;
  line-height: 0;
}

.rf-footer-logo img {
  height: 32px;
  width: auto;
  filter: invert(1);
}

.rf-footer-brand-name {
  display: block;
  font-family: var(--rf-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(14,14,14,0.45);
  margin-bottom: 24px;
}

.rf-footer-tagline {
  font-family: var(--rf-serif);
  font-style: italic;
  font-size: 22px;
  color: rgba(14,14,14,0.65);
  line-height: 1.55;
  max-width: 480px;
}

/* Linha divisória */
.rf-footer-rule {
  border: none;
  border-top: 1px solid rgba(14,14,14,0.15);
  margin: 0;
}

/* Grid de 3 colunas */
.rf-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 64px 0 80px;
}

.rf-footer-col h4 {
  font-family: var(--rf-sans);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(14,14,14,0.4);
  margin-bottom: 28px;
}

.rf-footer-col ul { list-style: none; }

.rf-footer-col ul li {
  margin-bottom: 14px;
}

.rf-footer-col ul li a {
  font-family: var(--rf-sans);
  font-size: 13px;
  color: rgba(14,14,14,0.6);
  line-height: 1.5;
  transition: color 0.3s;
}
.rf-footer-col ul li a:hover { color: var(--rf-dark); }

.rf-footer-address {
  font-family: var(--rf-sans);
  font-size: 13px;
  color: rgba(14,14,14,0.5);
  line-height: 1.7;
}

/* Barra inferior */
.rf-footer-bottom {
  border-top: 1px solid rgba(14,14,14,0.12);
}

.rf-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
}

.rf-footer-copy,
.rf-footer-made {
  font-family: var(--rf-sans);
  font-size: 11px;
  color: rgba(14,14,14,0.35);
}

/* ── Reveal Animations ───────────────────────────────────── */
.rf-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--rf-ease), transform 0.8s var(--rf-ease);
}

.rf-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rf-reveal-delay-1 { transition-delay: 0.1s; }
.rf-reveal-delay-2 { transition-delay: 0.2s; }
.rf-reveal-delay-3 { transition-delay: 0.3s; }
.rf-reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsivo ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .rf-header { padding: 24px 32px; }
  .rf-header.is-scrolled { padding: 16px 32px; }
  .rf-menu-inner { padding: 100px 48px 60px; }

  .rf-intro-copy { padding: 80px 40px 60px; }
  .rf-intro-image { width: calc(100% - 40px); aspect-ratio: 4 / 3; }

  .rf-momento-item { grid-template-columns: 1fr; min-height: auto; }
  .rf-momento-meta { padding: 60px 40px; }
  .rf-momento-media { min-height: 70vw; }
  .rf-momento-img-sec { display: none; }
  .rf-momentos-header { padding: 80px 40px 60px; }

  .rf-entrega-row { grid-template-columns: 40px 1fr 280px; gap: 24px; }
  .rf-entrega-desc { display: none; }
  .rf-entregas-lista, .rf-entregas-header { padding: 0 40px; }

  .rf-lugares-corpo { grid-template-columns: 1fr; gap: 48px; }
  .rf-lugares-media { aspect-ratio: 16/9; }
  .rf-lugares-wrap { padding: 0 40px; }

  .rf-footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .rf-footer-inner { padding: 0 40px; }
  .rf-footer-hero { padding: 80px 0 52px; }

  .rf-carousel-wrap { height: 52vh; }
  .rf-carousel-slide { height: 38vh; }
  .rf-carousel-slide.is-center { height: 52vh; }
  .rf-carousel-btn { width: 40px; height: 40px; }
  .rf-carousel-prev { left: 12px; }
  .rf-carousel-next { right: 12px; }

  .rf-hero-display { font-size: 22vw; }
  .rf-photo-phrase-content { padding: 0 40px; }
}

@media (max-width: 640px) {
  .rf-header { padding: 20px 24px; }
  .rf-header.is-scrolled { padding: 14px 24px; }
  .rf-menu-inner { padding: 100px 32px 60px; grid-template-columns: 1fr; }
  .rf-menu-close { right: 24px; top: 24px; }
  .rf-menu-side { display: none; }

  .rf-intro-copy { padding: 60px 24px 48px; }
  .rf-intro-image { width: 100%; }
  .rf-momentos-header { padding: 60px 24px 40px; }
  .rf-momento-meta { padding: 40px 24px; }

  .rf-entrega-row { grid-template-columns: 1fr; gap: 16px; }
  .rf-entrega-num { padding-top: 0; }
  .rf-entrega-desc { display: block; }
  .rf-entrega-media { aspect-ratio: 16/9; }
  .rf-entregas-lista, .rf-entregas-header { padding: 0 24px; }
  .rf-lugares-wrap { padding: 0 24px; }

  .rf-frase { padding: 80px 24px; }
  .rf-galeria { padding: 80px 0 0; }
  .rf-galeria-header { padding: 0 24px 48px; }

  /* Mobile: 1 slide por vez, ocupa 100% */
  .rf-carousel-slide { flex: 0 0 100%; height: 70vw; }
  .rf-carousel-slide.is-center,
  .rf-carousel-slide.is-prev,
  .rf-carousel-slide.is-next { height: 70vw; }
  .rf-carousel-wrap { height: 70vw; }
  .rf-carousel-btn { top: 50%; }

  .rf-cta-box { padding: 48px 28px; margin: 0 20px; max-width: calc(100% - 40px); }
  .rf-hero { height: 90vh; height: 90dvh; min-height: 500px; }
  .rf-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .rf-footer-inner { padding: 0 24px; }
  .rf-footer-hero { padding: 64px 0 40px; }
  .rf-footer-tagline { font-size: 18px; }
  .rf-footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  .rf-hero-display { font-size: 30vw; }
  .rf-photo-phrase-content { padding: 0 24px; }
}

/* ── Botão do CTA final ──────────────────────────────────── */
.rf-btn--cta {
  background: #D4B87A;
  color: var(--rf-white);
  border-color: #D4B87A;
  padding: 18px 56px;
  font-family: var(--rf-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.rf-btn--cta:hover {
  background: #E0C994;
  border-color: #E0C994;
  color: var(--rf-white);
}

/* ── Modal de contato ────────────────────────────────────── */
.rf-modal[hidden] { display: none !important; }

.rf-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.rf-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 14, 0.72);
  backdrop-filter: blur(4px);
  animation: rf-modal-fade 0.25s ease-out;
}

.rf-modal-box {
  position: relative;
  z-index: 1;
  background: var(--rf-cream);
  width: 100%;
  max-width: 620px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 48px 48px 40px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  animation: rf-modal-pop 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes rf-modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes rf-modal-pop {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}

.rf-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--rf-dark);
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
.rf-modal-close:hover { color: var(--rf-gold); transform: rotate(90deg); }

.rf-modal .rf-label {
  color: var(--rf-gold);
  display: block;
  margin-bottom: 10px;
}

.rf-modal-title {
  font-family: var(--rf-serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--rf-dark);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 10px;
}

.rf-modal-subtitle {
  font-family: var(--rf-sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--rf-mid);
  margin: 0 0 24px;
}

.rf-modal .rf-cta-form { margin-top: 0; }

@media (max-width: 640px) {
  .rf-modal { padding: 16px; align-items: flex-start; }
  .rf-modal-box { padding: 56px 24px 32px; max-height: calc(100vh - 32px); }
}
