:root {
  --paper: #faf6f3;
  --white: #ffffff;
  --ink: #1a1518;
  --ink-soft: #4a4147;
  --pink: #d81e78;
  --pink-deep: #b01561;
  --pink-soft: #f7dce8;
  --pink-tint: #fceef4;
  --mauve: #8a6071;

  --font-display: "Marcellus", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  --maxw: 1180px;
  --gut: clamp(1.25rem, 4vw, 4rem);
  --ease: cubic-bezier(0.22, 0.7, 0.25, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--mauve);
}


.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.section {
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
}
/* seção logo após um divisor: menos respiro no topo */
.section--tight {
  padding-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.05em 2.1em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.btn--primary {
  background: var(--pink);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(250, 246, 243, 0.4);
}
.btn--ghost:hover {
  background: var(--paper);
  color: var(--ink);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* assinatura: linha fina ondulada */
.thread {
  display: block;
  width: 100%;
  height: 48px;
  overflow: visible;
}
.thread path {
  fill: none;
  stroke: var(--pink);
  stroke-width: 1.5;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 1.8s var(--ease);
}
.thread.in path {
  stroke-dashoffset: 0;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 243, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 21, 24, 0.07);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.brandmark__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: block;
}
.brandmark__word {
  display: block;
  font-family: "Marcellus", Georgia, serif;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brandmark__word em {
  font-style: italic;
  color: var(--pink);
}
.brandmark__sub {
  display: block;
  margin-top: 0.3rem;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mauve);
}
.nav__links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.nav__links a:hover {
  color: var(--pink);
}
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  color: var(--ink);
  cursor: pointer;
}

/* HERO */
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 7rem);
}
.hero__eyebrow {
  margin-bottom: 1.6rem;
}
.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}
.hero__title em {
  font-style: italic;
  color: var(--pink);
}
.hero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 40ch;
  color: var(--ink-soft);
}
.hero__cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.6rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero__rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.4rem;
}
.hero__rating .stars {
  color: var(--pink);
  letter-spacing: 0.1em;
}
.hero__rating small {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.hero__art {
  position: relative;
}
.hero__dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink);
}

/* STATS */
.stats {
  border-top: 1px solid rgba(26, 21, 24, 0.1);
  border-bottom: 1px solid rgba(26, 21, 24, 0.1);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding-block: clamp(2.2rem, 4vw, 3rem);
  gap: 1rem;
}
.stats__num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  color: var(--pink);
}
.stats__label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.35rem;
}
.stats__item + .stats__item {
  border-left: 1px solid rgba(26, 21, 24, 0.1);
}

/* SEC HEAD */
.sec-head {
  margin-bottom: 3.4rem;
}
/* cabeçalho de seção centralizado (o eyebrow vira pílula central) */
.sec-head--center {
  text-align: center;
}
.sec-head--center .eyebrow,
.ba__head .eyebrow {
  display: inline-block;
}
.sec-head h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  margin-top: 0.8rem;
}
.sec-head h2 em {
  font-style: italic;
  color: var(--pink);
}

/* SERVIÇOS / PROCEDIMENTOS */
.card {
  background: var(--white);
  border: 1px solid rgba(26, 21, 24, 0.08);
  border-radius: 4px;
  padding: 2.4rem 2rem;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s,
    border-color 0.4s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px -26px rgba(216, 30, 120, 0.3);
  border-color: var(--pink-soft);
}
.card__mark {
  width: 34px;
  height: 1.5px;
  background: var(--pink);
  margin-bottom: 1.3rem;
}
.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.card p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-soft);
}
.card__meta {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 0.8rem;
}

