/* ============================================
   SANDY CAMPBELL — LUXURY EDITION · STYLE.CSS
   Dark editorial · Gold accent · Cinematic
   ============================================ */

/* ── VARIÁVEIS ──────────────────────────────── */
:root {
  /* Palette */
  --ink:       #0d0a0b;      /* quase preto */
  --ink-soft:  #1a1418;      /* fundo de cards */
  --ink-mid:   #2a2226;      /* borders */
  --gold:      #c9a96e;      /* dourado principal */
  --gold-lt:   #e8d4b0;      /* dourado claro */
  --gold-dk:   #9a7a45;      /* dourado escuro */
  --cream:     #f5f0e8;      /* creme quente */
  --cream-dk:  #ede4d8;      /* creme mais escuro */
  --muted:     #8a7a80;      /* texto secundário */
  --white:     #fdfaf6;      /* branco quente */

  /* Typography */
  --f-display: 'Playfair Display', serif;
  --f-body:    'Jost', sans-serif;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 5rem;
  --sp-xl: 9rem;

  /* Easing curves */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  /* Transitions */
  --t-fast:   0.25s var(--ease-out);
  --t-mid:    0.5s  var(--ease-out);
  --t-slow:   0.8s  var(--ease-out);
}

/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--f-body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: auto;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── TIPOGRAFIA GLOBAL ──────────────────────── */
.sec-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.label-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.sec-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
}
.sec-title em {
  font-style: italic;
  color: var(--gold);
}
.sec-head { margin-bottom: 4rem; }

/* ── NAVBAR ─────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; width: 100%;
  z-index: 500;
  padding: 1.5rem 0;
  transition: padding var(--t-mid), background var(--t-mid);
}
.navbar.scrolled {
  padding: 0.9rem 0;
  background: rgba(13,10,11,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.logo-monogram {
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-logo:hover .logo-monogram {
  background: var(--gold);
  color: var(--ink);
}
.logo-name {
  display: block;
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
}
.logo-sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(253,250,246,0.7);
  position: relative;
  transition: color var(--t-fast);
  overflow: hidden;
  display: inline-block;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-mid);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.nav-wa {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.nav-wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

/* HAMBURGER */
.hamburger {
  display: none;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: transform var(--t-mid), opacity var(--t-mid), width var(--t-mid);
  transform-origin: center;
}
.hamburger .h-top { width: 24px; }
.hamburger .h-mid { width: 16px; }
.hamburger .h-bot { width: 20px; }
.hamburger.open .h-top { transform: translateY(7px) rotate(45deg); width: 24px; }
.hamburger.open .h-mid { opacity: 0; }
.hamburger.open .h-bot { transform: translateY(-7px) rotate(-45deg); width: 24px; }

/* MOBILE OVERLAY */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 490;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-in-out), visibility 0.5s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.mob-link {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 7vw, 3rem);
  font-weight: 400;
  color: rgba(253,250,246,0.4);
  transition: color var(--t-fast), transform var(--t-mid);
  transform: translateX(-10px);
  display: inline-block;
}
.mobile-overlay.open .mob-link {
  color: var(--white);
  transform: translateX(0);
}
.mobile-overlay.open .mob-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-overlay.open .mob-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-overlay.open .mob-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-overlay.open .mob-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-overlay.open .mob-link:nth-child(5) { transition-delay: 0.25s; }
.mob-link:hover { color: var(--gold); }

