/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Cores */
  --c-onyx: #050505;
  --c-warm-black: #0D0A07;
  --c-mahogany: #1A1410;
  --c-gold-deep: #8B7340;
  --c-gold-light: #C5A059;
  --c-cream: #F4F1EC;
  --c-silver: #AAAAAA;
  --c-silver-dim: #888888;

  /* Tipografia */
  --f-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-body: 'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;

  /* Easing e durações */
  --ease-luxe: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.4s;
  --t-med: 0.5s;
  --t-slow: 1.5s;

  /* Espaçamento */
  --section-pad-y: 120px;
  --container-max: 1200px;
  --container-pad: 5%;
}

/* ============================================
   RESET
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--c-onyx);
  color: var(--c-cream);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.loading { overflow: hidden; }

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-luxe);
}

ul, ol { list-style: none; }

img { max-width: 100%; display: block; }

button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--section-pad-y) 0;
  position: relative;
}

.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--c-gold-light);
}

.gold { color: var(--c-gold-light); }

.divider {
  width: 40px;
  height: 1px;
  background: var(--c-gold-deep);
  margin: 22px auto;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  padding-top: max(22px, env(safe-area-inset-top));
  background: transparent;
  transition: padding var(--t-fast) var(--ease-luxe), background var(--t-fast);
}

.header.scrolled {
  padding: 10px 0;
  padding-top: max(10px, env(safe-area-inset-top));
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Mobile: backdrop-filter pesa muito em GPU baixa — usa fundo sólido */
@media (max-width: 768px) {
  .header.scrolled {
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--c-cream);
}

.logo-italic {
  font-style: italic;
  color: var(--c-gold-light);
}

.header.scrolled .logo { font-size: 18px; }

.nav {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-cream);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--c-gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-fast) var(--ease-luxe);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-btn {
  display: none;
  width: 28px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--c-cream);
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.menu-btn.open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 768px) {
  .menu-btn { display: flex; }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--c-onyx);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform: translateX(100%);
    transition: transform var(--t-med) var(--ease-luxe);
  }
  .nav.open { transform: translateX(0); }
  .nav-link {
    font-size: 18px;
    letter-spacing: 5px;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 35%;
  filter: grayscale(15%) contrast(1.08) brightness(0.85);
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg,
      rgba(5,5,5,0.9) 0%,
      rgba(5,5,5,0.75) 30%,
      rgba(5,5,5,0.5) 60%,
      rgba(5,5,5,0.3) 90%,
      rgba(5,5,5,0.2) 100%),
    linear-gradient(180deg,
      rgba(5,5,5,0.4) 0%,
      transparent 35%,
      transparent 70%,
      rgba(5,5,5,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding-left: 2%;
}

.hero-eyebrow {
  display: block;
  margin-bottom: 36px;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 10vw, 92px);
  font-weight: 300;
  letter-spacing: clamp(6px, 1.5vw, 14px);
  text-transform: uppercase;
  color: var(--c-cream);
  margin-bottom: 0;
}

.hero-tag {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--c-cream);
  font-weight: 300;
  line-height: 1.4;
  margin-top: 28px;
}

.hero-sub {
  font-size: 14px;
  color: var(--c-silver);
  letter-spacing: 1px;
  max-width: 480px;
  margin: 24px 0 48px;
  line-height: 1.8;
}

.hero .divider { margin: 22px 0; }

/* BOTÃO base */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border: 1px solid rgba(244, 241, 236, 0.3);
  color: var(--c-cream);
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  transition: color var(--t-fast), border-color var(--t-fast);
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-gold-light);
  border-radius: 50% 50% 0 0;
  transition: top var(--t-med) var(--ease-luxe), border-radius var(--t-med);
  z-index: -1;
}

.btn:hover {
  color: var(--c-onyx);
  border-color: transparent;
}

.btn:hover::before {
  top: 0;
  border-radius: 0;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scroll-indicator span {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-silver-dim);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-gold-light);
  animation: scrollDown 2.4s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* REVEAL DE TEXTO COM MÁSCARA */
