/* ===========================================================
   Helena Vasques — Fotografia Autoral
   Mobile-first · dark · sem blur
   =========================================================== */

:root {
  --bg:        #0b0b0c;
  --bg-soft:   #0f0f11;
  --bg-card:   #131316;
  --bg-lift:   #191a1d;

  --line:      rgba(241,237,229,.09);
  --line-2:    rgba(241,237,229,.17);
  --line-3:    rgba(241,237,229,.30);

  --ink:       #f1ede5;
  --ink-2:     #a5a19a;
  --ink-3:     #6c6963;

  --gold:      #c9a662;
  --gold-2:    #e6cf9d;
  --gold-dim:  rgba(201,166,98,.14);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --serif: "Instrument Serif", "Times New Roman", Georgia, serif;

  --pad: clamp(20px, 5.5vw, 84px);
  --maxw: 1320px;
  --r: 3px;

  color-scheme: dark;

  --e1: cubic-bezier(.22, 1, .36, 1);
  --e2: cubic-bezier(.65, .05, .36, 1);
  --t: .45s var(--e1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: -.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
::selection { background: var(--gold); color: #14110a; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- estrutura ---------- */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(88px, 13vh, 150px);
  border-top: 1px solid var(--line);
}

.skip {
  position: fixed;
  top: -100px; left: 16px;
  z-index: 999;
  background: var(--gold);
  color: #14110a;
  padding: 10px 18px;
  font-size: .8rem;
  font-weight: 500;
  transition: top .3s var(--e1);
}
.skip:focus { top: 16px; }

/* ---------- tipografia ---------- */

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 9.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.022em;
  color: var(--ink);
}
.h2 em { font-style: italic; color: var(--gold); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 22px;
}
.eyebrow__num {
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 90px;
}

.sec-head { margin-bottom: clamp(44px, 7vw, 76px); }
.sec-head__lead {
  margin-top: 24px;
  max-width: 46ch;
  color: var(--ink-2);
  font-size: clamp(.95rem, 3.4vw, 1.06rem);
}
.sec-head--split > div { min-width: 0; }

.prose p { color: var(--ink-2); margin-bottom: 18px; max-width: 54ch; }
.prose p:last-child { margin-bottom: 0; }

.frame {
  margin: 0;
  overflow: hidden;
  background: var(--bg-card);
  position: relative;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--e1);
}

/* ---------- botões ---------- */

.btn {
  --bh: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--bh);
  padding: 0 26px;
  border-radius: var(--r);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color .35s var(--e1), border-color .35s var(--e1), background-color .35s var(--e1);
}
.btn svg {
  width: 15px; height: 15px;
  fill: none; stroke: currentColor;
  stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .4s var(--e1);
  flex: none;
}
.btn > span { position: relative; z-index: 1; }
.btn:hover svg { transform: translateX(4px); }

.btn--solid {
  background: var(--gold);
  color: #16120a;
}
.btn--solid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-2);
  transform: translateY(101%);
  transition: transform .45s var(--e1);
  z-index: 0;
}
.btn--solid svg { position: relative; z-index: 1; }
.btn--solid:hover::before { transform: translateY(0); }

.btn--line {
  border: 1px solid var(--line-2);
  color: var(--ink);
}
.btn--line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .45s var(--e1);
}
.btn--line svg { position: relative; z-index: 1; }
.btn--line:hover { color: #14110a; border-color: var(--ink); }
.btn--line:hover::before { transform: translateY(0); }

.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold-dim);
  transition: border-color .35s var(--e1);
}
.link-arrow svg {
  width: 14px; height: 14px;
  fill: none; stroke: currentColor; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .4s var(--e1);
}
.link-arrow:hover { border-color: var(--gold); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- cursor ---------- */

.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  .cursor__ring, .cursor__dot {
    position: fixed;
    top: 0; left: 0;
    z-index: 900;
    pointer-events: none;
    border-radius: 50%;
    will-change: transform;
  }
  .cursor__ring {
    width: 34px; height: 34px;
    margin: -17px 0 0 -17px;
    border: 1px solid var(--line-3);
    transition: width .3s var(--e1), height .3s var(--e1),
                margin .3s var(--e1), border-color .3s var(--e1), opacity .3s;
  }
  .cursor__dot {
    width: 4px; height: 4px;
    margin: -2px 0 0 -2px;
    background: var(--gold);
    transition: opacity .3s;
  }
  body.cursor-hot .cursor__ring {
    width: 58px; height: 58px;
    margin: -29px 0 0 -29px;
    border-color: var(--gold);
  }
  body.cursor-hot .cursor__dot { opacity: 0; }
}