/* PROCEDIMENTOS (menu por categoria) */
.proc__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 2.6rem;
}
.proc__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(26, 21, 24, 0.14);
  border-radius: 2rem;
  padding: 0.7em 1.3em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.proc__tab span {
  display: inline-grid;
  place-items: center;
  min-width: 1.5em;
  height: 1.5em;
  padding: 0 0.35em;
  font-size: 0.72rem;
  border-radius: 1em;
  background: var(--pink-soft);
  color: var(--pink-deep);
  transition: all 0.3s var(--ease);
}
.proc__tab:hover {
  border-color: var(--pink);
  color: var(--pink);
}
.proc__tab.is-active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}
.proc__tab.is-active span {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}
.proc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.proc__item {
  animation: galleryIn 0.5s var(--ease) both;
}
.proc__item.is-hidden {
  display: none;
}
.proc__note {
  text-align: center;
  margin-top: 2.6rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.proc__note a {
  color: var(--pink-deep);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.proc__note a:hover {
  border-color: var(--pink);
}

/* ANTES/DEPOIS */
.ba__head {
  text-align: center;
  margin-bottom: 3rem;
}
.ba__head h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  margin-top: 0.8rem;
}
.ba__head h2 em {
  font-style: italic;
  color: var(--pink);
}
.ba__compare {
  position: relative;
  max-width: 460px;
  margin-inline: auto;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: 0 30px 60px -32px rgba(26, 21, 24, 0.4);
}
.ba__layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ba__after {
  background: var(--pink-tint);
  color: var(--mauve);
}
.ba__before {
  background: var(--ink);
  color: rgba(250, 246, 243, 0.5);
  clip-path: inset(0 50% 0 0);
}
.ba__layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba__tag {
  position: absolute;
  top: 1rem;
  padding: 0.35em 1em;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
}
.ba__tag--before {
  left: 1rem;
  background: var(--paper);
  color: var(--ink);
}
.ba__tag--after {
  right: 1rem;
  background: var(--pink);
  color: var(--white);
}
.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--paper);
  transform: translateX(-50%);
  pointer-events: none;
}
.ba__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--pink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(26, 21, 24, 0.3);
}
.ba__stage {
  margin: 0;
}
.ba__caption {
  text-align: center;
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}
.ba__thumbs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}
.ba__thumb {
  width: 92px;
  aspect-ratio: 3/4;
  padding: 0;
  border: 1px solid rgba(26, 21, 24, 0.12);
  border-radius: 4px;
  overflow: hidden;
  background: none;
  cursor: pointer;
  opacity: 0.62;
  transition:
    opacity 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.ba__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba__thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.ba__thumb.is-active {
  opacity: 1;
  border-color: var(--pink);
  box-shadow: 0 0 0 1px var(--pink);
}
.ba__note {
  text-align: center;
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* GALERIA POR SESSÃO (colagens antes/depois prontas) */
.gallery {
  margin-top: 4rem;
}
.gallery__lead {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.gallery__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 2.6rem;
}
.gallery__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(26, 21, 24, 0.14);
  border-radius: 2rem;
  padding: 0.7em 1.3em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.gallery__tab span {
  display: inline-grid;
  place-items: center;
  min-width: 1.5em;
  height: 1.5em;
  padding: 0 0.35em;
  font-size: 0.72rem;
  border-radius: 1em;
  background: var(--pink-soft);
  color: var(--pink-deep);
  transition: all 0.3s var(--ease);
}
.gallery__tab:hover {
  border-color: var(--pink);
  color: var(--pink);
}
.gallery__tab.is-active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}
.gallery__tab.is-active span {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery__item {
  margin: 0;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--pink-soft);
  box-shadow: 0 18px 38px -28px rgba(26, 21, 24, 0.4);
  animation: galleryIn 0.5s var(--ease) both;
}
.gallery__item.is-hidden {
  display: none;
}
@keyframes galleryIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.gallery__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery__item:hover img {
  transform: scale(1.04);
}
.gallery__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 0.9rem 0.7rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  background: linear-gradient(to top, rgba(26, 21, 24, 0.78), transparent);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(26, 21, 24, 0.92);
  cursor: zoom-out;
}
.lightbox.is-open {
  display: grid;
}
.lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}
.lightbox__close {
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--paper);
  background: rgba(250, 246, 243, 0.12);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.lightbox__close:hover {
  background: rgba(250, 246, 243, 0.28);
}