.reveal-line {
  display: block;
  overflow: hidden;
}

.reveal-line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.5s var(--ease-luxe);
}

.reveal-line.active > span {
  transform: translateY(0);
}

/* ============================================
   SOBRE
   ============================================ */
.sobre { background: var(--c-onyx); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.sobre-number {
  font-family: var(--f-display);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 300;
  color: var(--c-gold-light);
  line-height: 0.9;
  margin: 32px 0 16px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.sobre-number small {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-silver);
  font-weight: 400;
  padding-bottom: 14px;
}

.sobre-title {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--c-cream);
  margin: 32px 0;
  line-height: 1.2;
  font-weight: 300;
}

.sobre-title em {
  font-style: italic;
  color: var(--c-gold-light);
}

.sobre-body {
  color: var(--c-silver);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 480px;
}

.sobre-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--c-mahogany);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.7),
    0 18px 36px -18px rgba(197, 160, 89, 0.18);
}

.sobre-image::before,
.sobre-image::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid var(--c-gold-light);
  z-index: 2;
  pointer-events: none;
  transition: width 0.8s var(--ease-luxe), height 0.8s var(--ease-luxe);
}

.sobre-image::before {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}

.sobre-image::after {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}

.sobre-image:hover::before,
.sobre-image:hover::after {
  width: 64px;
  height: 64px;
}

.sobre-image .img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sobre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) contrast(1.05);
  transition: transform 1.6s var(--ease-luxe);
}

.sobre-image:hover img { transform: scale(1.04); }

@media (max-width: 992px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 60px; }
  .sobre-image { aspect-ratio: 3 / 4; max-width: 500px; margin: 0 auto; }
}

/* ============================================
   RITUAL
   ============================================ */
.ritual { background: var(--c-warm-black); }

.ritual-header { text-align: center; margin-bottom: 70px; }
.ritual-header .eyebrow { display: block; margin-bottom: 18px; }

.ritual-title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--c-cream);
  font-weight: 300;
}

.ritual-title em {
  font-style: italic;
  color: var(--c-gold-light);
}

.ritual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ritual-steps { display: flex; flex-direction: column; gap: 8px; }

.ritual-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.12);
}

.ritual-step:last-child { border-bottom: none; }

.step-roman {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 32px;
  color: var(--c-gold-light);
  font-weight: 300;
  line-height: 1;
  padding-top: 4px;
}

.step-text h3 {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--c-cream);
  font-weight: 400;
  margin-bottom: 8px;
}

.step-text p {
  color: var(--c-silver);
  font-size: 14px;
  line-height: 1.7;
}

.ritual-image {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--c-mahogany);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.7),
    0 18px 36px -18px rgba(197, 160, 89, 0.18);
}

.ritual-image::before,
.ritual-image::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid var(--c-gold-light);
  z-index: 2;
  pointer-events: none;
  transition: width 0.8s var(--ease-luxe), height 0.8s var(--ease-luxe);
}

.ritual-image::before {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}

.ritual-image::after {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}

.ritual-image:hover::before,
.ritual-image:hover::after {
  width: 64px;
  height: 64px;
}

.ritual-image .img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ritual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
  transition: transform 1.6s var(--ease-luxe);
}

.ritual-image:hover img { transform: scale(1.04); }

@media (max-width: 992px) {
  .ritual-grid { grid-template-columns: 1fr; gap: 60px; }
  .ritual-image { aspect-ratio: 16 / 10; max-width: 600px; margin: 0 auto; }
  .ritual-header { margin-bottom: 60px; }
}

/* ============================================
   MENU
   ============================================ */
.menu { background: var(--c-onyx); }

.menu-header { text-align: center; margin-bottom: 70px; }
.menu-header .eyebrow { display: block; margin-bottom: 18px; }

.menu-title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--c-cream);
  font-weight: 300;
}

.menu-title em {
  font-style: italic;
  color: var(--c-gold-light);
}

.menu-list { max-width: 900px; margin: 0 auto; }

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid rgba(244, 241, 236, 0.08);
  transition: padding var(--t-fast) var(--ease-luxe);
  position: relative;
}