/* ---------- progresso ---------- */

.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 2px;
  z-index: 120;
  background: transparent;
}
.progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

/* ===========================================================
   AVISO DE DEMONSTRAÇÃO
   =========================================================== */

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 8, 9, .93);
  opacity: 0;
  transition: opacity .4s var(--e1);
}
.demo-modal[hidden] { display: none; }
.demo-modal.is-open { opacity: 1; }

.demo-modal__panel {
  width: 100%;
  max-width: 460px;
  max-height: 86svh;
  overflow-y: auto;
  padding: 32px 26px 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line-2);
  border-left: 2px solid var(--gold);
  border-radius: var(--r);
  transform: translateY(16px) scale(.98);
  opacity: 0;
  transition: transform .5s var(--e1), opacity .5s var(--e1);
}
.demo-modal.is-open .demo-modal__panel { transform: none; opacity: 1; }

.demo-modal__eyebrow {
  display: inline-block;
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.demo-modal__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 6vw, 1.85rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}
.demo-modal__body p {
  color: var(--ink-2);
  font-size: .92rem;
  margin-bottom: 14px;
}
.demo-modal__body p:last-child { margin-bottom: 0; }
.demo-modal__body strong { color: var(--ink); font-weight: 500; }

.demo-modal__credit {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--ink-3);
}
.demo-modal__credit a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
  transition: border-color .3s var(--e1);
}
.demo-modal__credit a:hover { border-color: var(--gold); }
.demo-modal__credit sup { font-size: .7em; }

.demo-modal__close { width: 100%; margin-top: 22px; }

.demo-badge {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100vw - 32px);
  padding: 10px 15px;
  background: rgba(11, 11, 12, .85);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .4s var(--e1), transform .4s var(--e1), visibility .4s,
              border-color .3s var(--e1), background-color .3s var(--e1);
}
.demo-badge.is-on { opacity: 1; visibility: visible; transform: translateY(0); }
.demo-badge:hover { border-color: var(--gold); background: rgba(11, 11, 12, .96); }

.demo-badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
  animation: pulse 2.6s ease-out infinite;
}
.demo-badge__text {
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 1024px) {
  .demo-badge { left: 26px; bottom: 26px; }
}

/* ===========================================================
   HEADER
   =========================================================== */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 110;
  transition: background-color .4s var(--e1), border-color .4s var(--e1);
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: var(--bg);
  border-bottom-color: var(--line);
}
.header.is-hidden { transform: translateY(-100%); }
.header { transition: background-color .4s var(--e1), border-color .4s var(--e1), transform .45s var(--e1); }

.header__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 16px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold);
  transition: border-color .35s var(--e1), background-color .35s var(--e1);
  flex: none;
}
.brand:hover .brand__mark { border-color: var(--gold); background: var(--gold-dim); }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.12rem;
  letter-spacing: .01em;
}
.brand__role {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.nav { display: none; }
.header__cta { display: none; }

.burger {
  width: 44px; height: 44px;
  margin-right: -10px;
  display: grid;
  place-content: center;
  gap: 6px;
}
.burger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--ink);
  transition: transform .4s var(--e1), opacity .3s;
}
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------- drawer ---------- */

.drawer {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: var(--bg);
  padding: 104px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform .6s var(--e1), visibility .6s;
  overflow-y: auto;
}
.drawer.is-open { transform: translateY(0); visibility: visible; }

.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 8vw, 2.4rem);
  line-height: 1;
  color: var(--ink);
  opacity: 0;
  transform: translateY(14px);
  transition: color .3s var(--e1);
}
.drawer.is-open .drawer__nav a {
  animation: drawerIn .55s var(--e1) forwards;
  animation-delay: calc(var(--i, 0) * 45ms + 120ms);
}
.drawer__nav a i {
  font-style: normal;
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .18em;
  color: var(--gold);
}
.drawer__nav a:hover { color: var(--gold); }

@keyframes drawerIn { to { opacity: 1; transform: translateY(0); } }