.mobile-footer {
  position: absolute;
  bottom: 3rem; left: 3rem;
  display: flex;
  gap: 1.5rem;
}
.mobile-footer a {
  font-size: 1.2rem;
  color: var(--muted);
  transition: color var(--t-fast);
}
.mobile-footer a:hover { color: var(--gold); }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.08);
  animation: heroReveal 1.8s var(--ease-out) 0.4s both;
  filter: brightness(0.55) saturate(0.8);
}
@keyframes heroReveal {
  from { transform: scale(1.14); }
  to   { transform: scale(1); }
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 20% 50%, rgba(13,10,11,0.35) 0%, transparent 70%),
    linear-gradient(to right, rgba(13,10,11,0.8) 0%, rgba(13,10,11,0.1) 60%, rgba(13,10,11,0.5) 100%),
    linear-gradient(to top, rgba(13,10,11,0.7) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Hero left */
.hero-left { max-width: 600px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 300;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.9s var(--ease-out) 1s both;
}
.eyebrow-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.ht-line {
  display: block;
  animation: heroLineIn 1s var(--ease-out) both;
}
.ht-1 { animation-delay: 1.1s; }
.ht-2 {
  animation-delay: 1.25s;
  color: var(--gold-lt);
  font-style: italic;
  padding-left: 2rem;
}
@keyframes heroLineIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 200;
  color: rgba(253,250,246,0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.9s var(--ease-out) 1.5s both;
}
.hero-sub em { color: var(--gold-lt); font-style: italic; }

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s var(--ease-out) 1.7s both;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* BOTÃO LUXO */
.btn-lux {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--gold);
}
.btn-lux-bg {
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-in-out);
  z-index: 0;
}
.btn-lux:hover .btn-lux-bg { transform: scaleX(1); }
.btn-lux-text {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  transition: color 0.35s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-lux:hover .btn-lux-text { color: var(--ink); }

/* BOTÃO GHOST */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(253,250,246,0.7);
  border: 1px solid rgba(253,250,246,0.2);
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.btn-ghost:hover {
  color: #fff;
  border-color: #25D366;
  background: rgba(37,211,102,0.12);
}

/* Hero right — badge */
.hero-side {
  flex-shrink: 0;
  animation: fadeSlideUp 0.9s var(--ease-out) 2s both;
}
.hero-badge {
  position: relative;
  width: 140px; height: 140px;
}
.badge-ring {
  width: 100%; height: 100%;
  animation: rotateBadge 18s linear infinite;
  fill: none;
}
@keyframes rotateBadge {
  to { transform: rotate(360deg); }
}
.badge-text-svg {
  font-size: 8.5px;
  fill: var(--gold);
  letter-spacing: 2.5px;
  font-family: var(--f-body);
  text-transform: uppercase;
}
.badge-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.badge-num {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Hero bottom */
.hero-bottom {
  position: absolute;
  bottom: 2.5rem; left: 0; right: 0;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  animation: fadeSlideUp 1s var(--ease-out) 2.2s both;
}
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,250,246,0.4);
}
.scroll-dot {
  width: 4px; height: 36px;
  position: relative;
  overflow: hidden;
  background: rgba(253,250,246,0.15);
  border-radius: 2px;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50%;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(100%); }
  100% { transform: translateY(200%); }
}
.hero-counter {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hc-item { text-align: center; }
.hc-item strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
}
.hc-item span {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.hc-divider {
  width: 1px; height: 28px;
  background: rgba(201,169,110,0.3);
}

/* ── MANIFESTO ──────────────────────────────── */
.manifesto {
  padding: 6rem 0;
  overflow: hidden;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.manifesto-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.4), transparent);
}
.manifesto-quote {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.manifesto-quote em { color: var(--gold-lt); }

/* ── SERVIÇOS ───────────────────────────────── */
.servicos {
  padding: var(--sp-xl) 0;
  background: var(--ink);
}
.servicos-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.servico-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  transition: background var(--t-mid);
}
.servico-item:last-child { border-bottom: none; }
.servico-item:hover { background: rgba(201,169,110,0.03); }
.si-reverse { direction: rtl; }

.si-img-wrap {
  position: relative;
  overflow: hidden;
}
.si-img {
  transition: transform 0.9s var(--ease-out), filter 0.6s ease;
  filter: saturate(0.7) brightness(0.8);
}
.servico-item:hover .si-img {
  transform: scale(1.04);
  filter: saturate(0.9) brightness(0.9);
}
.si-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,10,11,0.5), rgba(13,10,11,0.1));
  transition: opacity var(--t-mid);
}
.servico-item:hover .si-img-overlay { opacity: 0.3; }

.si-badge-premium {
  position: absolute;
  top: 2rem; right: 2rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
}

.si-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.si-number {
  font-family: var(--f-display);
  font-size: 5rem;
  font-weight: 400;
  color: rgba(201,169,110,0.12);
  line-height: 1;
  margin-bottom: -1rem;
}
.si-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
}
.si-title em { color: var(--gold); font-style: italic; }
.si-divider {
  width: 48px; height: 1px;
  background: var(--gold);
  transition: width var(--t-slow);
}
.servico-item:hover .si-divider { width: 80px; }
.si-desc {
  font-weight: 200;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 400px;
}
.si-specs {
  display: flex;
  gap: 2rem;
}
.si-specs li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.75rem;
}
.si-specs li span {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-size: 0.62rem;
}
.si-specs li strong { color: var(--white); font-weight: 400; }

