/* ==============================
   RESET & CUSTOM PROPERTIES
============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:     #0a0805;
  --dark:      #343a40;
  --surface:   #1a1610;
  --surface2:  #221e17;
  --gold:      #c9a84c;
  --gold-primary: #ffe18e;
  --gold-lt:   #e0c47a;
  --gold-dim:  #8a6e32;
  --ivory:     #f4f0e8;
  --ivory-dim: #b8b0a0;
  --white:     #f8f9fa;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  --nav-h: 72px;
  --section-pad: clamp(5rem, 10vw, 9rem);
  --container: min(1200px, 100% - 3rem);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Skip link */
.skip-link {
  position: fixed; top: -100%; left: 1rem;
  background: var(--gold); color: var(--black);
  padding: .5rem 1rem; font-weight: 500;
  z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ==============================
   TYPOGRAPHY
============================== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }
img { max-width: 100%; display: block; }

/* ==============================
   LAYOUT UTILS
============================== */
.container { width: var(--container); margin-inline: auto; }

.section-label {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 1rem;
}

.section-heading {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--black);
  font-weight: 500;
}

.section-heading em {
  font-style: italic;
  color:  var(--black);
}

.gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-top: 1.5rem;
}

/* ==============================
   ANIMATIONS
============================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192, 142, 5, 0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ==============================
   BUTTONS
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease-out);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,168,76,.25);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.6);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ==============================
   NAV
============================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .5s var(--ease-out), border-color .5s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 8, 5, .88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(201, 168, 76, .08);
}

.nav__inner {
  width: var(--container);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  height: 32px;
}
.nav__logo img {
  height: 100%;
  width: auto;
}

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  list-style: none;
}

.nav__links a {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.767);
  transition: color .3s;
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease-out);
}

.nav__links a:hover { color: var(--ivory); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--gold); }
.nav__links a.active::after { width: 100%; }

/* Right side wrapper */
.nav__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* CTA Button */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, .3);
  padding: .6rem 1.4rem;
  transition: color .3s, border-color .3s, background .3s;
}

.nav__cta i {
  font-size: .7rem;
  transition: transform .3s var(--ease-out);
}

.nav__cta:hover {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.nav__cta:hover i {
  transform: translate(2px, -2px);
}

/* Hamburger toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.nav__toggle-bar {
  display: block;
  height: 1px;
  background: var(--ivory);
  transition: transform .4s var(--ease-out), opacity .3s, width .3s;
  transform-origin: center;
}

.nav__toggle-bar:nth-child(2) {
  width: 60%;
  align-self: flex-end;
}

.nav__toggle.open .nav__toggle-bar:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
  width: 100%;
}

.nav__toggle.open .nav__toggle-bar:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
  width: 100%;
}

/* ==============================
   MOBILE MENU
============================== */
.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-out);
}

.nav__mobile.open {
  pointer-events: all;
  clip-path: inset(0 0 0% 0);
}

.nav__mobile-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: calc(var(--nav-h) + 3rem) 2.5rem 3rem;
}

/* Nav list */
.nav__mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav__mobile-link {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 4rem);
  font-weight: 300;
  color: rgba(247, 247, 247, 0.536);
  border-top: 1px solid rgba(255,255,255,.04);
  padding: .6rem 0;
  transition: color .3s;
  line-height: 1.2;
}

.nav__mobile-link:last-child {
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.nav__mobile-link em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: .6rem;
  letter-spacing: .15em;
  color: var(--gold-dim);
  min-width: 1.5rem;
}

.nav__mobile-link:hover {
  color: var(--ivory);
}

/* Footer area */
.nav__mobile-footer {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.nav__mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 1rem 2rem;
  width: fit-content;
  transition: background .3s, transform .3s;
}

.nav__mobile-cta:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

.nav__mobile-tagline {
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, .2);
}

/* Stagger animation for links */
.nav__mobile.open .nav__mobile-link {
  animation: navLinkIn .5s var(--ease-out) both;
}
.nav__mobile-nav li:nth-child(1) .nav__mobile-link { animation-delay: .15s; }
.nav__mobile-nav li:nth-child(2) .nav__mobile-link { animation-delay: .2s; }
.nav__mobile-nav li:nth-child(3) .nav__mobile-link { animation-delay: .25s; }
.nav__mobile-nav li:nth-child(4) .nav__mobile-link { animation-delay: .3s; }
.nav__mobile-nav li:nth-child(5) .nav__mobile-link { animation-delay: .35s; }
.nav__mobile-nav li:nth-child(6) .nav__mobile-link { animation-delay: .4s; }