.drawer__foot { padding-top: 32px; }
.drawer__label {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.drawer__mail {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
  word-break: break-word;
}
.drawer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.drawer__social a { transition: color .3s; }
.drawer__social a:hover { color: var(--ink); }

body.is-locked { overflow: hidden; }

/* ===========================================================
   HERO
   =========================================================== */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  transform: scale(1.14);
  animation: heroSettle 16s var(--e1) forwards;
}
@keyframes heroSettle { to { transform: scale(1); } }

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,12,.86) 0%, rgba(11,11,12,.30) 32%, rgba(11,11,12,.72) 72%, var(--bg) 100%),
    linear-gradient(90deg, rgba(11,11,12,.75) 0%, rgba(11,11,12,.10) 62%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--pad) 132px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .9s var(--e1) .15s forwards;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201,166,98,.55);
  animation: pulse 2.6s ease-out infinite;
  flex: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,166,98,.5); }
  70%  { box-shadow: 0 0 0 9px rgba(201,166,98,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,166,98,0); }
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.9rem, 12.5vw, 7.4rem);
  line-height: .97;
  letter-spacing: -.03em;
  margin-bottom: 26px;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero__title .line > span {
  display: block;
  transform: translateY(105%);
  animation: lineUp 1.15s var(--e1) forwards;
}
.hero__title .line:nth-child(1) > span { animation-delay: .25s; }
.hero__title .line:nth-child(2) > span { animation-delay: .37s; }
.hero__title .line:nth-child(3) > span { animation-delay: .49s; }
.hero__title em { font-style: italic; color: var(--gold); }
@keyframes lineUp { to { transform: translateY(0); } }

.hero__lead {
  max-width: 44ch;
  color: var(--ink-2);
  font-size: clamp(.98rem, 3.8vw, 1.14rem);
  opacity: 0;
  animation: fadeUp .9s var(--e1) .78s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  opacity: 0;
  animation: fadeUp .9s var(--e1) .9s forwards;
}
.hero__actions .btn { flex: 1 1 auto; min-width: 190px; }

.hero__meta {
  display: none;
  gap: 40px;
  margin-top: 44px;
  opacity: 0;
  animation: fadeUp .9s var(--e1) 1.05s forwards;
}
.hero__meta li {
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero__meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  line-height: 1.1;
}

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

.hero__side { display: none; }

/* ---------- botão de descida ---------- */

.scroller {
  position: absolute;
  z-index: 3;
  left: 0; right: 0;
  bottom: 26px;
  width: max-content;
  max-width: calc(100% - var(--pad) * 2);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 13px 16px 15px 18px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: rgba(11, 11, 12, .42);
  overflow: hidden;
  opacity: 0;
  animation: fadeUp .9s var(--e1) 1.25s forwards;
  transition: border-color .4s var(--e1), background-color .4s var(--e1);
}
.scroller:hover { border-color: var(--gold); background: rgba(11, 11, 12, .68); }

.scroller__copy { text-align: left; }
.scroller__kicker {
  display: block;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color .35s var(--e1);
}
.scroller__line {
  display: block;
  font-family: var(--serif);
  font-size: 1.16rem;
  line-height: 1.2;
  color: var(--ink);
  margin-top: 3px;
  white-space: nowrap;
}
.scroller__line em { font-style: italic; }

.scroller__track {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.scroller__fill {
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: trackSweep 2.8s var(--e2) infinite;
}
@keyframes trackSweep {
  0%   { transform: scaleX(0); transform-origin: 0 50%; }
  46%  { transform: scaleX(1); transform-origin: 0 50%; }
  54%  { transform: scaleX(1); transform-origin: 100% 50%; }
  100% { transform: scaleX(0); transform-origin: 100% 50%; }
}

.scroller__arrow {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color .4s var(--e1), background-color .4s var(--e1);
}
.scroller__arrow svg {
  width: 14px; height: 14px;
  fill: none; stroke: var(--gold); stroke-width: 1.3;
  stroke-linecap: round; stroke-linejoin: round;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(-2px); }
  50%      { transform: translateY(2px); }
}
.scroller:hover .scroller__kicker { color: var(--gold); }
.scroller:hover .scroller__arrow { border-color: var(--gold); background: var(--gold-dim); }

/* ===========================================================
   SOBRE
   =========================================================== */

.sobre { padding-bottom: clamp(120px, 18vh, 190px); }
.sobre__grid { display: grid; gap: 44px; }

.sobre__body .h2 { margin-bottom: 26px; }
.sobre__media .frame { aspect-ratio: 4 / 5; }
.sobre__media:hover .frame img { transform: scale(1.05); }
.sobre__caption {
  margin-top: 14px;
  font-size: .72rem;
  letter-spacing: .06em;
  color: var(--ink-3);
}
.sobre__caption span { color: var(--gold); }

.pillars {
  display: grid;
  gap: 2px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}
.pillars li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.pillars span {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 5px;
}
.pillars p { color: var(--ink-3); font-size: .92rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 18px;
  margin-top: 42px;
}
.stat b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 9vw, 3.1rem);
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.stat span {
  display: block;
  margin-top: 6px;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.signature {
  margin-top: 40px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--ink-2);
}

/* ---------- marquee ---------- */