.menu-item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold-light), transparent);
  transform: scaleX(0);
  transition: transform var(--t-med) var(--ease-luxe);
}

.menu-list li:last-child .menu-item { border-bottom: none; }

.menu-item:hover::after { transform: scaleX(1); }

.menu-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-gold-light);
  border: 1px solid rgba(197, 160, 89, 0.4);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.menu-name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--c-cream);
  margin-bottom: 12px;
  transition: transform var(--t-med) var(--ease-luxe), color var(--t-fast);
}

.menu-item:hover .menu-name {
  transform: translateX(12px);
  color: var(--c-gold-light);
}

.menu-item p {
  color: var(--c-silver);
  font-size: 14px;
  line-height: 1.7;
  max-width: 580px;
}

.menu-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(244, 241, 236, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-cream);
  transition: all var(--t-med) var(--ease-luxe);
  flex-shrink: 0;
}

.menu-arrow svg { width: 18px; height: 18px; }

.menu-item:hover .menu-arrow {
  background: var(--c-gold-light);
  border-color: var(--c-gold-light);
  color: var(--c-onyx);
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .menu-item { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
  .menu-arrow { display: none; }
}

/* ============================================
   GALERIA — Modelos de Corte (carrossel horizontal)
   ============================================ */
.galeria { background: var(--c-onyx); }

.galeria-header { text-align: center; margin-bottom: 60px; }
.galeria-header .eyebrow { display: block; margin-bottom: 18px; }

.galeria-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--c-cream);
  font-weight: 300;
}
.galeria-title em {
  font-style: italic;
  color: var(--c-gold-light);
}
.galeria-sub {
  color: var(--c-silver);
  font-size: 14px;
  letter-spacing: 0.5px;
  max-width: 540px;
  margin: 24px auto 0;
  line-height: 1.7;
}

/* Animated underline (matches other section titles) */
.galeria-title {
  position: relative;
  padding-bottom: 36px;
  display: inline-block;
}
.galeria-title::after {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 50%;
  width: 60px;
  height: 1px;
  background: var(--c-gold-light);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 1.4s 0.5s var(--ease-luxe);
}
.galeria-title.active::after { transform: translateX(-50%) scaleX(1); }

.galeria-carousel {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 18px;
}

/* === 3D CAROUSEL (Cover Flow style) === */
.galeria-viewport {
  position: relative;
  height: 480px;
  perspective: 1600px;
  perspective-origin: center center;
  overflow: visible;
}

.galeria-track {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.modelo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 380px;
  margin: -190px 0 0 -140px;
  background: var(--c-mahogany);
  overflow: hidden;
  cursor: pointer;
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
  transition:
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.modelo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.05);
  transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  pointer-events: none;
}

.modelo.is-active img {
  filter: grayscale(0%) contrast(1.08);
}

.modelo.is-active {
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(197, 160, 89, 0.25);
}

.modelo figcaption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--c-cream);
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 12px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s var(--ease-luxe);
}

.modelo.is-active figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet 3D — slightly smaller cards, less spread */
@media (max-width: 1024px) {
  .galeria-viewport { height: 420px; }
  .modelo {
    width: 240px;
    height: 320px;
    margin: -160px 0 0 -120px;
  }
}

/* Mobile 3D — single big card with peek of neighbors */
@media (max-width: 768px) {
  .galeria-carousel {
    grid-template-columns: 36px 1fr 36px;
    gap: 6px;
  }
  .galeria-viewport { height: 380px; perspective: 1200px; }
  .modelo {
    width: 200px;
    height: 270px;
    margin: -135px 0 0 -100px;
  }
  .modelo figcaption { font-size: 12px; padding: 4px 10px; }
}

/* Small mobile 3D — even tighter */
@media (max-width: 480px) {
  .galeria-viewport { height: 340px; }
  .modelo {
    width: 180px;
    height: 240px;
    margin: -120px 0 0 -90px;
  }
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos { background: var(--c-warm-black); }

.depoimentos-header { text-align: center; margin-bottom: 60px; }
.depoimentos-header .eyebrow { display: block; margin-bottom: 18px; }

.depoimentos-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--c-cream);
  font-weight: 300;
}

