@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* ── VARIÁVEIS ── */
:root {
  --gold:       #af8b5c;
  --gold-light: #c9a97a;
  --black:      #161616;
  --sand:       #ede3d9;
  --white:      #ffffff;

  --pad-x:    clamp(24px, 6vw, 70px);
  --section-y: clamp(80px, 12vw, 150px);
  --gap-lg:   clamp(40px, 7vw, 90px);

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: clamp(100px, 10vw, 120px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--sand);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--gold); color: var(--white); }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 14px;
  border-radius: 4px;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── NAV ── */
nav {
  position: fixed;
  top: clamp(28px, 3.4vw, 38px);
  left: var(--pad-x);
  right: var(--pad-x);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(13px, 1.9vw, 18px) clamp(22px, 3vw, 36px);
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid rgba(175, 139, 92, 0.22);
  border-radius: 999px;
  box-shadow: 0 22px 55px -26px rgba(0, 0, 0, 0.6);
  transition:
    top 0.55s var(--ease),
    padding 0.55s var(--ease),
    background 0.55s var(--ease),
    box-shadow 0.55s var(--ease),
    border-color 0.55s var(--ease);
}

nav.scrolled {
  top: clamp(24px, 2.8vw, 30px);
  padding-top: clamp(10px, 1.5vw, 13px);
  padding-bottom: clamp(10px, 1.5vw, 13px);
  background: rgba(16, 16, 16, 0.8);
  border-color: rgba(175, 139, 92, 0.3);
  box-shadow: 0 16px 42px -22px rgba(0, 0, 0, 0.65);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.nav-monogram {
  width: 36px;
  height: 36px;
  transition: transform 0.6s var(--ease);
}
.nav-logo:hover .nav-monogram { transform: rotate(-8deg); }
.nav-monogram svg { width: 100%; height: 100%; }

.nav-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-wordmark .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--white);
  line-height: 1;
}
.nav-wordmark .name em { font-style: normal; color: var(--gold); }
.nav-wordmark .sub {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--gold);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 36px);
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  transition: color 0.4s var(--ease);
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.45s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  transition: background 0.45s var(--ease), transform 0.45s var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 210;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.45s var(--ease), opacity 0.35s var(--ease), background 0.4s var(--ease);
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 5vw, 34px);
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 8vw, 38px);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  transition: color 0.4s var(--ease), opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.12s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.19s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.26s; }
.mobile-menu a:hover { color: var(--gold); }

.mobile-menu .mobile-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 15px 50px;
  background: var(--gold);
  color: var(--white);
  margin-top: 10px;
}
.mobile-menu .tagline-mob {
  font-size: 8px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.22);
  position: absolute;
  bottom: 40px;
}

/* ── HERO ── */
#hero {
  min-height: 100svh;
  background: var(--black);
  display: grid;
  grid-template-columns: 55fr 45fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "label  ."
    "title  side"
    ".      side";
  padding: clamp(110px, 13vw, 140px) var(--pad-x) clamp(56px, 8vw, 88px);
  position: relative;
  overflow: hidden;
  gap: 0 clamp(40px, 5vw, 80px);
}

/* C fantasma de fundo */
#hero::before {
  content: 'C';
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(300px, 48vw, 680px);
  font-weight: 300;
  color: rgba(175, 139, 92, 0.06);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + var(--ph-x, 0px)), calc(-50% + var(--ph-y, 0px)));
  transition: transform 0.8s var(--ease-soft);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-label {
  grid-area: label;
  align-self: start;
  font-size: 13px;
  letter-spacing: 0.34em;
  color: var(--gold);
  text-transform: uppercase;
  animation: fadeUp 1.1s var(--ease) 0.15s both;
}

.hero-title {
  grid-area: title;
  align-self: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5.2vw, 84px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.04;
  animation: fadeUp 1.1s var(--ease) 0.32s both;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-side {
  grid-area: side;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: clamp(18px, 2.4vw, 28px);
  text-align: right;
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 2;
  color: rgba(255, 255, 255, 0.82);
  max-width: 340px;
  letter-spacing: 0.03em;
  animation: fadeUp 1.1s var(--ease) 0.5s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  animation: fadeUp 1.1s var(--ease) 0.68s both;
}

.hero-tagline {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: rgba(175, 139, 92, 0.5);
  text-transform: uppercase;
  animation: fadeUp 1.1s var(--ease) 0.8s both;
}

/* Botões hero */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 15px 38px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  display: inline-block;
  transition: background 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -18px rgba(175, 139, 92, 0.55);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.45s var(--ease);
}
.btn-ghost span { transition: transform 0.5s var(--ease); }
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover span { transform: translateY(3px); }