.marquee {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  user-select: none;
}
.marquee__row {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: marq 44s linear infinite;
}
.marquee span {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 4vw, 1.75rem);
  color: var(--ink-3);
  white-space: nowrap;
}
.marquee i {
  font-style: normal;
  color: var(--gold);
  font-size: .7rem;
}
@keyframes marq { to { transform: translateX(-50%); } }
.marquee:hover .marquee__row { animation-play-state: paused; }

/* ===========================================================
   SERVIÇOS
   =========================================================== */

.svc { position: relative; border-top: 1px solid var(--line); }
.svc__item { position: relative; border-bottom: 1px solid var(--line); }
.svc__item > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "num main go" "tag tag tag";
  gap: 4px 16px;
  align-items: start;
  padding: 26px 0;
  transition: padding .45s var(--e1);
}
.svc__num {
  grid-area: num;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--gold);
  padding-top: 8px;
}
.svc__main { grid-area: main; }
.svc__title {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 6.5vw, 2.3rem);
  line-height: 1.12;
  color: var(--ink);
  transition: color .35s var(--e1);
}
.svc__desc {
  display: block;
  margin-top: 8px;
  max-width: 46ch;
  color: var(--ink-3);
  font-size: .93rem;
}
.svc__tags {
  grid-area: tag;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 14px;
}
.svc__tags i {
  font-style: normal;
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-left: 13px;
  position: relative;
}
.svc__tags i::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 5px; height: 1px;
  background: var(--gold);
}
.svc__go {
  grid-area: go;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex: none;
  transition: border-color .4s var(--e1), background-color .4s var(--e1), transform .4s var(--e1);
}
.svc__go svg {
  width: 14px; height: 14px;
  fill: none; stroke: var(--ink-2); stroke-width: 1.3;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .35s, transform .4s var(--e1);
}
.svc__item:hover .svc__title { color: var(--gold); }
.svc__item:hover .svc__go { border-color: var(--gold); background: var(--gold-dim); }
.svc__item:hover .svc__go svg { stroke: var(--gold); transform: translateX(2px); }

.svc__peek { display: none; }

/* ===========================================================
   PORTFÓLIO
   =========================================================== */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.filters__btn {
  position: relative;
  padding: 6px 0;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color .35s var(--e1);
}
.filters__btn sup {
  font-size: .58rem;
  color: var(--gold);
  margin-left: 3px;
  opacity: .6;
}
.filters__btn::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .45s var(--e1);
}
.filters__btn:hover { color: var(--ink); }
.filters__btn.is-active { color: var(--ink); }
.filters__btn.is-active::after { transform: scaleX(1); }
.filters__btn.is-active sup { opacity: 1; }

.pf__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
  gap: 8px;
}
.pf__item {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-card);
  transition: opacity .5s var(--e1), transform .5s var(--e1);
}
.pf__item.is-first { grid-column: span 2; aspect-ratio: 3 / 2; }
.pf__item.is-out { display: none; }

.pf__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--e1);
}
.pf__ov {
  position: absolute;
  inset: auto 0 0 0;
  padding: 44px 16px 16px;
  text-align: left;
  background: linear-gradient(180deg, rgba(11,11,12,0) 0%, rgba(11,11,12,.88) 100%);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity .45s var(--e1), transform .45s var(--e1);
}
.pf__t {
  display: block;
  font-family: var(--serif);
  font-size: 1.16rem;
  line-height: 1.15;
  color: var(--ink);
}
.pf__m {
  display: block;
  margin-top: 3px;
  font-size: .62rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gold);
}
.pf__plus {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border: 1px solid rgba(241,237,229,.28);
  opacity: 0;
  transform: rotate(-90deg) scale(.7);
  transition: opacity .5s var(--e1), transform .5s var(--e1);
}
.pf__plus::before, .pf__plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--ink);
}
.pf__plus::before { width: 11px; height: 1px; margin: 0 0 0 -5.5px; }
.pf__plus::after  { width: 1px; height: 11px; margin: -5.5px 0 0 0; }

.pf__item:hover img, .pf__item:focus-visible img { transform: scale(1.06); }
.pf__item:hover .pf__ov, .pf__item:focus-visible .pf__ov { opacity: 1; transform: translateY(0); }
.pf__item:hover .pf__plus, .pf__item:focus-visible .pf__plus { opacity: 1; transform: rotate(0) scale(1); }

@media (hover: hover) and (pointer: fine) {
  .pf__grid:hover .pf__item { opacity: .38; }
  .pf__grid .pf__item:hover { opacity: 1; }
}