.depoimentos-title em {
  font-style: italic;
  color: var(--c-gold-light);
}

/* CARROSSEL — 3 cards por página no desktop, 1 no mobile */
.depoimentos-carousel {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 18px;
}

.depoimentos-viewport {
  overflow: hidden;
  position: relative;
}

.depoimentos-track {
  display: flex;
  gap: 24px;
  transition: transform 0.9s var(--ease-luxe);
  will-change: transform;
}

.depoimento {
  flex: 0 0 calc((100% - 48px) / 3);
  background: rgba(26, 20, 16, 0.5);
  border: 1px solid rgba(197, 160, 89, 0.15);
  padding: 44px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
  text-align: left;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.3);
  background: transparent;
  color: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-luxe);
  z-index: 2;
}

.carousel-arrow svg { width: 20px; height: 20px; }

.carousel-arrow:hover {
  background: var(--c-gold-light);
  border-color: var(--c-gold-light);
  color: var(--c-onyx);
  transform: scale(1.06);
}

.carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(197, 160, 89, 0.45);
  cursor: pointer;
  padding: 0;
  transition: all var(--t-fast) var(--ease-luxe);
}

.carousel-dots .dot:hover { border-color: var(--c-gold-light); }

.carousel-dots .dot.active {
  background: var(--c-gold-light);
  border-color: var(--c-gold-light);
  width: 32px;
  border-radius: 5px;
}

.quote-mark {
  font-family: var(--f-display);
  font-size: 64px;
  color: var(--c-gold-light);
  line-height: 0.5;
  font-style: italic;
}

.depoimento blockquote {
  font-family: var(--f-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--c-cream);
  line-height: 1.5;
  flex-grow: 1;
}

.depoimento figcaption {
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.depoente {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-silver);
}

.depoente-tag {
  font-size: 9px;
  color: var(--c-gold-deep);
  font-style: italic;
  opacity: 0.6;
}

/* Tablet: 2 cards visíveis */
@media (max-width: 1024px) {
  .depoimentos-carousel { max-width: 100%; }
  .depoimentos-track { gap: 18px; }
  .depoimento { flex: 0 0 calc((100% - 18px) / 2); }
}

/* Mobile: 1 card visível */
@media (max-width: 768px) {
  .depoimentos-carousel {
    grid-template-columns: 36px 1fr 36px;
    gap: 10px;
    max-width: 100%;
  }
  .depoimentos-track { gap: 0; }
  .depoimento {
    flex: 0 0 100%;
    padding: 40px 28px 28px;
    min-height: 240px;
  }
  .carousel-arrow { width: 36px; height: 36px; }
  .carousel-arrow svg { width: 16px; height: 16px; }
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--c-onyx); }

.faq-header { text-align: center; margin-bottom: 60px; }
.faq-header .eyebrow { display: block; margin-bottom: 18px; }

.faq-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--c-cream);
  font-weight: 300;
}

.faq-title em {
  font-style: italic;
  color: var(--c-gold-light);
}

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid rgba(244, 241, 236, 0.08); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  text-align: left;
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--c-cream);
  letter-spacing: 0.5px;
  transition: color var(--t-fast);
}

.faq-question:hover { color: var(--c-gold-light); }

.faq-icon {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--c-gold-light);
  font-weight: 300;
  margin-left: 20px;
  transition: transform var(--t-fast) var(--ease-luxe);
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med) var(--ease-luxe);
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  color: var(--c-silver);
  font-size: 14px;
  line-height: 1.85;
  padding: 0 0 24px;
  max-width: 720px;
}

/* ============================================
   RESERVA / CONTATO
   ============================================ */
.reserva { background: var(--c-warm-black); text-align: center; }

.reserva-header { margin-bottom: 60px; }
.reserva-header .eyebrow { display: block; margin-bottom: 18px; }

.reserva-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--c-cream);
  font-weight: 300;
}