/* ── PARTILHADOS ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.36em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--black);
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── MÉTODO ── */
/* Areia partilhada com serviços; gradiente preto curto no topo funde
   discretamente com o hero.
   Mobile: head -> logo -> track -> dots (uma coluna).
   Desktop ≥1025: logo grande à esquerda, track e dots à direita. */
#metodo {
  background: var(--sand);
  position: relative;
  padding: var(--section-y) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "head"
    "logo"
    "track"
    "dots";
  gap: clamp(28px, 5vw, 44px);
  justify-items: center;
}

#metodo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(to bottom, var(--black), transparent);
  pointer-events: none;
  z-index: 0;
}

#metodo > * { position: relative; z-index: 1; }

.metodo-head  { grid-area: head;  text-align: center; max-width: 720px; }
.metodo-logo  { grid-area: logo; }
.metodo-track { grid-area: track; }
.metodo-dots  { grid-area: dots; }

.metodo-logo {
  position: relative;
  width: clamp(150px, 40vw, 200px);
  height: clamp(150px, 40vw, 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.metodo-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(175, 139, 92, 0.45);
  border-radius: 50%;
}

.metodo-c {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 12vw, 72px);
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0.02em;
}

.metodo-orbit {
  position: absolute;
  inset: 0;
  transform: rotate(0deg);
  transition: transform 0.7s var(--ease);
}

.metodo-ball {
  position: absolute;
  top: 0;
  left: 50%;
  width: 13px;
  height: 13px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(175, 139, 92, 0.12);
}

.metodo-track {
  width: 100%;
  max-width: 580px;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  /* pan-x pan-y: browser decide o eixo no primeiro movimento;
     swipe vertical sobre o carrossel volta a scrollar a página */
  touch-action: pan-x pan-y;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.metodo-track::-webkit-scrollbar { display: none; }
.metodo-track:active { cursor: grabbing; }

.metodo-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  min-height: 220px;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.metodo-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 64px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}

.metodo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.metodo-desc {
  font-size: 14px;
  line-height: 1.9;
  color: #6b6b6b;
  letter-spacing: 0.03em;
  max-width: 460px;
}

.metodo-dots { display: flex; gap: 6px; }

.metodo-dot {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  margin: 0;
  padding: 7px;
  background: transparent;
  cursor: pointer;
  line-height: 0;
  border-radius: 999px;
}
.metodo-dot::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(175, 139, 92, 0.22);
  transition: background 0.5s var(--ease), transform 0.5s var(--ease);
}
.metodo-dot.is-active::before { background: var(--gold); transform: scale(1.35); }
.metodo-dot:hover::before { background: rgba(175, 139, 92, 0.5); }
.metodo-dot:focus-visible { outline: 1px solid var(--gold); outline-offset: 2px; }

/* Desktop: 2 colunas (logo à esquerda, carrossel+dots à direita) */
@media (min-width: 1025px) {
  #metodo {
    grid-template-columns: 1fr 1.35fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "head head"
      "logo track"
      "logo dots";
    column-gap: clamp(56px, 7vw, 110px);
    row-gap: clamp(28px, 3vw, 48px);
    align-items: center;
    justify-items: stretch;
  }

  .metodo-head  { justify-self: center; }
  .metodo-logo  { justify-self: end;    align-self: center;
                  width: clamp(220px, 26vw, 320px);
                  height: clamp(220px, 26vw, 320px); }
  .metodo-c     { font-size: clamp(80px, 11vw, 132px); }
  .metodo-track { justify-self: stretch; align-self: center; max-width: 100%; }
  .metodo-dots  { justify-self: start;   padding-left: 6px; }
  .metodo-slide { min-height: 0;
                  justify-content: center;
                  align-items: flex-start;
                  text-align: left; }
  .metodo-num   { font-size: clamp(52px, 6vw, 76px); }
}

/* ── SERVIÇOS ── */
/* Mesma areia do método -> faixa contínua, sem corte entre secções */
#servicos {
  padding: var(--section-y) var(--pad-x);
  background: var(--sand);
}