.pf__empty {
  padding: 60px 0;
  text-align: center;
  color: var(--ink-3);
  font-family: var(--serif);
  font-size: 1.4rem;
}

/* fallback quando a imagem não carrega */
.pf__item.no-img img, .frame.no-img img, .svc__peek.no-img { visibility: hidden; }
.no-img {
  background:
    linear-gradient(140deg, #1b1b1f 0%, #131316 55%, #1e1a12 100%);
}
.no-img::after {
  content: attr(data-fallback);
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 20px;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink-3);
  letter-spacing: .02em;
}

/* ---------- lightbox ---------- */

.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 8, 9, .97);
  display: grid;
  place-items: center;
  padding: 68px 16px 84px;
  opacity: 0;
  transition: opacity .4s var(--e1);
}
.lb[hidden] { display: none; }
.lb.is-open { opacity: 1; }
.lb__figure {
  margin: 0;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lb__figure img {
  max-width: 100%;
  max-height: 66svh;
  object-fit: contain;
  transform: scale(.96);
  opacity: 0;
  transition: transform .55s var(--e1), opacity .45s var(--e1);
}
.lb.is-open .lb__figure img { transform: scale(1); opacity: 1; }
.lb__figure img.is-broken {
  width: min(460px, 78vw);
  height: 58svh;
  background: linear-gradient(140deg, #241f19 0%, #131316 55%, #1f1a11 100%);
}
.lb__cap { text-align: center; }
.lb__title {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
}
.lb__meta {
  display: block;
  margin-top: 4px;
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.lb__close, .lb__nav {
  position: absolute;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  transition: border-color .35s var(--e1), background-color .35s var(--e1);
}
.lb__close svg, .lb__nav svg {
  width: 16px; height: 16px;
  fill: none; stroke: var(--ink); stroke-width: 1.3;
  stroke-linecap: round; stroke-linejoin: round;
}
.lb__close:hover, .lb__nav:hover { border-color: var(--gold); background: var(--gold-dim); }
.lb__close { top: 14px; right: 14px; }
.lb__nav { bottom: 18px; }
.lb__nav--prev { left: calc(50% - 56px); }
.lb__nav--next { left: calc(50% + 10px); }
.lb__count {
  position: absolute;
  bottom: 34px; left: 20px;
  font-size: .68rem;
  letter-spacing: .18em;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}

/* ===========================================================
   PROCESSO
   =========================================================== */

.steps { display: grid; gap: 0; }
.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 0 28px;
  border-top: 1px solid var(--line);
}
.step::after {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .7s var(--e1);
}
.step:hover::after { transform: scaleX(1); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step__n {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 14px;
}
.step__t {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 6vw, 1.9rem);
  line-height: 1.1;
  margin-bottom: 10px;
}
.step__d { color: var(--ink-3); font-size: .93rem; max-width: 40ch; }
.step__time {
  display: inline-block;
  margin-top: auto;
  margin-block-start: 20px;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 5px 10px;
}

.proc__note {
  margin-top: 40px;
  padding: 26px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  background: var(--bg-soft);
  border-radius: var(--r);
}
.proc__note p { color: var(--ink-2); max-width: 60ch; margin-bottom: 18px; }
.proc__note strong { color: var(--ink); font-weight: 500; }

/* ===========================================================
   DEPOIMENTOS
   =========================================================== */

.quotes__stage { display: grid; }
.quote {
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .6s var(--e1), transform .6s var(--e1), visibility .6s;
}
.quote.is-active { opacity: 1; visibility: visible; transform: translateY(0); }

.quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 6.4vw, 2.5rem);
  line-height: 1.28;
  letter-spacing: -.015em;
  color: var(--ink);
  max-width: 22ch;
  position: relative;
}
.quote blockquote em { font-style: italic; color: var(--gold); }
.quote blockquote::before {
  content: "“";
  display: block;
  height: .46em;
  font-size: 2.3em;
  line-height: .8;
  color: var(--gold);
  opacity: .3;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.quote figcaption img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  filter: grayscale(1);
}
.quote figcaption span {
  display: flex;
  flex-direction: column;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.quote figcaption b {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: none;
  color: var(--ink);
}

.quotes__ctrl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.quotes__dots { display: flex; gap: 8px; }
.quotes__dots button {
  width: 22px; height: 2px;
  background: var(--line-2);
  transition: background-color .4s var(--e1), width .4s var(--e1);
}
.quotes__dots button.is-active { background: var(--gold); width: 44px; }
.quotes__arrows { display: flex; gap: 8px; }
.qbtn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color .35s var(--e1), background-color .35s var(--e1);
}
.qbtn svg {
  width: 15px; height: 15px;
  fill: none; stroke: var(--ink-2); stroke-width: 1.3;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .3s;
}
.qbtn:hover { border-color: var(--gold); background: var(--gold-dim); }
.qbtn:hover svg { stroke: var(--gold); }