@keyframes navLinkIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,8,5,.82) 0%,
    rgba(0, 0, 0, 0.278) 50%,
    rgba(10, 8, 5, 0.326) 100%
  );
}

/* Grain texture */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #7a7a7a;
  background-size: 200px;
  opacity: .6;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--nav-h) 1.5rem 4rem;
  max-width: 820px;
}

.hero__eyebrow {
  font-size: .68rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  animation: fadeIn 1s var(--ease-out) .3s both;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold-dim);
}

.hero__title {
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: .5rem;
  animation: fadeUp 1.2s var(--ease-out) .5s both;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-lt);
  display: block;
}

.hero__sub {
  font-size: clamp(.85rem, 2vw, 1rem);
  font-weight: 300;
  color: var(--ivory-dim);
  letter-spacing: .06em;
  margin-top: 1.5rem;
  margin-bottom: 2.8rem;
  max-width: 480px;
  margin-inline: auto;
  animation: fadeUp 1s var(--ease-out) .8s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 1s var(--ease-out) 1s both;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  animation: fadeIn 1s var(--ease-out) 1.8s both;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ==============================
   STRIP / TICKER
============================== */
.strip {
  background: var(--gold);
  padding: .75rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.strip__track {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.strip__item {
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 2.5rem;
}
.strip__item span {
  margin-right: 2.5rem;
  opacity: .4;
}

/* ==============================
   BENEFITS
============================== */
.benefits {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.benefits__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.08);
}

.benefit-card {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3rem);
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .5s var(--ease-out);
}
.benefit-card:hover { background: var(--white);}
.benefit-card:hover::before { width: 100%; }

.benefit-card__icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--gold);
  display: block;
}

.benefit-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: .75rem;
}

.benefit-card__text {
  font-size: .85rem;
  color: var(--dark);
  line-height: 1.75;
}

/* ==============================
   SERVICES — GALLERY
============================== */
.services {
  background: var(--black);
}

/* ── Wrapper principal ── */
.svc-gallery {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  user-select: none;
}

/* ── Imagens empilhadas com fade ── */
.svc-gallery__images {
  position: absolute;
  inset: 0;
}

.svc-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.45, 0, 0.55, 1);
}
.svc-img.active { opacity: 1; }

.svc-img__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 6s ease-out;
  filter: brightness(.42) saturate(.65);
}
.svc-img.active .svc-img__bg {
  transform: scale(1);
}

/* Gradiente global */
.svc-gallery__gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(10,8,5,.55) 0%, transparent 35%),
    linear-gradient(to top,    rgba(10,8,5,.80) 0%, transparent 55%),
    linear-gradient(to right,  rgba(10,8,5,.35) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Overlay: ocupa tudo, centraliza o container igual às outras seções ── */
.svc-gallery__overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

/* Container dentro do overlay — mesma largura das outras seções */
.svc-gallery__layout {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(4rem, 10vh, 7rem);
  padding-bottom: clamp(2rem, 5vh, 3rem);
  pointer-events: none;
}

/* ── Linha superior: conteúdo (esq) + índice (dir) ── */
.svc-gallery__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 4rem);
  flex: 1;
}

/* Conteúdo — lado esquerdo */
.svc-gallery__content {
  flex: 1;
  max-width: 540px;
  text-align: left;
  pointer-events: all;
}

/* Animação de entrada */
.svc-gallery__content.is-entering .svc-content__tag,
.svc-gallery__content.is-entering .svc-content__title,
.svc-gallery__content.is-entering .svc-content__desc,
.svc-gallery__content.is-entering .svc-content__footer {
  animation: svcFadeUp .65s var(--ease-out) both;
}
.svc-gallery__content.is-entering .svc-content__title  { animation-delay: .08s; }
.svc-gallery__content.is-entering .svc-content__desc   { animation-delay: .16s; }
.svc-gallery__content.is-entering .svc-content__footer { animation-delay: .24s; }

@keyframes svcFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* Elementos de conteúdo */
.svc-content__tag {
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  font-weight: 800;
}
.svc-content__tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-dim);
}