.si-price-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201,169,110,0.15);
  flex-wrap: wrap;
}
.si-price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.si-price span {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.si-price strong {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
}

.si-cta {
  margin-left: auto;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,169,110,0.4);
  padding-bottom: 2px;
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast);
  position: relative;
}
.si-cta::after {
  content: ' →';
  transition: letter-spacing var(--t-fast);
}
.si-cta:hover {
  color: var(--gold-lt);
  border-color: var(--gold-lt);
}
.si-cta:hover::after { letter-spacing: 0.25em; }

/* ── GALERIA ────────────────────────────────── */
.galeria {
  padding: var(--sp-xl) 0;
  background: var(--ink-soft);
}
.galeria .container { margin-bottom: 3rem; }

.galeria-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 4px;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.gt-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gt-item.tall { grid-row: span 2; }
.gt-item img {
  transition: transform 0.7s var(--ease-out), filter 0.5s ease;
  filter: saturate(0.65) brightness(0.75);
}
.gt-item:hover img {
  transform: scale(1.07);
  filter: saturate(0.9) brightness(0.9);
}
.gt-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(13,10,11,0.85), transparent);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.gt-item:hover .gt-label { transform: translateY(0); }
.gt-label span {
  font-family: var(--f-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-lt);
}

/* ── DEPOIMENTOS ────────────────────────────── */
.depoimentos {
  padding: var(--sp-xl) 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.depoimentos::before {
  content: '"';
  position: absolute;
  top: -4rem; left: 3%;
  font-family: var(--f-display);
  font-size: clamp(16rem, 28vw, 28rem);
  color: rgba(201,169,110,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.dep-slider {
  position: relative;
  overflow: hidden;
}
.dep-track {
  display: flex;
  transition: transform 0.6s var(--ease-in-out);
  will-change: transform;
}
.dep-card {
  min-width: 100%;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.dep-stars {
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.dep-card p {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  max-width: 720px;
  line-height: 1.7;
}
.dep-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.dep-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--gold);
}
.dep-info { text-align: left; }
.dep-info strong { display: block; font-size: 0.875rem; font-weight: 400; color: var(--white); }
.dep-info span   { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

.dep-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
.dep-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,169,110,0.3);
  background: none;
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.dep-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.dep-dots { display: flex; gap: 0.5rem; }
.dep-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,169,110,0.25);
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
}
.dep-dot.active { background: var(--gold); transform: scale(1.3); }

/* ── AGENDAMENTO ────────────────────────────── */
.agendamento {
  padding: var(--sp-xl) 0;
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
}
.agendamento::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, rgba(201,169,110,0.04), transparent);
  pointer-events: none;
}

.agend-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
}
.agend-desc {
  font-weight: 200;
  font-size: 0.95rem;
  color: var(--muted);
  margin: 1.5rem 0 2.5rem;
  line-height: 1.8;
}

.horario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.1);
  margin-bottom: 2.5rem;
}
.hg-item {
  background: var(--ink-soft);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: background var(--t-fast);
}
.hg-item:hover { background: rgba(201,169,110,0.06); }
.hg-item span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.hg-item strong { font-size: 0.9rem; font-weight: 400; color: var(--white); }
.hg-item.closed strong { color: var(--muted); }

.agend-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.ac-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
  transition: color var(--t-fast);
}
.ac-item i { color: var(--gold); width: 16px; font-size: 1rem; }
.ac-item:hover { color: var(--cream); }

/* FORMULÁRIO FLOAT LABEL */
.agend-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.af-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.af-group {
  position: relative;
}
.af-group input,
.af-group select,
.af-group textarea {
  width: 100%;
  padding: 1.1rem 1rem 0.6rem;
  background: rgba(255,255,255,0.03);
  border: none;
  border-bottom: 1px solid rgba(201,169,110,0.25);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--t-mid), background var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.af-group input:focus,