/* ===========================================================
   INVESTIMENTO
   =========================================================== */

.plans { display: grid; gap: 14px; }
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg-soft);
  transition: border-color .45s var(--e1), background-color .45s var(--e1), transform .45s var(--e1);
}
.plan:hover { border-color: var(--line-2); background: var(--bg-card); }
.plan--star { border-color: rgba(201,166,98,.42); background: var(--bg-card); }
.plan--star:hover { border-color: var(--gold); }

.plan__flag {
  position: absolute;
  top: -1px; right: 20px;
  padding: 5px 12px;
  background: var(--gold);
  color: #16120a;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: 0 0 var(--r) var(--r);
}
.plan__name {
  font-family: var(--serif);
  font-size: 1.85rem;
  line-height: 1.1;
}
.plan__for {
  margin-top: 8px;
  color: var(--ink-3);
  font-size: .88rem;
  max-width: 32ch;
}
.plan__price {
  margin: 22px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.plan__price i {
  display: block;
  font-style: normal;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.plan__price b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 8vw, 2.7rem);
  line-height: 1;
  color: var(--ink);
}
.plan--star .plan__price b { color: var(--gold); }

.plan__list { display: grid; gap: 11px; margin-bottom: 28px; }
.plan__list li {
  position: relative;
  padding-left: 20px;
  font-size: .91rem;
  color: var(--ink-2);
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 9px; height: 1px;
  background: var(--gold);
}
.plan__cta { margin-top: auto; width: 100%; }

.price__fine {
  margin-top: 26px;
  font-size: .78rem;
  color: var(--ink-3);
  letter-spacing: .02em;
}

/* ===========================================================
   DÚVIDAS
   =========================================================== */

.faq__grid { display: grid; gap: 44px; }
.faq__img { aspect-ratio: 16 / 10; margin-top: 30px; }
.faq__aside:hover .faq__img img { transform: scale(1.05); }
.faq__more {
  margin-top: 22px;
  font-size: .9rem;
  color: var(--ink-3);
}
.faq__more a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
  transition: border-color .35s;
}
.faq__more a:hover { border-color: var(--gold); }

.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 4.6vw, 1.4rem);
  line-height: 1.25;
  color: var(--ink-2);
  transition: color .35s var(--e1);
}
.acc__q:hover, .acc__q[aria-expanded="true"] { color: var(--ink); }
.acc__q i {
  position: relative;
  width: 15px; height: 15px;
  flex: none;
}
.acc__q i::before, .acc__q i::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transition: transform .45s var(--e1);
}
.acc__q i::after { transform: rotate(90deg); }
.acc__q[aria-expanded="true"] i::after { transform: rotate(0); }

.acc__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--e1);
}
.acc__a p {
  padding: 0 40px 26px 0;
  color: var(--ink-3);
  font-size: .94rem;
  max-width: 58ch;
}

/* ===========================================================
   CONTATO
   =========================================================== */

.contact { justify-content: flex-start; }
.contact__wrap { display: flex; flex-direction: column; flex: 1; }
.contact__grid { display: grid; gap: 52px; }

.form { display: grid; gap: 22px; }
.field { display: flex; flex-direction: column; }
.field__row { display: grid; gap: 22px; }

.field label {
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 9px;
  transition: color .35s var(--e1);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  border-radius: 0;
  transition: border-color .4s var(--e1);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%),
                    linear-gradient(135deg, var(--ink-3) 50%, transparent 50%);
  background-position: calc(100% - 12px) calc(50% + 1px), calc(100% - 7px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 28px;
  cursor: pointer;
}
.field select option { background: var(--bg-lift); color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); opacity: .65; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field:focus-within label { color: var(--gold); }