.servicos-header {
  max-width: 880px;
  margin: 0 auto clamp(40px, 6vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.servicos-header p {
  font-size: 13px;
  color: #6b6b6b;
  max-width: 260px;
  line-height: 1.95;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.servicos-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid rgba(175, 139, 92, 0.2);
}

.servico-row {
  display: grid;
  grid-template-columns: clamp(38px, 6vw, 56px) 1fr;
  gap: clamp(16px, 4vw, 40px);
  align-items: baseline;
  padding: clamp(22px, 3.4vw, 34px) 2px;
  border-bottom: 1px solid rgba(175, 139, 92, 0.2);
  transition: background 0.35s var(--ease), padding-left 0.35s var(--ease);
  cursor: default;
}
.servico-row:hover { padding-left: 16px; background: rgba(175, 139, 92, 0.06); }

.servico-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.servico-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(21px, 3vw, 30px);
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  transition: color 0.4s var(--ease);
}
.servico-row:hover .servico-title { color: var(--gold); }

.servico-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #6b6b6b;
  letter-spacing: 0.03em;
  max-width: 62ch;
}

/* ── CTA ── */
/* Topo em areia curto para dissolver a vinda dos serviços, depois preto sólido */
#cta {
  padding: clamp(130px, 16vw, 200px) var(--pad-x) clamp(90px, 14vw, 160px);
  background:
    linear-gradient(
      to bottom,
      var(--sand) 0%,
      var(--black) 72px,
      var(--black) 100%
    );
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: 'CENTRA';
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 18vw, 260px);
  font-weight: 300;
  color: rgba(175, 139, 92, 0.045);
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}

.cta-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
}
.cta-title em { color: var(--gold); font-style: italic; }

.cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.80);
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 50px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: var(--gold);
  color: var(--white);
  padding: 16px 46px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: background 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.btn-cta-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -18px rgba(175, 139, 92, 0.6);
}

.btn-cta-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.55);
  padding: 16px 46px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: border-color 0.5s var(--ease), color 0.5s var(--ease), transform 0.5s var(--ease);
}
.btn-cta-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ── FOOTER ── */
footer {
  background: #0e0e0e;
  padding: clamp(56px, 8vw, 80px) var(--pad-x) 38px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(36px, 5vw, 52px);
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.footer-brand { max-width: 320px; }
.footer-brand .wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.32em;
  margin-bottom: 7px;
}
.footer-brand .wordmark em { color: var(--gold); font-style: normal; }
.footer-brand .tagline {
  font-size: 7.5px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.95;
  letter-spacing: 0.03em;
  max-width: 270px;
  margin: 0 auto;
}

.footer-col { text-align: center; }
.footer-col-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col ul li a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  transition: color 0.4s var(--ease);
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
  flex-direction: column;
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255, 255, 255, 0.35); letter-spacing: 0.08em; }
.footer-bottom p span { color: var(--gold); }

/* ── CURSOR CUSTOM ── */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"] { cursor: none; }
  .metodo-track, .metodo-track:active { cursor: none; }

  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-200px, -200px);
    will-change: transform;
  }

  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(175, 139, 92, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-200px, -200px);
    transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.4s var(--ease);
    will-change: transform;
  }

  body.cur-hover .cursor-ring { width: 56px; height: 56px; border-color: var(--gold); }
  body.cur-grab  .cursor-ring { width: 48px; height: 48px; border-color: var(--gold); opacity: 0.75; }
  body.cur-grab  .cursor-dot  { transform: scale(0.7); }
}

/* ── ANIMAÇÕES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 1s var(--ease) var(--reveal-delay, 0s),
    transform 1s var(--ease) var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── TABLET ≤1024px ── */
@media (max-width: 1024px) {
  .servicos-header { flex-direction: column; align-items: flex-start; }
}

/* ── MOBILE ≤768px ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: flex; }
  .nav-wordmark .sub { display: none; }

  #hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "label" "title" "side";
    gap: clamp(20px, 4vw, 32px) 0;
  }

  .hero-title { font-size: clamp(36px, 9vw, 54px); align-self: end; }
  .hero-side { align-items: flex-start; text-align: left; gap: 16px; }
  .hero-sub { max-width: 100%; }
  .hero-tagline { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; justify-content: flex-start; }
  .btn-primary { text-align: center; }
  .btn-ghost { justify-content: center; }

  .metodo-slide { min-height: 230px; }

  .servicos-header p { display: none; }

  .cta-buttons { flex-direction: column; align-items: stretch; }
  .btn-cta-primary, .btn-cta-ghost { text-align: center; width: 100%; }

  .footer-bottom { flex-direction: column; align-items: center; gap: 6px; }
}

/* ── SMALL ≤390px ── */
@media (max-width: 390px) {
  nav { padding: 12px 20px; }
  .nav-wordmark .name { font-size: 17px; letter-spacing: 0.28em; }
  .hero-title { font-size: 36px; }
  .section-title { font-size: 30px; }
  .cta-title { font-size: 32px; }
}