.af-group select:focus,
.af-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,0.05);
}
.af-group input.error,
.af-group select.error { border-color: #e05; }

/* Float label */
.af-group label {
  position: absolute;
  top: 0.9rem; left: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
  pointer-events: none;
}
.af-group input:focus ~ label,
.af-group input:not(:placeholder-shown) ~ label,
.af-group select:focus ~ label,
.af-group select:valid ~ label,
.af-group textarea:focus ~ label,
.af-group textarea:not(:placeholder-shown) ~ label {
  top: 0.2rem;
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Select arrow */
.af-group select option { background: var(--ink); color: var(--white); }
.af-group::after {
  content: '';
  pointer-events: none;
}

.af-error {
  display: block;
  font-size: 0.72rem;
  color: #e05566;
  min-height: 1rem;
  padding-top: 0.2rem;
}

/* SUBMIT BUTTON */
.btn-submit {
  position: relative;
  width: 100%;
  padding: 1.1rem;
  background: none;
  border: 1px solid var(--gold);
  cursor: pointer;
  overflow: hidden;
}
.bs-bg {
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-in-out);
}
.btn-submit:hover .bs-bg { transform: scaleX(1); }
.bs-text {
  position: relative;
  z-index: 1;
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  transition: color 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.btn-submit:hover .bs-text { color: var(--ink); }

/* ── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(201,169,110,0.1);
  padding: 3rem 0 2rem;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.ft-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ft-brand strong { display: block; font-family: var(--f-display); font-size: 1.1rem; font-weight: 400; color: var(--white); }
.ft-brand em { display: block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-style: normal; }

.ft-social { display: flex; gap: 1.25rem; }
.ft-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
  cursor: pointer;
}
.ft-social a:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.72rem; color: var(--muted); }
.ft-made span { color: var(--gold); }

/* ── WHATSAPP FLUTUANTE ─────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 400;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.wa-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.35);
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(0.9); opacity: 0.8; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { opacity: 0; }
}

/* ── SCROLL REVEAL ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: none; }

/* ── RESPONSIVIDADE ─────────────────────────── */
@media (max-width: 1024px) {
  .servico-item,
  .si-reverse { grid-template-columns: 1fr; min-height: auto; }
  .si-img-wrap { aspect-ratio: 16/9; }
  .si-content { padding: 3rem 2.5rem; }
  .agend-grid { grid-template-columns: 1fr; gap: 3rem; }
  .manifesto-quote { white-space: normal; }
}

@media (max-width: 768px) {
  :root { --sp-xl: 5rem; }
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .hero-content { flex-direction: column; justify-content: center; }
  .hero-side { display: none; }
  .hero-bottom { position: static; margin-top: 2rem; flex-direction: column; gap: 1.5rem; }
  .hero-counter { align-self: flex-start; }
  .galeria-track { grid-template-columns: repeat(2, 1fr); padding: 0 1rem; }
  .gt-item.tall { grid-row: span 1; }
  .dep-card { padding: 0 1rem; }
  .af-row { grid-template-columns: 1fr; }
  .manifesto-inner { flex-direction: column; gap: 1rem; }
  .manifesto-line { width: 48px; height: 1px; flex: none; }
  .horario-grid { grid-template-columns: 1fr; }
  .footer-top { justify-content: center; text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-lux, .btn-ghost { width: 100%; justify-content: center; }
  .galeria-track { grid-template-columns: 1fr; }
  .si-content { padding: 2rem 1.5rem; }
}

/* Wrapper externo */

.servicos-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.servico-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  transition: background var(--t-mid);
}

.si-reverse > * { direction: ltr; }

/* ============================================================
   ROLETA DE DEPOIMENTOS
   ============================================================ */

.depoimentos {
  padding: var(--sp-xl) 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.dep-quote-icon {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-display);
  font-size: clamp(12rem, 22vw, 22rem);
  color: rgba(201,169,110,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.dep-roleta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.dep-stage {
  position: relative;
  width: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cada card de depoimento */
.dep-item {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.dep-item.dep-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  position: relative;
}

.dep-item.dep-exit-up {
  opacity: 0;
  transform: translateY(-28px) scale(0.97);
  transition: opacity 0.4s var(--ease-in-out), transform 0.4s var(--ease-in-out);
}

.dep-item.dep-exit-down {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.4s var(--ease-in-out), transform 0.4s var(--ease-in-out);
}

.dep-text {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  max-width: 700px;
  line-height: 1.75;
}

.dep-stars {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.dep-roleta-controls {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.dep-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  background: none;
  color: var(--gold);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), border-color var(--t-fast),
              color var(--t-fast), transform var(--t-fast);
}

.dep-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: scale(1.08);
}

.dep-roleta-dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.dep-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,169,110,0.22);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background var(--t-fast), transform var(--t-fast), width var(--t-fast);
}

.dep-dot.active {
  background: var(--gold);
  transform: scale(1.35);
  width: 18px;
  border-radius: 3px;
}

.dep-progress-bar {
  width: 120px;
  height: 1px;
  background: rgba(201,169,110,0.15);
  overflow: hidden;
  border-radius: 1px;
}

.dep-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.05s linear;
}

/* Responsivo */
@media (max-width: 768px) {
  .servico-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .si-img-wrap { aspect-ratio: 16/9; }
  .dep-item { padding: 0 0.5rem; }
  }