.field__err {
  display: block;
  max-height: 0;
  overflow: hidden;
  font-size: .74rem;
  color: #dd8362;
  transition: max-height .35s var(--e1), padding-top .35s var(--e1);
  padding-top: 0;
}
.field.is-bad input, .field.is-bad select, .field.is-bad textarea { border-bottom-color: #dd8362; }
.field.is-bad .field__err { max-height: 40px; padding-top: 7px; }

.form__foot { display: grid; gap: 14px; }
.form__ok {
  padding: 18px 20px;
  border: 1px solid rgba(201,166,98,.4);
  border-left: 2px solid var(--gold);
  border-radius: var(--r);
  background: var(--gold-dim);
  color: var(--ink-2);
  font-size: .92rem;
}
.form__ok b { color: var(--gold); font-weight: 500; }
.btn.is-busy { pointer-events: none; opacity: .65; }

.cinfo { display: grid; gap: 30px; align-content: start; }
.cinfo__block { border-top: 1px solid var(--line); padding-top: 18px; }
.cinfo__label {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.cinfo__big {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 4.6vw, 1.45rem);
  line-height: 1.4;
  color: var(--ink);
  transition: color .3s var(--e1);
  word-break: break-word;
}
.cinfo__big:hover { color: var(--gold); }
.cinfo__txt { color: var(--ink-2); font-size: .93rem; }
.cinfo__social { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.cinfo__social a {
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color .3s;
}
.cinfo__social sup { color: var(--gold); }
.cinfo__social a:hover { color: var(--ink); }

.agenda {
  display: flex;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg-soft);
}
.agenda__pulse {
  width: 7px; height: 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
  animation: pulse 2.6s ease-out infinite;
}
.agenda p { font-size: .88rem; color: var(--ink-3); }
.agenda b { color: var(--ink); font-weight: 500; }

/* ---------- rodapé ---------- */

.foot {
  margin-top: auto;
  padding-top: 44px;
}
.foot__top {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 0 22px;
  border-top: 1px solid var(--line);
}
.foot__brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  transition: color .3s;
}
.foot__brand:hover { color: var(--gold); }
.foot__nav { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.foot__nav a {
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color .3s;
}
.foot__nav a:hover { color: var(--gold); }
.foot__bot {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  font-size: .72rem;
  color: var(--ink-3);
}
.foot__bot a {
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
  transition: color .3s var(--e1), border-color .3s var(--e1);
}
.foot__bot a:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- voltar ao topo ---------- */

.totop {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 90;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--bg-lift);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .4s var(--e1), transform .4s var(--e1), visibility .4s, border-color .3s, background-color .3s;
}
.totop.is-on { opacity: 1; visibility: visible; transform: translateY(0); }
.totop svg {
  width: 15px; height: 15px;
  fill: none; stroke: var(--ink-2); stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .3s, transform .35s var(--e1);
}
.totop:hover { border-color: var(--gold); background: var(--gold-dim); }
.totop:hover svg { stroke: var(--gold); transform: translateY(-2px); }

/* ---------- reveal ---------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s var(--e1), transform .85s var(--e1);
  transition-delay: var(--d, 0ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ===========================================================
   BREAKPOINTS
   =========================================================== */

html { scroll-padding-top: 92px; }

@media (min-width: 560px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .field__row { grid-template-columns: 1fr 1fr; }
  .lb__nav { bottom: 24px; }
  .lb__nav--prev { left: auto; right: 84px; }
  .lb__nav--next { left: auto; right: 24px; }
}

@media (min-width: 560px) and (max-width: 899px) {
  .plans { max-width: 560px; margin-inline: auto; }
}

@media (min-width: 700px) {
  .steps { grid-template-columns: 1fr 1fr; column-gap: 34px; }
  .step:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proc__note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 34px;
  }
  .proc__note p { margin-bottom: 0; }
  .proc__note .link-arrow { flex: none; }
  .hero__actions .btn { flex: 0 0 auto; }
  .foot__top { flex-direction: row; align-items: center; justify-content: space-between; }
  .foot__bot { flex-direction: row; justify-content: space-between; }
  .pf__ov { padding: 60px 22px 20px; }
  .hero__meta { display: flex; }
}

@media (min-width: 900px) {
  .sobre__grid {
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(40px, 5.5vw, 86px);
    align-items: center;
  }
  .plans { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .plan--star { transform: translateY(-14px); }
  .plan--star:hover { transform: translateY(-18px); }
  .contact__grid { grid-template-columns: 1.12fr .88fr; gap: clamp(44px, 5vw, 84px); }
  .sec-head--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
  }
  .sec-head--split .sec-head__lead { margin-top: 0; flex: 0 1 42ch; }
  .quote blockquote { max-width: 27ch; font-size: clamp(1.75rem, 3vw, 2.35rem); }
  .plan__for { min-height: 2.9em; }
}