.reserva-title em {
  font-style: italic;
  color: var(--c-gold-light);
}

.reserva-form { max-width: 600px; margin: 0 auto; text-align: left; }

.form-row { position: relative; margin-bottom: 40px; }

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 241, 236, 0.18);
  padding: 12px 0;
  color: var(--c-cream);
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 300;
  transition: border-color var(--t-fast);
  outline: none;
  resize: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-bottom-color: var(--c-gold-light);
}

.form-row input.invalid,
.form-row select.invalid,
.form-row textarea.invalid {
  border-bottom-color: #c44;
}

.form-row label {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--c-silver-dim);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  pointer-events: none;
  transition: top var(--t-fast) var(--ease-luxe), font-size var(--t-fast), color var(--t-fast);
}

.form-row input:focus ~ label,
.form-row input:not(:placeholder-shown) ~ label,
.form-row select:focus ~ label,
.form-row select:valid ~ label,
.form-row textarea:focus ~ label,
.form-row textarea:not(:placeholder-shown) ~ label {
  top: -16px;
  font-size: 9px;
  color: var(--c-gold-light);
}

.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23C5A059' d='M0 0l5 6 5-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
}

.form-row select option {
  background: var(--c-onyx);
  color: var(--c-cream);
}

.btn-submit {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--c-cream);
  border: 1px solid rgba(244, 241, 236, 0.25);
  padding: 24px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  transition: color var(--t-fast);
  border-radius: 0;
  z-index: 1;
}

.btn-submit::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--c-gold-light);
  transition: height var(--t-med) var(--ease-luxe);
  z-index: -1;
}

.btn-submit:hover {
  color: var(--c-onyx);
  border-color: transparent;
}

.btn-submit:hover::before { height: 100%; }

.contato-direto {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 70px;
  flex-wrap: wrap;
}

.contato-item .eyebrow { display: block; margin-bottom: 12px; }

.contato-item p {
  font-size: 16px;
  color: var(--c-cream);
}

.contato-item a:hover { color: var(--c-gold-light); }

@media (max-width: 768px) {
  .contato-direto { flex-direction: column; gap: 36px; }
  .form-row { margin-bottom: 32px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 60px;
  background: var(--c-warm-black);
  text-align: center;
  border-top: 1px solid rgba(197, 160, 89, 0.08);
}

.footer-logo {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--c-cream);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--c-gold-light);
  font-style: italic;
}

.footer-line {
  font-size: 13px;
  color: var(--c-silver);
  letter-spacing: 1px;
  margin-bottom: 36px;
}

.footer-copyright {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-silver-dim);
}

.footer-credit {
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-silver-dim);
}

.footer-credit a {
  color: var(--c-gold-light);
  font-weight: 400;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast);
}

.footer-credit a:hover {
  border-bottom-color: var(--c-gold-light);
}

/* ============================================
   CURSOR CUSTOM (desktop only)
   ============================================ */
.cursor-tool,
.cursor-ring {
  display: none;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}