.svc-content__badge {
  background: var(--gold);
  color: var(--black);
  font-size: .52rem;
  letter-spacing: .18em;
  padding: .25rem .7rem;
  margin-left: .5rem;
}

.svc-content__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.0;
  margin-bottom: 1.25rem;
}
.svc-content__title span {
  font-style: italic;
  color: var(--gold-lt);
 
}

.svc-content__desc {
  font-size: clamp(.82rem, 1.2vw, .95rem);
  color: var(--ivory-dim);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 400px;
}

.svc-content__footer {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.svc-content__price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
}
.svc-content__price sup {
  font-size: .9rem;
  vertical-align: super;
  margin-right: .1rem;
}

.svc-content__link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ivory);
  border: 1px solid rgba(244,240,232,.3);
  padding: .85rem 1.8rem;
  transition: all .3s var(--ease-out);
}
.svc-content__link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.svc-content__link i { transition: transform .3s; }
.svc-content__link:hover i { transform: translateX(4px); }

/* Índice — lado direito, encostado na borda do container */
.svc-gallery__index {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  pointer-events: all;
  flex-shrink: 0;
  align-self: center;
}

.svc-idx-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  cursor: pointer;
  padding: .4rem 0;
  transition: opacity .3s;
  opacity: .38;
  background: none;
  border: none;
  color: inherit;
  /* label à esquerda, linha à direita — fica encostado na borda */
  flex-direction: row;
  justify-content: flex-end;
  text-align: right;
}
.svc-idx-item:hover { opacity: .7; }
.svc-idx-item.active { opacity: 1; }

.svc-idx-item__line {
  width: 2px;
  height: 28px;
  background: rgba(244,240,232,.2);
  transition: height .4s var(--ease-out), background .4s;
  flex-shrink: 0;
}
.svc-idx-item.active .svc-idx-item__line {
  height: 48px;
  background: var(--gold);
}

.svc-idx-item__label {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  white-space: nowrap;
  transition: color .3s;
}
.svc-idx-item.active .svc-idx-item__label { color: var(--ivory); }

/* ── Barra inferior: setas + progress + contador ── */
.svc-gallery__bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  pointer-events: all;
  flex-shrink: 0;
}

.svc-gallery__arrow {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,.3);
  background: transparent;
  color: var(--ivory-dim);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s var(--ease-out);
  flex-shrink: 0;
}
.svc-gallery__arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.svc-gallery__progress {
  flex: 1;
  height: 1px;
  background: rgba(244,240,232,.15);
  position: relative;
  overflow: hidden;
}
.svc-gallery__progress-bar {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  background: var(--gold);
  transition: width .9s cubic-bezier(0.76, 0, 0.24, 1);
}

.svc-gallery__count {
  font-size: .62rem;
  letter-spacing: .2em;
  color: var(--ivory-dim);
  font-family: var(--font-display);
  white-space: nowrap;
}

/* ── Cursor dragging ── */
.svc-gallery.is-dragging { cursor: grabbing; }

/* ── Responsivo tablet ── */
@media (max-width: 900px) {
  .svc-content__title { font-size: clamp(2.2rem, 6vw, 3.5rem); }
  .svc-content__desc  { font-size: .85rem; max-width: 100%; }
  .svc-gallery__content { max-width: 420px; }
}