@media (min-width: 1024px) {
  .header__inner { padding-block: 20px; }
  .burger { display: none; }
  .header__cta { display: inline-flex; }

  .nav { display: block; }
  .nav__list { display: flex; gap: 30px; }
  .nav__link {
    position: relative;
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-2);
    padding: 6px 0;
    transition: color .35s var(--e1);
  }
  .nav__link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: 100% 50%;
    transition: transform .45s var(--e1);
  }
  .nav__link:hover { color: var(--ink); }
  .nav__link:hover::after,
  .nav__link.is-current::after { transform: scaleX(1); transform-origin: 0 50%; }
  .nav__link.is-current { color: var(--gold); }

  .hero__inner { padding-bottom: 96px; }
  .scroller {
    left: auto;
    right: var(--pad);
    bottom: 40px;
    margin-inline: 0;
  }
  .hero__side {
    display: block;
    position: absolute;
    left: 26px;
    bottom: 40px;
    z-index: 2;
    writing-mode: vertical-rl;
    font-size: .62rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--ink-3);
  }
  .hero__side::after {
    content: "";
    display: block;
    width: 1px; height: 54px;
    margin: 14px auto 0;
    background: linear-gradient(180deg, var(--line-2), transparent);
  }

  .svc__item > a {
    grid-template-columns: 64px minmax(0, 1fr) auto 44px;
    grid-template-areas: "num main tag go";
    align-items: center;
    gap: 30px;
    padding: 34px 0;
    transition: padding .5s var(--e1);
  }
  .svc__item:hover > a { padding-left: 16px; }
  .svc__num { padding-top: 0; }
  .svc__tags {
    margin-top: 0;
    flex-direction: column;
    gap: 6px;
    transition: opacity .4s var(--e1), transform .4s var(--e1);
  }
  .svc__item:hover .svc__tags { opacity: 0; transform: translateX(14px); }
  .svc__item:hover { z-index: 3; }
  .svc__peek {
    display: block;
    position: absolute;
    top: 50%;
    right: 15%;
    z-index: 2;
    width: 172px;
    height: 212px;
    object-fit: cover;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-50%) scale(.86) rotate(-3deg);
    transition: opacity .5s var(--e1), transform .6s var(--e1);
  }
  .svc__item:hover .svc__peek {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(0deg);
  }

  .pf__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: clamp(88px, 8.2vw, 132px);
    gap: 10px;
  }
  .pf__item { aspect-ratio: auto; grid-row: span 4; grid-column: auto; }
  .pf__item:nth-child(3), .pf__item:nth-child(8), .pf__item:nth-child(11) { grid-row: span 5; }
  .pf__item.is-first { grid-column: span 2; grid-row: span 4; }
  .filters { gap: 10px 34px; margin-bottom: 34px; }

  .steps { grid-template-columns: repeat(4, 1fr); column-gap: 26px; }
  .step { border-bottom: 0; padding-bottom: 8px; }
  .step:last-child { border-bottom: 0; }
  .step:nth-last-child(-n+2) { border-bottom: 0; }

  .depo .wrap {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: clamp(44px, 5vw, 90px);
    align-items: center;
  }
  .depo .sec-head { margin-bottom: 0; }
  .quotes__ctrl { margin-top: 36px; }

  .faq__grid { grid-template-columns: .82fr 1.18fr; gap: clamp(44px, 5.5vw, 88px); align-items: start; }
  .faq__aside { position: sticky; top: 120px; }
  .acc__q { padding: 26px 0; }

  .totop { right: 26px; bottom: 26px; }
  .lb { padding: 80px 92px; }
  .lb__close { top: 24px; right: 26px; }
  .lb__nav--prev { right: auto; left: 26px; top: 50%; bottom: auto; margin-top: -23px; }
  .lb__nav--next { right: 26px; left: auto; top: 50%; bottom: auto; margin-top: -23px; }
  .lb__figure img { max-height: 72svh; }
  .lb__count { bottom: 30px; left: 30px; }
}

@media (min-width: 1280px) {
  .hero__title { letter-spacing: -.035em; }
  .sec-head { margin-bottom: 82px; }
  .quote blockquote { max-width: 26ch; }
}

/* ===========================================================
   MOVIMENTO REDUZIDO
   =========================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .hero__img { transform: scale(1); }
  .hero__title .line > span { transform: none; }
  .hero__eyebrow, .hero__lead, .hero__actions, .hero__meta, .scroller { opacity: 1; }
  .marquee__row { animation: none; }
  .cursor { display: none; }
}

@media print {
  .header, .drawer, .scroller, .totop, .cursor, .progress, .lb { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ---------- cursor próprio ativo ---------- */

body.has-cursor,
body.has-cursor a,
body.has-cursor button,
body.has-cursor .pf__item { cursor: none; }
body.has-cursor input,
body.has-cursor select,
body.has-cursor textarea { cursor: auto; }

.hero__media { background: linear-gradient(160deg, #1c1c21 0%, #0b0b0c 58%, #1e1810 100%); }