.cursor-tool {
  width: 8px;
  height: 8px;
  background: var(--c-gold-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.cursor-tool svg { display: none; }

.cursor-ring {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-luxe), height 0.3s var(--ease-luxe), background 0.3s, border-color 0.3s;
}

.cursor-ring.hovered {
  width: 70px;
  height: 70px;
  background: rgba(197, 160, 89, 0.06);
  border-color: rgba(197, 160, 89, 0.5);
}

@media (pointer: fine) {
  .cursor-tool, .cursor-ring { display: block; }
  body, a, button, input, textarea, select, .menu-item {
    cursor: none;
  }
}

/* ============================================
   SCROLL REVEAL — variantes
   ============================================ */
.reveal-up,
.reveal-fade,
.reveal-left,
.reveal-right,
.reveal-zoom,
.reveal-blur {
  opacity: 0;
  transition:
    opacity 1.4s var(--ease-luxe),
    transform 1.4s var(--ease-luxe),
    filter 1.4s var(--ease-luxe);
  will-change: opacity, transform, filter;
}

.reveal-up    { transform: translateY(70px); }
.reveal-fade  { /* só opacity */ }
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-zoom  { transform: scale(0.92); }
.reveal-blur  { filter: blur(14px); transform: translateY(20px); }

.reveal-up.active,
.reveal-fade.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active,
.reveal-blur.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: blur(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.60s; }
.reveal-delay-6 { transition-delay: 0.72s; }

/* Stagger automático para listas com vários itens */
.faq-list .reveal-up:nth-child(1) { transition-delay: 0s; }
.faq-list .reveal-up:nth-child(2) { transition-delay: 0.08s; }
.faq-list .reveal-up:nth-child(3) { transition-delay: 0.16s; }
.faq-list .reveal-up:nth-child(4) { transition-delay: 0.24s; }
.faq-list .reveal-up:nth-child(5) { transition-delay: 0.32s; }
.faq-list .reveal-up:nth-child(6) { transition-delay: 0.40s; }

/* ============================================
   ANIMATED TITLE UNDERLINE (gold line that draws on entry)
   ============================================ */
.ritual-title,
.menu-title,
.depoimentos-title,
.faq-title,
.reserva-title {
  position: relative;
  padding-bottom: 36px;
  display: inline-block;
}

.ritual-title::after,
.menu-title::after,
.depoimentos-title::after,
.faq-title::after,
.reserva-title::after {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 50%;
  width: 60px;
  height: 1px;
  background: var(--c-gold-light);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 1.4s 0.5s var(--ease-luxe);
}

.ritual-title.active::after,
.menu-title.active::after,
.depoimentos-title.active::after,
.faq-title.active::after,
.reserva-title.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Sobre title gets a gold accent dot before the text instead (it's left-aligned and uses reveal-line mask) */
.sobre-text > .eyebrow.reveal-up { position: relative; padding-left: 48px; }
.sobre-text > .eyebrow.reveal-up::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--c-gold-light);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 1.2s 0.3s var(--ease-luxe);
}
.sobre-text > .eyebrow.reveal-up.active::before {
  transform: translateY(-50%) scaleX(1);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  z-index: 998;
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast) var(--ease-luxe);
}

.wpp-float.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.wpp-float:hover { transform: scale(1.08); }

.wpp-float svg { width: 28px; height: 28px; }

@media (max-width: 768px) {
  .wpp-float {
    width: 52px;
    height: 52px;
    bottom: max(20px, env(safe-area-inset-bottom));
    right: max(20px, env(safe-area-inset-right));
  }
}

/* ============================================
   ACCESSIBILITY — Focus visible + skip link
   ============================================ */
:focus-visible {
  outline: 2px solid var(--c-gold-light);
  outline-offset: 4px;
  border-radius: 2px;
}

.btn:focus-visible,
.btn-submit:focus-visible {
  outline-offset: 2px;
}

/* Cursor custom should not eat focus styles */
@media (pointer: fine) {
  *:focus-visible { outline: 2px solid var(--c-gold-light); outline-offset: 4px; }
}

/* Skip link — invisible until focused */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--c-gold-light);
  color: var(--c-onyx);
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 99999;
  transition: top var(--t-fast);
  text-decoration: none;
  font-weight: 500;
}

.skip-link:focus {
  top: 0;
  outline: none;
}