/* ── Responsivo mobile ── */
@media (max-width: 768px) {
  /* Altura compacta — não fullscreen */
  .svc-gallery {
    height: auto;
    min-height: 0;
  }

  .svc-gallery__images {
    position: relative;
    height: 100svh;
    max-height: 620px;
  }

  .svc-img {
    position: absolute;
    inset: 0;
  }

  .svc-gallery__gradient {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to top,    rgba(10,8,5,.96) 0%, rgba(10,8,5,.5) 45%, rgba(10,8,5,.15) 100%),
      linear-gradient(to bottom, rgba(10,8,5,.6)  0%, transparent 25%);
  }

  /* Overlay cobre exatamente a imagem */
  .svc-gallery__overlay {
    position: absolute;
    top: 0;
    left: 0; right: 0;
    bottom: 0;
  }

  .svc-gallery__layout {
    padding-top: clamp(4.5rem, 10vh, 6rem);
    padding-bottom: 1.25rem;
    height: 100%;
  }

  /* Índice some no mobile */
  .svc-gallery__index { display: none; }

  .svc-gallery__top {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
    flex: 1;
  }

  .svc-gallery__content {
    max-width: 100%;
  }

  .svc-content__tag {
    font-size: .58rem;
    margin-bottom: .75rem;
  }

  .svc-content__title {
    font-size: clamp(2.2rem, 9vw, 3rem);
    margin-bottom: .75rem;
  }

  .svc-content__desc {
    font-size: .82rem;
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 1.25rem;
  }

  .svc-content__footer {
    gap: 1rem;
    align-items: center;
  }

  .svc-content__price {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .svc-content__link {
    padding: .7rem 1.4rem;
    font-size: .64rem;
  }

  /* Barra de controles compacta */
  .svc-gallery__bar {
    gap: .75rem;
    margin-top: .75rem;
    flex-shrink: 0;
  }

  .svc-gallery__arrow {
    width: 38px; height: 38px;
    font-size: .9rem;
  }

  .svc-gallery__count {
    font-size: .58rem;
  }
}

/* ==============================
   ABOUT
============================== */
.about {
  padding: var(--section-pad) 0;
  background: var(--black);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about__img-wrap {
  position: relative;
}
.about__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  filter: brightness(.9) saturate(.8);
  display: block;
  max-height: 600px;
}
.about__img-accent {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 45%;
  aspect-ratio: 1;
  border: 1px solid rgba(201,168,76,.25);
  pointer-events: none;
}
.about__img-accent2 {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 35%;
  aspect-ratio: 1;
  background: var(--gold-dim);
  opacity: .12;
  pointer-events: none;
}

.about__content h2 {
  color: var(--white);
}

.about__content em {
  color: var(--white);
}

.about__text {
  font-size: clamp(.88rem, 1.5vw, 1rem);
  color: var(--ivory-dim);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,.1);
  margin-bottom: 2.5rem;
}

.stat {
  background: var(--ivory);
  padding: 1.5rem 1rem;
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  display: block;
}

.stat__label {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--dark);
  margin-top: .4rem;
  display: block;
}

/* ==============================
   PRICE TABLE SECTION
============================== */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.pricing__header { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.price-group {
  border: 1px solid rgba(3, 3, 2, 0.199);
  padding: 2rem;
}

.price-group__title {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(3, 3, 2, 0.199);
}

.price-list { list-style: none; }

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.101);
  font-size: .88rem;
  color: var(--surface2);
  gap: 1rem;
}
.price-list li:last-child { border-bottom: none; }

.price-list__name { flex: 1; }
.price-list__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--surface2);
  white-space: nowrap;
}

/* ==============================
   CTA BAND
============================== */
.cta-band {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
  text-align: center;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center 60%;
  filter: brightness(.2) saturate(.5);
}

.cta-band__inner { position: relative; z-index: 1; }
.cta-band__title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.cta-band__title em { font-style: italic; color: var(--gold-lt); }
.cta-band__sub {
  font-size: .9rem;
  color: var(--ivory-dim);
  margin-bottom: 2.5rem;
  max-width: 420px;
  margin-inline: auto;
}
.cta-band__note {
  margin-top: 1.25rem;
  font-size: .68rem;
  letter-spacing: .15em;
  color: var(--ivory-dim);
}


/* ==============================
   CONTACT
============================== */
.contact {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--ivory);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
}

.contact__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__info-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact__info-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(4, 3, 2, 0.147);
}
.contact__info-item:first-child { padding-top: 0; }
.contact__info-item:last-child  { border-bottom: none; }

.contact__info-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dim);
  font-size: .85rem;
}

.contact__info-label {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
  margin-bottom: .15rem;
}
.contact__info-val {
  font-size: .83rem;
  color: var(--dark);
  line-height: 1.6;
}
.contact__info-val a {
  color:  var(--dark);
  transition: color .2s;
}
.contact__info-val a:hover { color: var(--gold); }

.contact__actions {
  margin-top: 1.25rem;
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.contact__actions .btn {
  padding: .75rem 1.6rem;
  font-size: .7rem;
}

/* Coluna direita — mapa */
.contact__map {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.1);
}
.contact__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  transition: filter .4s;
}
.contact__map:hover iframe { filter: grayscale(.6) brightness(.7); }