/* SOBRE */
.about {
  background: var(--pink-tint);
}
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__frame {
  aspect-ratio: 4/5;
  border-radius: 50% 50% 6px 6px / 28% 28% 6px 6px;
  background: var(--pink-soft);
  border: 1px solid rgba(216, 30, 120, 0.18);
  position: relative;
  overflow: hidden;
}
.about__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 93%;
}
.about h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  margin: 0.8rem 0 1.4rem;
}
.about h2 em {
  font-style: italic;
  color: var(--pink);
}
.about p {
  max-width: 50ch;
  margin-bottom: 1rem;
  color: var(--ink-soft);
}
.about__creds {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.about__cred span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--pink);
}
.about__cred small {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.about__btn {
  margin-top: 2.2rem;
}

/* HERO · baralho de fotos do studio ("passar na mão") */
.hero__art .deck {
  width: 100%;
}
.deck {
  position: relative;
  max-width: 452px;
  margin-inline: auto;
  /* margem lateral p/ a sombra/leque respirarem; clip prende a foto que
     "passa" dentro da moldura — nunca vaza pra página nem cobre o texto */
  padding: 4px 26px 0;
  overflow-x: clip;
}
/* brilho difuso rosa atrás do baralho (equilibrado, bem suave) */
.deck::before {
  content: "";
  position: absolute;
  inset: -8% 0 -2%;
  background: radial-gradient(
    60% 55% at 50% 40%,
    rgba(216, 30, 120, 0.18),
    rgba(216, 30, 120, 0) 72%
  );
  filter: blur(16px);
  z-index: 0;
  pointer-events: none;
}
.deck__stack {
  position: relative;
  aspect-ratio: 4 / 5;
  touch-action: pan-y;
}
.deck__card {
  position: absolute;
  inset: 0;
  padding: 8px;
  background: var(--white);
  /* moldura em arco: assinatura da marca (hero/sobre) */
  border-radius: 50% 50% 8px 8px / 30% 30% 8px 8px;
  border: 1px solid var(--pink-soft);
  box-shadow: 0 16px 34px -18px rgba(26, 21, 24, 0.4);
  transform-origin: 50% 88%;
  transition:
    transform 0.6s var(--ease),
    opacity 0.6s var(--ease),
    box-shadow 0.6s var(--ease);
  will-change: transform;
}
.deck__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% 50% 4px 4px / 30% 30% 4px 4px;
  user-select: none;
  -webkit-user-drag: none;
}
/* posições no baralho: 0 = frente, 2 = fundo */
.deck__card[data-depth="0"] {
  transform: rotate(-1.4deg);
  z-index: 30;
  cursor: grab;
  box-shadow:
    0 24px 50px -20px rgba(216, 30, 120, 0.5),
    0 6px 16px -6px rgba(26, 21, 24, 0.18);
}
.deck__card[data-depth="0"].is-dragging {
  cursor: grabbing;
}
.deck__card[data-depth="1"] {
  transform: translate(4.5%, -2.5%) rotate(3.4deg) scale(0.95);
  z-index: 20;
  opacity: 0.98;
}
.deck__card[data-depth="2"] {
  transform: translate(-3.5%, 2.8%) rotate(-4.6deg) scale(0.9);
  z-index: 10;
  opacity: 0.94;
}
/* enquanto arrasta ou faz a passagem, sem transição para acompanhar a mão */
.deck__card.is-dragging,
.deck__card.no-anim {
  transition: none;
}
/* brilho equilibrado: leve reflexo diagonal só na foto da frente */
.deck__shine {
  position: absolute;
  inset: 8px;
  border-radius: 50% 50% 4px 4px / 30% 30% 4px 4px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 255, 255, 0.32) 50%,
    rgba(255, 255, 255, 0) 62%
  );
  transition: opacity 0.5s var(--ease);
}
.deck__card[data-depth="0"] .deck__shine {
  opacity: 1;
}
.deck__controls {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.2rem;
}
.deck__dots {
  display: flex;
  gap: 0.55rem;
}
.deck__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid var(--pink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.deck__dot.is-active {
  background: var(--pink);
  transform: scale(1.15);
}
.deck__next {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(26, 21, 24, 0.22);
  border-radius: 2px;
  padding: 0.7em 1.15em;
  cursor: pointer;
  transition:
    border-color 0.3s var(--ease),
    color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.deck__next:hover {
  color: var(--pink);
  border-color: var(--pink);
}
.deck__next-ico {
  transition: transform 0.3s var(--ease);
}
.deck__next:hover .deck__next-ico {
  transform: translateX(4px);
}

/* DEPOIMENTOS */
.testi__lead {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.testi__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 1.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid rgba(26, 21, 24, 0.16);
  border-radius: 2rem;
  padding: 0.55em 1.1em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.testi__toggle:hover {
  border-color: var(--pink);
  color: var(--pink);
}
.testi__toggle .ico {
  font-size: 0.9em;
  line-height: 1;
}
.testi__lead strong {
  color: var(--pink);
  font-weight: 600;
}
/* carrossel marquee */
.testi {
  --testi-duration: 150s;
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.testi__track {
  display: flex;
  width: max-content;
  align-items: stretch;
  animation: testiScroll var(--testi-duration) linear infinite;
}
.testi:hover .testi__track,
.testi.is-paused .testi__track {
  animation-play-state: paused;
}
@keyframes testiScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.quote {
  flex: 0 0 330px;
  width: 330px;
  margin-right: 1.4rem;
  background: var(--white);
  border: 1px solid rgba(26, 21, 24, 0.08);
  border-radius: 4px;
  padding: 2rem 1.9rem;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition:
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.quote:hover {
  border-color: var(--pink-soft);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -28px rgba(216, 30, 120, 0.4);
}
.testi__cta-wrap {
  text-align: center;
}
.testi__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 2.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--pink-deep);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.testi__cta:hover {
  border-color: var(--pink);
}
.quote__stars {
  color: var(--pink);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
}
.quote p {
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.7;
}
.quote footer {
  margin-top: auto;
  padding-top: 1.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mauve);
}

/* FAQ */
.faq__grid {
  max-width: 800px;
  margin-inline: auto;
}
.faq__item {
  border-bottom: 1px solid rgba(26, 21, 24, 0.1);
}
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq__q .ico {
  color: var(--pink);
  transition: transform 0.35s var(--ease);
  flex: 0 0 auto;
  font-weight: 300;
  font-family: var(--font-body);
}
.faq__item.open .faq__q .ico {
  transform: rotate(45deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq__a p {
  padding-bottom: 1.5rem;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 66ch;
}

/* CONTATO */
.contact {
  background: var(--ink);
  color: var(--paper);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.contact .eyebrow {
  color: var(--pink);
}
.contact h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  color: var(--paper);
  margin: 0.8rem 0 1.6rem;
}
.contact h2 em {
  font-style: italic;
  color: var(--pink);
}
.contact__list {
  list-style: none;
  margin: 1.8rem 0;
}
.contact__list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(250, 246, 243, 0.12);
  font-size: 0.95rem;
  font-weight: 300;
  display: flex;
  gap: 1rem;
}
.contact__list strong {
  min-width: 92px;
  color: var(--pink);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 0.35em;
}
.contact__link {
  color: var(--paper);
  border-bottom: 1px solid rgba(250, 246, 243, 0.35);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.contact__link:hover {
  color: var(--pink);
  border-color: var(--pink);
}
.contact__map {
  aspect-ratio: 4/3;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  background: rgba(216, 30, 120, 0.08);
  border: 1px solid rgba(216, 30, 120, 0.25);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

/* FOOTER */
.footer {
  background: var(--ink);
  color: rgba(250, 246, 243, 0.55);
  padding-block: 2.6rem;
  border-top: 1px solid rgba(250, 246, 243, 0.1);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.footer__logo .brandmark__icon {
  width: 54px;
  height: 54px;
}
.footer__logo .brandmark__word {
  color: var(--paper);
  font-size: 1.5rem;
}
.footer__logo .brandmark__sub {
  color: #c99baa;
}
.footer__social {
  display: flex;
  gap: 1.6rem;
  font-size: 0.82rem;
}
.footer__social a:hover {
  color: var(--pink);
}
.footer__credit {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 1.6rem;
  color: rgba(250, 246, 243, 0.65);
}

/* WHATSAPP */
.wa {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  background: #0a7d43;
  color: #fff;
  padding: 0.8em 1.3em;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.88rem;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s var(--ease);
}
.wa:hover {
  transform: translateY(-3px);
}
.wa svg {
  width: 19px;
  height: 19px;
  fill: #fff;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .proc__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 840px) {
  .nav__links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid rgba(26, 21, 24, 0.08);
    padding: 1rem var(--gut);
    transform: translateY(-135%);
    transition: transform 0.4s var(--ease);
  }
  .nav__links.open {
    transform: none;
  }
  .nav__links a {
    padding: 0.9rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(26, 21, 24, 0.07);
  }
  .nav__links .btn {
    margin-top: 0.6rem;
  }
  .nav__toggle {
    display: block;
  }
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__art {
    order: -1;
    max-width: 360px;
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__item:nth-child(odd) {
    border-left: none;
  }
  .stats__item:nth-child(3),
  .stats__item:nth-child(4) {
    border-top: 1px solid rgba(26, 21, 24, 0.1);
    padding-top: 1.4rem;
  }
  .proc__grid {
    grid-template-columns: 1fr;
  }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .about__frame {
    order: -1;
    max-width: 340px;
  }
  .quote {
    flex-basis: 290px;
    width: 290px;
  }
  .testi {
    --testi-duration: 110s;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .thread path {
    stroke-dashoffset: 0;
  }
  /* o carrossel pode rodar, mas inicia PAUSADO (a preferência do usuário é
     respeitada); o botão de play/pausa permite ligar manualmente */
  .testi__track {
    animation: testiScroll var(--testi-duration) linear infinite !important;
  }
  .testi:hover .testi__track,
  .testi.is-paused .testi__track {
    animation-play-state: paused !important;
  }
}

/* ==========================================================================
   SITE INTRO ANIMATION
   ========================================================================== */
.site-intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 99999;
  /* cor de fundo real do vídeo (amostrada dos frames), não --paper —
     evita uma borda bege visível enquanto o vídeo cresce até cobrir a tela */
  background-color: #d8cece;
  transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
}
.site-intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.site-intro__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 1.5s var(--ease);
}
.site-intro__video.is-visible {
  opacity: 1;
}