/* ============================================
   RESPONSIVE — Tablet & Mobile pass
   ============================================ */

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
  :root {
    --section-pad-y: 90px;
    --container-pad: 6%;
  }

  .header { padding: 18px 0; }
  .header.scrolled { padding: 10px 0; }

  .hero {
    justify-content: center;
    text-align: center;
    min-height: 100svh;
  }

  .hero-content {
    padding-left: 0;
    max-width: 540px;
  }

  .hero .divider { margin: 22px auto; }

  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(5,5,5,0.65) 0%,
        rgba(5,5,5,0.45) 35%,
        rgba(5,5,5,0.7) 80%,
        rgba(5,5,5,0.95) 100%),
      linear-gradient(90deg,
        rgba(5,5,5,0.4) 0%,
        rgba(5,5,5,0.2) 50%,
        rgba(5,5,5,0.4) 100%);
  }

  .hero-bg img { object-position: 60% 30%; }
  .sobre-image img { object-position: center top; }
  .ritual-image img { object-position: center top; }

  .hero-sub { margin: 24px auto 40px; }

  .sobre-grid { gap: 60px; }
  .ritual-grid { gap: 50px; }

  .depoimentos-carousel {
    max-width: 100%;
  }

  .ritual-header,
  .menu-header,
  .depoimentos-header,
  .faq-header,
  .reserva-header { margin-bottom: 50px; }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  :root {
    --section-pad-y: 70px;
    --container-pad: 5%;
  }

  .container { padding: 0 5%; }

  .logo { font-size: 18px; letter-spacing: 1.5px; }
  .header.scrolled .logo { font-size: 15px; }

  .hero { min-height: 92svh; }
  .hero-eyebrow {
    margin-bottom: 24px;
    font-size: 9px;
    letter-spacing: 4px;
  }
  .hero-tag { margin-top: 22px; }
  .hero-sub { font-size: 13px; margin: 20px auto 36px; }
  .btn { padding: 14px 28px; font-size: 10px; letter-spacing: 3px; }

  .sobre-number { font-size: 90px; gap: 10px; }
  .sobre-number small { padding-bottom: 10px; font-size: 10px; }
  .sobre-body { font-size: 14px; line-height: 1.75; }

  .ritual-step { grid-template-columns: 44px 1fr; gap: 14px; padding: 18px 0; }
  .step-roman { font-size: 26px; }
  .step-text h3 { font-size: 19px; }

  .menu-tag { font-size: 8px; letter-spacing: 2px; padding: 3px 10px; }
  .menu-name { margin-bottom: 10px; }
  .menu-item p { font-size: 13px; }

  .depoimento { padding: 32px 24px 24px; }
  .depoimento blockquote { font-size: 16px; }

  .faq-question { font-size: 14px; padding: 20px 0; }
  .faq-icon { font-size: 22px; }
  .faq-answer p { font-size: 13px; padding-bottom: 20px; }

  .form-row input,
  .form-row select,
  .form-row textarea { font-size: 15px; }
  .form-row label { font-size: 10px; letter-spacing: 2px; }

  .btn-submit { padding: 20px; font-size: 10px; letter-spacing: 3px; }

  .footer { padding: 60px 0 40px; }
  .footer-logo { font-size: 26px; }

  .sobre-image::before, .sobre-image::after,
  .ritual-image::before, .ritual-image::after { width: 32px; height: 32px; }
  .sobre-image:hover::before, .sobre-image:hover::after,
  .ritual-image:hover::before, .ritual-image:hover::after { width: 40px; height: 40px; }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
  :root { --section-pad-y: 56px; }

  .hero-eyebrow { letter-spacing: 3px; font-size: 8px; }
  .hero-tag { font-size: 18px; }

  .sobre-grid { gap: 40px; }
  .sobre-number { font-size: 72px; }

  .ritual-grid { gap: 36px; }

  .depoimentos-title,
  .ritual-title,
  .menu-title,
  .faq-title,
  .reserva-title,
  .sobre-title {
    padding-bottom: 28px;
  }

  .ritual-title::after,
  .menu-title::after,
  .depoimentos-title::after,
  .faq-title::after,
  .reserva-title::after { bottom: 10px; width: 44px; }

  .contato-direto { gap: 28px; }
  .contato-item p { font-size: 14px; }
}

/* Landscape mobile — comprime hero e diminui paddings de seção */
@media (max-height: 480px) and (orientation: landscape) {
  :root { --section-pad-y: 60px; }
  .hero { min-height: 100svh; height: 100svh; }
  .hero-content { padding: 12px 0; max-width: 90%; }
  .hero-eyebrow { margin-bottom: 14px; }
  .hero-tag { margin-top: 14px; font-size: 16px; }
  .hero-sub { margin: 14px auto 22px; }
  .scroll-indicator { display: none; }
}