/* ==============================
   FOOTER
============================== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,.15);
  padding: 2.5rem 0 1.5rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px;
  height: 2px;
  background: var(--gold);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.41);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .15rem;
}
.footer__brand-tag {
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
  margin-bottom: .85rem;
}
.footer__brand-text {
  font-size: .8rem;
  color: var(--ivory-dim);
  line-height: 1.75;
  max-width: 260px;
  opacity: .7;
}

.footer__col-title {
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  opacity: .85;
  font-weight: 500;
  font-weight: 500;
}

.footer__links { list-style: none; }
.footer__links li + li { margin-top: .45rem; }
.footer__links a {
  font-size: .78rem;
  color: var(--white);
  opacity: .6;
  transition: color .2s, opacity .2s, padding-left .2s;
}
.footer__links a:hover { color: var(--gold); opacity: 1; padding-left: 4px; }

.footer__socials {
  display: flex;
  gap: .6rem;
  margin-top: .85rem;
}
.footer__social {
  width: 32px; height: 32px;
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  transition: all .25s;
  opacity: .7;
}
.footer__social:hover {
  border-color: var(--gold);
  color: var(--gold);
  opacity: 1;
  transform: translateY(-2px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: .68rem;
  color: var(--white);
  letter-spacing: 1px;
}
.footer__credit {
  font-size: .65rem;
  color: var(--ivory-dim);
  
}
.footer__credit a { transition: color .2s, opacity .2s; }
.footer__credit a:hover { color: var(--gold); opacity: 1; }

.footer__brand-logo {
  display: inline-block;
  margin-bottom: .6rem;
  opacity: .85;
  transition: opacity .2s;
}
.footer__brand-logo:hover { opacity: 1; }
.footer__brand-logo img { display: block; }

.footer__hours li {
  color: #fff;
  font-size: .78rem;
  opacity: .6;
}
.footer__hours-closed { opacity: .4; }



/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 960px) {
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .contact__map {
    min-height: 280px;
  }
}

@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
  }
  .about__img-wrap {
    max-width: 100%;
    margin-inline: auto;
  }
  .about__img {
    aspect-ratio: 3/2;
    max-height: 320px;
  }
  .about__img-accent,
  .about__img-accent2 { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .about__stats { grid-template-columns: repeat(3, 1fr); }
  .about__content {
    text-align: center;
  }
  .about__content .gold-line {
    margin-inline: auto;
  }
  .about__content .reveal:has(.btn) {
    display: flex;
    justify-content: center;
  }
  .about__text {
    font-size: clamp(.9rem, 2vw, 1rem);
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links, .nav__right .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .services__header { flex-direction: column; align-items: flex-start; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .contact__map { min-height: 240px; }
  .contact__actions .btn { flex: 1; justify-content: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .about__stats { grid-template-columns: repeat(3, 1fr); }
  .about__stats .stat:last-child { grid-column: auto; }
  .about__img {
    aspect-ratio: 4/3;
    max-height: 260px;
  }
  .stat__number { font-size: clamp(1.4rem, 5.5vw, 2rem); }
  .stat__label { font-size: .58rem; letter-spacing: .08em; }
  .stat { padding: 1.1rem .4rem; }
  .pricing__grid { grid-template-columns: 1fr; }
  .contact__actions { flex-direction: column; }
  .contact__actions .btn { justify-content: center; }
  .contact__map { height: 200px; }
  .services__btn { width: 38px; height: 38px; font-size: .95rem; }
}

@media (max-width: 360px) {
  .about__stats { grid-template-columns: 1fr 1fr 1fr; }
  .stat__number { font-size: 1.25rem; }
  .stat__label { font-size: .55rem; letter-spacing: .05em; }
  .stat { padding: 1rem .3rem; }
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
/* ============================================================
   FAB STACK — voltar ao topo (cima) + WhatsApp (baixo)
   Alinhamento via container flex, tamanho único 52 px
============================================================ */

.fab-stack {
  position: fixed;
  right: 1.6rem;
  bottom: 1.8rem;
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

/* ── base comum ── */
.fab {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
}
.fab:active { transform: scale(.93) !important; }

/* ícone centralizado */
.fab__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform .3s var(--ease-out), color .2s ease;
}

/* ============================================================
   VOLTAR AO TOPO
============================================================ */
.fab--top {
  background: var(--surface2);
  color: var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,.5);

  /* oculto por padrão — aparece ao scroll */
  opacity: 0;
  transform: translateY(10px) scale(.82);
  pointer-events: none;
  transition:
    opacity   .4s ease,
    transform .4s var(--ease-out),
    box-shadow .25s ease;
}

.fab--top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* borda dourada via outline animado */
.fab--top::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,.3);
  transition: border-color .25s ease, inset .25s ease;
}



/* anel de progresso SVG */
.fab__progress {
  position: absolute;
  inset: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  transform: rotate(-90deg);
  pointer-events: none;
}
.fab__progress-track {
  fill: none;
  stroke: rgba(201,168,76,.12);
  stroke-width: 2;
}
.fab__progress-fill {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 0 157;          /* circunferência r=25 ≈ 157 */
  transition: stroke-dasharray .15s linear;
}

/* ============================================================
   WHATSAPP
============================================================ */
.fab--wa {
  background: #1db954;
  color: var(--ivory);
  box-shadow: 0 4px 18px rgba(29,185,84,.4);
}
.fab--wa:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,185,84,.55);
}
.fab--wa:hover .fab__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}
.fab--wa:hover .fab__inner { transform: rotate(-10deg) scale(1.1); }

/* anel de pulso */
.fab__pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid rgba(29,185,84,.55);
  animation: fab-pulse 2.6s ease-out infinite;
  z-index: 0;
}
@keyframes fab-pulse {
  0%   { transform: scale(1);    opacity: .8; }
  65%  { transform: scale(1.45); opacity: 0;  }
  100% { transform: scale(1.45); opacity: 0;  }
}

/* label lateral */
.fab__label {
  position: absolute;
  right: calc(100% + .85rem);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;
  background: var(--surface2);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .42rem .9rem;
  border-radius: 30px;
  border: 1px solid rgba(201,168,76,.18);
  box-shadow: 0 3px 12px rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 10;
}
/* setinha */
.fab__label::after {
  content: '';
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--surface2);
}

/* ============================================================
   MOBILE
============================================================ */
@media (max-width: 480px) {
  .fab-stack  { right: 1rem; bottom: 1.25rem; gap: .6rem; }
  .fab        { width: 48px; height: 48px; }
  .fab__inner { font-size: 1.2rem; }
  .fab__label { display: none; }
}

/* ───── REVIEWS ───── */
/* ===== VARIÁVEIS (caso não tenha) ===== */

/* ===== SEÇÃO ===== */
.avaliacoes {
  background: var(--ivory);
  padding: 50px 15px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1310px;
  margin: 0 auto;
}

/* ===== TÍTULO ===== */
 .sh5 {
  color: var(--black) !important;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}

/* ===== WRAPPER ===== */
.taggbox-wrapper {
  width: 100%;
}

/* ===== REMOVE ESPAÇO DO WIDGET ===== */
.tgb-widget {
  padding: 0 !important;
  background: transparent !important;
}

/* ===== HEADER (nota geral) ===== */
.tgb-header {
  padding: 10px 15px !important;
}

/* ===== GRID MAIS COMPACTO ===== */
.tgb-feed {
  gap: 12px !important;
}

/* ===== CARD ===== */
.tgb-post {
  background: var(--dark2) !important;
  padding: 14px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(255,255,255,.05) !important;
  transition: 0.3s;
}

/* HOVER */
.tgb-post:hover {
  transform: translateY(-3px);
}

/* ===== TEXTO ===== */
.tgb-post-text {
  font-size: 0.85rem !important;
  line-height: 1.3 !important;
  color: var(--off) !important;
  margin-bottom: 10px !important;
}

/* ===== ESTRELAS ===== */
.tgb-stars {
  color: var(--gold) !important;
  font-size: 11px !important;
  margin-bottom: 6px !important;
}

/* ===== AUTOR ===== */
.tgb-user-info {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

/* ===== AVATAR ===== */
.tgb-user-avatar {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
}

/* ===== NOME ===== */
.tgb-user-name {
  font-size: 0.75rem !important;
  color: var(--white) !important;
  font-weight: 500 !important;
}

/* ===== REMOVE ELEMENTOS INÚTEIS ===== */
.tgb-add-review,
.tgb-powered-by,
.tgb-review-date,
.tgb-source-icon {
  display: none !important;
}
