/* Grife Mont Store — a gente separa, você escolhe */

@font-face {
  font-family: "Grife Bodoni";
  src: url("../assets/fonts/bodoni-moda-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Grife Bodoni";
  src: url("../assets/fonts/bodoni-moda-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #070e14;
  --deep: #0d1a23;
  --navy: #132636;
  --steel: #193447;
  --ash: #8f908e;
  --fog: rgba(243, 242, 239, 0.62);
  --paper: #f3f2ef;
  --white: #fff;
  --line: rgba(143, 144, 142, 0.22);
  --line-dark: rgba(255, 255, 255, 0.12);
  --font-d: "Grife Bodoni", "Bodoni Moda", Didot, Georgia, serif;
  --font-b: Lato, system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav: 5.625rem; /* 90px */
  --nav-scrolled: 4.375rem; /* 70px */
  --wrap: 1220px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --z-nav: 100;
  --z-nav-overlay: 300;
  --z-modal: 400;
}

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

html {
  scroll-behavior: auto; /* GSAP controla o smooth scroll */
}

html.is-smooth-native {
  scroll-behavior: smooth;
}

/* Lazy-load fade-in */
img.is-lazy {
  opacity: 0;
  transition: opacity 0.55s ease;
}

img.is-lazy.is-loaded {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  img.is-lazy {
    opacity: 1;
    transition: none;
  }
}

/* —— Direção final: seleção pessoal e retratos 9:16 —— */
.hero__bg { background: var(--ink); }
.hero__wordmark,
.hero__glow-copy,
.hero__grain,
.hero__vignette,
.hero__glow,
.story__wordmark,
.story__glow,
.founders__glow { display: none; }

.hero__layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  max-width: 1180px;
  gap: clamp(3rem, 8vw, 8rem);
}
.hero__content { max-width: 43rem; }
.hero__title {
  max-width: 11ch;
  font-size: clamp(3.6rem, 7.5vw, 6rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.hero__lead { max-width: 48ch; color: var(--ash); }
.hero__story {
  width: min(100%, 330px);
  border: 0;
  border-radius: var(--portrait-radius);
  box-shadow: none;
}
.hero__video,
.story__reel { object-fit: contain; filter: saturate(0.84) contrast(1.04) sepia(0.05); }
.hero__scroll-arrow,
.story__pulse { animation: none; }

.btn--solid,
.nav__cta,
.nav__overlay-cta {
  border-color: var(--selection);
  background: var(--selection);
  color: var(--paper);
}
.btn--solid:hover,
.nav__cta:hover { border-color: var(--selection); background: transparent; color: var(--paper); }

.store__title,
.story__title,
.founders__title,
.care__title,
.shipping__title,
.trust__title,
.visit__title,
.finale__title {
  font-size: clamp(2.7rem, 5.5vw, 4.75rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.store__stage {
  height: clamp(590px, 72vh, 760px);
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.store__track { inset: 0 clamp(4rem, 10vw, 9rem); }
.store__slide {
  grid-template-columns: minmax(180px, 0.72fr) minmax(280px, 0.9fr) minmax(90px, 0.32fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 0;
}
.store__frame {
  overflow: hidden;
  aspect-ratio: 9 / 16;
  height: min(68vh, 720px);
  align-self: center;
  border-radius: var(--portrait-radius);
  background: var(--deep);
  clip-path: inset(100% 0 0 0);
}
.store__slide.is-active .store__frame {
  clip-path: inset(0);
  transition: clip-path 1s var(--ease-out);
}
.store__photo,
.store__slide.is-active .store__photo,
.store__slide.is-leaving .store__photo {
  transform: none;
  object-fit: contain;
  filter: saturate(0.84) contrast(1.04) sepia(0.05);
}
.store__num { width: auto; padding-top: 0; border: 0; color: var(--selection); }
.store__word { display: none; }
.store__controls { inset: auto 0 -4.75rem; height: 3rem; }
.store__nav--prev,
.store__nav--next { bottom: 0; }
.store__dots { position: relative; gap: 0; margin-top: 2.4rem; padding-inline: 4.5rem; }
.store__dots::before {
  content: "";
  position: absolute;
  left: 4.5rem;
  right: 4.5rem;
  height: 1px;
  background: rgba(143, 144, 142, 0.24);
}
.store__dot {
  z-index: 1;
  width: 0.55rem;
  height: 0.55rem;
  margin-inline: clamp(1rem, 4vw, 3.5rem);
  border: 2px solid var(--ink);
  background: var(--ash);
}
.store__dot.is-active { width: 0.75rem; height: 0.75rem; background: var(--selection); }

.story__compose { grid-template-columns: minmax(260px, 360px) minmax(0, 1fr); gap: clamp(4rem, 10vw, 9rem); }
.story__card { border: 0; border-radius: var(--portrait-radius); box-shadow: none; }
.story__pulse { background: var(--selection); }

.founders { padding-block: clamp(8rem, 15vw, 13rem); }
.founders__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  grid-template-areas: "photo head" "photo identity" "photo quote" "photo meta";
  align-items: start;
  gap: 1.5rem clamp(4rem, 10vw, 9rem);
  max-width: 1120px;
  text-align: left;
}
.founders__head { grid-area: head; margin: 2rem 0 1rem; }
.founders__photo-wrap { grid-area: photo; margin: 0; max-width: 410px; }
.founders__identity { grid-area: identity; margin: 0; }
.founders__quote { grid-area: quote; margin: 1.5rem 0 0; max-width: 30ch; }
.founders__meta { grid-area: meta; }
.founders__lead { margin: 0; max-width: 44ch; }
.founders__photo {
  max-width: 410px;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: var(--portrait-radius);
  box-shadow: none;
  background: var(--deep);
  filter: saturate(0.84) contrast(1.04) sepia(0.05);
}

.care__title::after,
.shipping__progress-bar { background: var(--selection); }
.care__cards { gap: 0; border-top: 1px solid rgba(7, 14, 20, 0.24); }
.care__card,
.care__card:hover {
  transform: none;
  padding: 1.7rem 0;
  border: 0;
  border-bottom: 1px solid rgba(7, 14, 20, 0.24);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.shipping__slide { border-radius: var(--portrait-radius); }
.shipping__slide img,
.shipping__slide:hover img {
  aspect-ratio: 9 / 16;
  object-fit: contain;
  transform: none;
  background: var(--ink);
  filter: saturate(0.84) contrast(1.04) sepia(0.05);
}
.shipping__status { margin: 0.6rem 0 0; font-size: 0.72rem; color: var(--ash); }
.trust__card,
.trust__card:hover {
  transform: none;
  border: 0;
  border-top: 1px solid rgba(143, 144, 142, 0.22);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.visit__frame { aspect-ratio: 9 / 16; border-radius: var(--portrait-radius); background: var(--ink); }
.visit__photo { width: 100%; height: 100%; object-fit: contain; filter: saturate(0.84) contrast(1.04) sepia(0.05); }

@media (max-width: 900px) {
  .hero__layout,
  .story__compose,
  .founders__inner { grid-template-columns: 1fr; }
  .hero__layout { gap: 3rem; }
  .hero__media { justify-content: center; }
  .store__track { inset-inline: 1.5rem; }
  .store__slide { grid-template-columns: minmax(140px, 0.65fr) minmax(240px, 1fr); }
  .store__side { display: none; }
  .founders__inner { grid-template-areas: "head" "photo" "identity" "quote" "meta"; text-align: center; }
  .founders__head,
  .founders__lead,
  .founders__photo-wrap,
  .founders__quote { margin-inline: auto; }
}

@media (max-width: 640px) {
  .hero__title { font-size: clamp(3rem, 15vw, 4.6rem); }
  .store__stage { height: 760px; }
  .store__track { inset-inline: 0; }
  .store__slide { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr); gap: 1.5rem; }
  .store__copy { padding: 0; }
  .store__frame { height: 570px; width: min(100%, 320px); justify-self: center; }
  .store__dots { padding-inline: 2rem; }
  .store__dots::before { left: 2rem; right: 2rem; }
  .store__dot { margin-inline: 0.8rem; }
  .founders__photo-wrap,
  .founders__photo { width: min(100%, 340px); }
}

/* —— Sistema visual: seleção pessoal —— */
:root {
  --selection: #193447;
  --selection-soft: rgba(25, 52, 71, 0.18);
  --portrait-radius: 4px;
}

body {
  background: var(--ink);
}

.hero,
.store,
.founders,
.trust,
.finale {
  background: var(--ink);
}

.story,
.shipping,
.visit,
.footer {
  background: var(--deep);
}

.hero__bg {
  background: var(--ink);
}

.hero__wordmark,
.hero__glow-copy,
.hero__grain,
.hero__vignette,
.hero__glow,
.story__wordmark,
.story__glow,
.founders__glow {
  display: none;
}

.hero__layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  max-width: 1180px;
  gap: clamp(3rem, 8vw, 8rem);
}

.hero__content {
  max-width: 43rem;
}

.hero__title {
  max-width: 11ch;
  font-size: clamp(3.6rem, 7.5vw, 6rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.hero__lead {
  max-width: 48ch;
  color: var(--ash);
}

.hero__story {
  width: min(100%, 330px);
  border: 0;
  border-radius: var(--portrait-radius);
  box-shadow: none;
}

.hero__video,
.story__reel {
  object-fit: contain;
  filter: saturate(0.84) contrast(1.04) sepia(0.05);
}

.hero__scroll-arrow {
  animation: none;
}

.btn--solid,
.nav__cta,
.nav__overlay-cta {
  border-color: var(--selection);
  background: var(--selection);
  color: var(--paper);
}

.btn--solid:hover,
.nav__cta:hover {
  border-color: var(--selection);
  background: transparent;
  color: var(--paper);
}

.store__title,
.story__title,
.founders__title,
.care__title,
.shipping__title,
.trust__title,
.visit__title,
.finale__title {
  font-size: clamp(2.7rem, 5.5vw, 4.75rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.store__label,
.story__label,
.care__label,
.shipping__label,
.visit__label {
  letter-spacing: 0.12em;
  color: var(--ash);
}

/* O trilho representa opções disponíveis e a seleção atual. */
.store__stage {
  height: clamp(590px, 72vh, 760px);
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.store__track {
  inset: 0 clamp(4rem, 10vw, 9rem);
}

.store__slide {
  grid-template-columns: minmax(180px, 0.72fr) minmax(280px, 0.9fr) minmax(90px, 0.32fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 0;
}

.store__frame {
  overflow: hidden;
  aspect-ratio: 9 / 16;
  height: min(68vh, 720px);
  align-self: center;
  border-radius: var(--portrait-radius);
  background: var(--deep);
  clip-path: inset(100% 0 0 0);
}

.store__slide.is-active .store__frame {
  clip-path: inset(0 0 0 0);
  transition: clip-path 1s var(--ease-out);
}

.store__photo {
  transform: none;
  object-fit: contain;
  filter: saturate(0.84) contrast(1.04) sepia(0.05);
}

.store__slide.is-active .store__photo,
.store__slide.is-leaving .store__photo {
  transform: none;
}

.store__num {
  width: auto;
  padding-top: 0;
  border: 0;
  color: var(--selection);
}

.store__word {
  display: none;
}

.store__controls {
  inset: auto 0 -4.75rem;
  height: 3rem;
}

.store__nav--prev,
.store__nav--next {
  bottom: 0;
}

.store__dots {
  position: relative;
  gap: 0;
  margin-top: 2.4rem;
  padding-inline: 4.5rem;
}

.store__dots::before {
  content: "";
  position: absolute;
  left: 4.5rem;
  right: 4.5rem;
  height: 1px;
  background: rgba(143, 144, 142, 0.24);
}

.store__dot {
  z-index: 1;
  width: 0.55rem;
  height: 0.55rem;
  margin-inline: clamp(1rem, 4vw, 3.5rem);
  border: 2px solid var(--ink);
  background: var(--ash);
}

.store__dot.is-active {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--selection);
}

.story__compose {
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(4rem, 10vw, 9rem);
}

.story__card {
  border: 0;
  border-radius: var(--portrait-radius);
  box-shadow: none;
}

.story__pulse {
  animation: none;
  background: var(--selection);
}

.founders {
  padding-block: clamp(8rem, 15vw, 13rem);
}

.founders__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  grid-template-areas:
    "photo head"
    "photo identity"
    "photo quote"
    "photo meta";
  align-items: start;
  gap: 1.5rem clamp(4rem, 10vw, 9rem);
  max-width: 1120px;
  text-align: left;
}

.founders__head { grid-area: head; margin: 2rem 0 1rem; }
.founders__photo-wrap { grid-area: photo; margin: 0; max-width: 410px; }
.founders__identity { grid-area: identity; margin: 0; }
.founders__quote { grid-area: quote; margin: 1.5rem 0 0; max-width: 30ch; }
.founders__meta { grid-area: meta; }

.founders__lead {
  margin: 0;
  max-width: 44ch;
}

.founders__photo {
  max-width: 410px;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: var(--portrait-radius);
  box-shadow: none;
  background: var(--deep);
  filter: saturate(0.84) contrast(1.04) sepia(0.05);
}

.care__title::after {
  background: var(--selection);
}

.care__cards {
  gap: 0;
  border-top: 1px solid rgba(7, 14, 20, 0.24);
}

.care__card {
  position: relative;
  padding: 1.7rem 0;
  border: 0;
  border-bottom: 1px solid rgba(7, 14, 20, 0.24);
  border-radius: 0;
}

.care__card::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--selection);
}

.care__card:hover {
  transform: none;
  border-color: rgba(7, 14, 20, 0.24);
  background: transparent;
  box-shadow: none;
}

.shipping__slide {
  border-radius: var(--portrait-radius);
}

.shipping__slide img {
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: var(--ink);
  filter: saturate(0.84) contrast(1.04) sepia(0.05);
}

.shipping__slide:hover img {
  transform: none;
}

.shipping__progress-bar {
  background: var(--selection);
}

.shipping__status {
  margin: 0.6rem 0 0;
  font-size: 0.72rem;
  color: var(--ash);
}

.trust__card,
.trust__card:hover {
  transform: none;
  border: 0;
  border-top: 1px solid rgba(143, 144, 142, 0.22);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.visit__frame {
  aspect-ratio: 9 / 16;
  border-radius: var(--portrait-radius);
  background: var(--ink);
}

.visit__photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.84) contrast(1.04) sepia(0.05);
}

@media (max-width: 900px) {
  .hero__layout,
  .story__compose,
  .founders__inner {
    grid-template-columns: 1fr;
  }

  .hero__layout { gap: 3rem; }
  .hero__media { justify-content: center; }

  .store__track { inset-inline: 1.5rem; }
  .store__slide {
    grid-template-columns: minmax(140px, 0.65fr) minmax(240px, 1fr);
  }
  .store__side { display: none; }

  .founders__inner {
    grid-template-areas: "head" "photo" "identity" "quote" "meta";
    text-align: center;
  }
  .founders__head,
  .founders__lead,
  .founders__photo-wrap,
  .founders__quote { margin-inline: auto; }
}

@media (max-width: 640px) {
  .hero__title { font-size: clamp(3rem, 15vw, 4.6rem); }
  .store__stage { height: 760px; }
  .store__track { inset-inline: 0; }
  .store__slide {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 1.5rem;
  }
  .store__copy { padding: 0; }
  .store__frame { height: 570px; width: min(100%, 320px); justify-self: center; }
  .store__dots { padding-inline: 2rem; }
  .store__dots::before { left: 2rem; right: 2rem; }
  .store__dot { margin-inline: 0.8rem; }
  .founders__photo-wrap,
  .founders__photo { width: min(100%, 340px); }
}

body {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--paper);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

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

:focus-visible {
  outline: 1px solid var(--ash);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--white);
  color: var(--ink);
  padding: 0.5rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin-inline: auto;
}

/* —— Ícones oficiais (WhatsApp / Instagram) —— */
.wa-icon,
.ig-icon {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  margin-right: 0.45em;
  vertical-align: -0.15em;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.wa-icon {
  background-color: #25d366;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
}

.ig-icon {
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E");
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.7rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    color 0.45s var(--ease),
    background 0.45s var(--ease),
    border-color 0.45s var(--ease),
    transform 0.45s var(--ease);
}

.btn--solid {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--white);
}

.btn--solid:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-1px);
}

.btn--solid .wa-icon {
  background-color: #25d366;
}

.btn--solid:hover .wa-icon {
  background-color: #25d366;
}

.btn--line {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--line:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

/* —— Navegação principal —— */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-nav);
  background: rgba(7, 14, 20, 0);
  backdrop-filter: blur(0px) saturate(1);
  -webkit-backdrop-filter: blur(0px) saturate(1);
  transition:
    background 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-backdrop-filter 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.38s ease,
    box-shadow 0.38s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(7, 14, 20, 0.88);
  /* blur menor = menos jank no scroll da hero */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.nav__bar {
  position: relative;
  z-index: 2;
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin-inline: auto;
  height: var(--nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  transition: height 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Overlay mobile — escondido no desktop */
.nav__overlay {
  display: none;
}

.nav__overlay[hidden] {
  display: none !important;
}

body.is-nav-open {
  overflow: hidden;
  touch-action: none;
}

.nav.is-scrolled .nav__bar {
  height: var(--nav-scrolled);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  flex-shrink: 0;
}

.nav__mark {
  width: 2.55rem;
  height: 2.55rem;
  object-fit: contain;
  transition:
    width 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav.is-scrolled .nav__mark {
  width: 2.2rem;
  height: 2.2rem;
}

.nav__word {
  font-family: var(--font-d);
  font-size: 1.28rem;
  letter-spacing: 0.03em;
  color: var(--white);
  transition: font-size 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav.is-scrolled .nav__word {
  font-size: 1.15rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.nav__menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 2rem;
  padding: 0 0.1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(243, 242, 239, 0.62);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.15rem;
  height: 1px;
  background: rgba(243, 242, 239, 0.85);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.9;
}

.nav__menu a:hover {
  color: rgba(243, 242, 239, 0.92);
}

.nav__menu a:hover::after {
  transform: scaleX(0.45);
  opacity: 0.45;
}

.nav__menu a.is-active {
  color: rgba(255, 255, 255, 0.96);
}

.nav__menu a.is-active::after {
  transform: scaleX(1);
  opacity: 0.9;
}

.nav__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 2.35rem;
  padding: 0.5rem 1rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.nav__cta .wa-icon {
  width: 1.05em;
  height: 1.05em;
  margin-right: 0.4em;
}

.nav__cta:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

.nav.is-scrolled .nav__cta {
  min-height: 2.15rem;
  padding: 0.45rem 0.9rem;
}

.nav__burger {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  z-index: 120;
  flex-shrink: 0;
}

.nav__burger span {
  display: block;
  width: 1.35rem;
  height: 1px;
  background: var(--white);
  margin: 0.35rem auto;
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
}

.nav__burger[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.nav__burger[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* —— Hero — confiança, atendimento, transformação —— */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:
    calc(var(--nav) + clamp(1.25rem, 2.5vh, 2rem))
    clamp(1.5rem, 4.5vw, 3rem)
    clamp(1.25rem, 2.5vh, 2rem);
  overflow: hidden;
  box-sizing: border-box;
  /* isola pinturas pesadas do resto da página no scroll */
  contain: layout paint style;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* gradients estáticos — sem animação */
  background:
    radial-gradient(
      ellipse 48% 55% at 82% 46%,
      rgba(36, 72, 102, 0.34) 0%,
      transparent 68%
    ),
    radial-gradient(
      ellipse 42% 38% at 22% 38%,
      rgba(30, 58, 80, 0.16) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 42% at 12% 88%,
      rgba(8, 16, 24, 0.7) 0%,
      transparent 60%
    ),
    linear-gradient(
      152deg,
      #05090e 0%,
      #0a141c 34%,
      #102232 64%,
      #060b11 100%
    );
  contain: strict;
}

.hero__wordmark {
  position: absolute;
  left: 6%;
  top: 52%;
  transform: translate3d(0, -50%, 0);
  font-family: var(--font-d);
  font-weight: 500;
  font-size: clamp(5.5rem, 14vw, 12.5rem);
  letter-spacing: 0.02em;
  line-height: 0.85;
  white-space: nowrap;
  /* sem filter:blur (era a principal causa de jank no scroll) */
  color: rgba(255, 255, 255, 0.028);
  user-select: none;
  pointer-events: none;
  will-change: auto;
}

.hero__glow-copy {
  position: absolute;
  left: 8%;
  top: 36%;
  width: min(42vw, 28rem);
  height: min(38vh, 18rem);
  /* glow via gradient largo — sem filter:blur de 40px */
  background: radial-gradient(
    ellipse at center,
    rgba(70, 120, 160, 0.14) 0%,
    rgba(70, 120, 160, 0.04) 42%,
    transparent 70%
  );
  pointer-events: none;
}

.hero__grain {
  /* desligado: feTurbulence + mix-blend no full-viewport travava o scroll */
  display: none;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 78% 72% at 48% 42%,
    transparent 32%,
    rgba(3, 6, 10, 0.58) 100%
  );
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  column-gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  min-width: 0;
  flex: 1 1 auto;
  box-sizing: border-box;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  max-width: 34rem;
  padding: 0;
}

.hero__place {
  margin: 0 0 1rem;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243, 242, 239, 0.46);
}

.hero__title {
  position: relative;
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: -0.028em;
  color: var(--white);
  margin: 0 0 1.15rem;
  max-width: 12ch;
}

.hero__title-line {
  display: block;
}

.hero__lead {
  margin: 0 0 1.2rem;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(243, 242, 239, 0.72);
  max-width: 36ch;
  text-wrap: pretty;
}

/* Três infos rápidas em linha */
.hero__perks {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.15rem;
}

.hero__perks li {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: rgba(243, 242, 239, 0.58);
  white-space: nowrap;
}

.hero__perks li:not(:last-child)::after {
  content: "·";
  margin-inline: 0.7rem;
  color: rgba(243, 242, 239, 0.32);
  font-size: 0.9rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 0.85rem;
  margin-bottom: 1.15rem;
}

.btn--hero {
  min-height: 3.4rem;
  padding-inline: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
}

.btn--hero:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
}

.btn--hero-ghost {
  min-height: 3.4rem;
  padding-inline: 1.55rem;
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(243, 242, 239, 0.82);
}

.btn--hero-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  margin: 0;
  max-width: 42rem;
  min-height: 1.4em;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.45;
  color: rgba(243, 242, 239, 0.4);
  /* evita “piscar” de layout quando a linha quebra no mobile */
  contain: layout style;
}

.hero__proof-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.hero__stars {
  color: rgba(243, 242, 239, 0.58);
  letter-spacing: 0.08em;
  font-size: 0.6rem;
  flex-shrink: 0;
}

.hero__proof-sep {
  opacity: 0.4;
  font-size: 0.72rem;
  flex-shrink: 0;
  user-select: none;
}

/* Vídeo — fluxo normal da grid; largura fixa + aspect-ratio (não colapsa) */
.hero__media {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 0.25rem 0;
}

.hero__glow {
  position: absolute;
  z-index: 0;
  width: min(100%, 26rem);
  height: min(100%, 34rem);
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
  background: radial-gradient(
    ellipse 58% 52% at 50% 50%,
    rgba(52, 98, 138, 0.34) 0%,
    rgba(24, 52, 74, 0.12) 48%,
    transparent 74%
  );
}

.hero__story {
  position: relative;
  z-index: 2;
  display: block;
  width: clamp(330px, 24vw, 380px);
  max-width: 100%;
  height: auto;
  max-height: 660px;
  aspect-ratio: 9 / 16;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  color: var(--white);
  background: #070d12;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.42),
    0 10px 24px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  flex-shrink: 0;
  opacity: 1;
  visibility: visible;
  -webkit-tap-highlight-color: transparent;
}

.hero__story:hover,
.hero__story:focus-visible {
  transform: scale(1.02);
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.48),
    0 14px 30px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero__story:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.45);
  outline-offset: 5px;
}

.hero__story::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(7, 14, 20, 0.34) 0%,
    transparent 22%,
    transparent 64%,
    rgba(7, 14, 20, 0.62) 100%
  );
}

.hero__video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #070d12;
  opacity: 1;
  transition: opacity 0.5s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero.is-video-ready .hero__video {
  opacity: 1;
}

.hero__story-badge {
  position: absolute;
  z-index: 3;
  top: 0.95rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.hero__story-live {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.hero__story-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.88;
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35));
}

.hero__story.is-playing .hero__story-play {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
}

.hero__story:hover .hero__story-play,
.hero__story:focus-visible .hero__story-play {
  opacity: 1;
}

.hero__story-caption {
  position: absolute;
  z-index: 3;
  left: 1rem;
  right: 1rem;
  bottom: 1.05rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

/* Scroll cue — rodapé da Hero, no fluxo */
.hero__scroll {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex: 0 0 auto;
  width: 100%;
  margin: 1.25rem 0 0;
  padding: 0.25rem 0 0;
  align-self: stretch;
  color: rgba(243, 242, 239, 0.38);
  text-decoration: none;
  transition: color 0.35s ease;
}

.hero__scroll:hover {
  color: rgba(243, 242, 239, 0.75);
}

.hero__scroll-arrow {
  display: block;
  font-size: 0.8rem;
  line-height: 1;
  animation: hero-scroll-bob 2.6s ease-in-out infinite;
}

.hero__scroll-text {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes hero-scroll-bob {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}

/* —— Store — experiência do ambiente —— */
.store {
  background: var(--ink);
  padding-block: clamp(5.5rem, 12vw, 9rem);
  padding-inline: clamp(1.25rem, 4vw, 2.25rem);
  box-sizing: border-box;
}

.store__head {
  text-align: center;
  margin-inline: auto;
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
  max-width: 38rem;
}

.store__label {
  margin: 0 0 0.75rem;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200, 201, 199, 0.5);
}

.store__title {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(2.15rem, 4.2vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 1rem;
  text-wrap: balance;
}

.store__lead {
  margin: 0 auto;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fog);
  max-width: 42ch;
  text-wrap: pretty;
}

.store__slider {
  position: relative;
  width: 100%;
  max-width: min(1280px, 100%);
  margin-inline: auto;
}

.store__stage {
  position: relative;
  width: 100%;
  height: clamp(540px, 64vh, 700px);
  border-radius: 18px;
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.3);
}

.store__track {
  position: absolute;
  inset: 0;
}

/* Opção selecionada: contexto | retrato | posição */
.store__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 24%) minmax(0, 52%) minmax(0, 24%);
  align-items: stretch;
  column-gap: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.15rem, 2.5vw, 2rem);
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  pointer-events: none;
  transition:
    opacity 850ms cubic-bezier(0.22, 0.61, 0.36, 1),
    visibility 850ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.store__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  pointer-events: auto;
}

.store__slide.is-leaving {
  opacity: 0;
  visibility: visible;
  z-index: 1;
  pointer-events: none;
}

/* —— Coluna esquerda —— */
.store__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  padding-right: clamp(0.75rem, 1.5vw, 1.5rem);
  z-index: 2;
}

.store__num {
  display: block;
  margin: 0 0 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(243, 242, 239, 0.22);
  width: 2.25rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(243, 242, 239, 0.48);
}

.store__slide-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  text-wrap: balance;
}

.store__slide-text {
  margin: 0 0 0.65rem;
  max-width: 22ch;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(243, 242, 239, 0.68);
  text-wrap: pretty;
}

.store__slide-extra {
  margin: 0 0 1.5rem;
  max-width: 22ch;
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(243, 242, 239, 0.42);
  text-wrap: pretty;
}

/* —— Centro: foto sem crop —— */
.store__frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  height: 100%;
  z-index: 1;
}

.store__photo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: translateX(14px);
  opacity: 0.85;
  image-rendering: auto;
  transition:
    opacity 850ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 850ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.4s ease;
}

.store__slide.is-active .store__photo {
  opacity: 1;
  transform: translateX(0);
}

.store__slide.is-leaving .store__photo {
  opacity: 0;
  transform: translateX(-10px);
}

.store__slide.is-active .store__num,
.store__slide.is-active .store__slide-title,
.store__slide.is-active .store__slide-text,
.store__slide.is-active .store__slide-extra,
.store__slide.is-active .store__count {
  animation: store-meta-in 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.store__slide.is-active .store__slide-title {
  animation-delay: 0.06s;
}

.store__slide.is-active .store__slide-text {
  animation-delay: 0.12s;
}

.store__slide.is-active .store__slide-extra {
  animation-delay: 0.16s;
}

.store__slide.is-active .store__count {
  animation-delay: 0.14s;
}

.store__slide.is-active .store__word {
  animation: store-word-in 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.1s;
}

@keyframes store-meta-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes store-word-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* —— Coluna direita —— */
.store__side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
  padding-left: clamp(0.5rem, 1vw, 1rem);
  z-index: 2;
  overflow: hidden;
}

.store__word {
  position: absolute;
  right: -0.1em;
  top: 50%;
  font-family: var(--font-d);
  font-weight: 500;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translateY(-50%) rotate(180deg);
  pointer-events: none;
  user-select: none;
}

.store__count {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  padding-top: 0.35rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(243, 242, 239, 0.38);
}

/* Controles únicos do carrossel (fora dos slides) */
.store__controls {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.store__nav {
  position: absolute;
  box-sizing: border-box;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: grid;
  place-items: center;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 14, 20, 0.42);
  color: var(--white);
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  flex-shrink: 0;
  pointer-events: auto;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.store__nav--prev {
  left: clamp(1rem, 2.2vw, 1.75rem);
  bottom: clamp(1.25rem, 2.8vw, 2.15rem);
}

.store__nav--next {
  right: clamp(1rem, 2.2vw, 1.75rem);
  bottom: clamp(1.25rem, 2.8vw, 2.15rem);
}

.store__nav-icon {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.store__nav:hover {
  background: rgba(7, 14, 20, 0.62);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.store__nav:active {
  transform: translateY(0);
}

.store__nav:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

.store__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.store__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(243, 242, 239, 0.28);
  cursor: pointer;
  transition:
    width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    background 0.35s ease;
}

.store__dot.is-active {
  width: 1.35rem;
  background: rgba(243, 242, 239, 0.92);
}

.store__dot:hover {
  background: rgba(243, 242, 239, 0.55);
}

.store__dot:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

/* —— História da loja —— */
.story {
  position: relative;
  isolation: isolate;
  background: var(--deep);
  padding-block: clamp(7.5rem, 12vw, 10rem);
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  box-sizing: border-box;
  overflow: hidden;
}

.story__wordmark {
  position: absolute;
  z-index: 0;
  left: 52%;
  top: 46%;
  transform: translate3d(-50%, -50%, 0);
  font-family: var(--font-d);
  font-weight: 500;
  font-size: clamp(6rem, 18vw, 13.75rem);
  line-height: 0.85;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.028);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.story__compose {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.22fr);
  column-gap: clamp(3.75rem, 7vw, 6.75rem);
  align-items: center;
}

/* —— Mídia / vídeo protagonista —— */
.story__media {
  position: relative;
  width: 100%;
  max-width: 400px;
  min-width: 0;
  justify-self: center;
}

.story__reel-wrap {
  position: relative;
  width: 100%;
}

.story__glow {
  position: absolute;
  z-index: 0;
  width: 130%;
  height: 115%;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
  background: radial-gradient(
    ellipse 56% 50% at 50% 48%,
    rgba(36, 74, 108, 0.3) 0%,
    rgba(16, 38, 56, 0.1) 48%,
    transparent 72%
  );
}

/* Vídeo vivo — sem botão play */
.story__card {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 9 / 16;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  background: #0a1016;
  cursor: pointer;
  box-shadow:
    0 42px 100px rgba(0, 0, 0, 0.4),
    0 14px 36px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.45s ease;
}

.story__card:hover,
.story__card:focus-visible {
  transform: scale(1.015);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 50px 118px rgba(0, 0, 0, 0.48),
    0 18px 42px rgba(0, 0, 0, 0.24);
}

.story__card:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.45);
  outline-offset: 5px;
}

.story__badge {
  position: absolute;
  z-index: 3;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.story__pulse {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  animation: story-pulse 2.6s ease-in-out infinite;
}

@keyframes story-pulse {
  0%,
  100% {
    opacity: 0.7;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.28);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }
}

.story__reel {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #0a1016;
}

.story__caption {
  margin: 1.15rem 0 0;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.07em;
  color: rgba(243, 242, 239, 0.38);
}

/* —— Texto da história —— */
.story__copy {
  min-width: 0;
  max-width: 36rem;
  width: 100%;
  justify-self: start;
  padding-block: 0.5rem;
}

.story__label {
  margin: 0 0 1.4rem;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200, 201, 199, 0.48);
}

.story__title {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(2.2rem, 3.5vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.028em;
  color: var(--white);
  margin: 0 0 1.85rem;
}

.story__title-line {
  display: block;
}

.story__text {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(243, 242, 239, 0.68);
  max-width: 44ch;
  text-wrap: pretty;
}

/* Fatos com divisores finos */
.story__facts {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 1.65rem 0;
  border-top: 1px solid rgba(243, 242, 239, 0.1);
  border-bottom: 1px solid rgba(243, 242, 239, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.story__facts li {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: rgba(243, 242, 239, 0.52);
}

/* Citação final — encerramento emocional da história */
.story__closing {
  margin-top: 2.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(243, 242, 239, 0.1);
}

.story__quote {
  position: relative;
  margin: 0 0 1.25rem;
  border: 0;
  padding: 0;
}

.story__quote-open,
.story__quote-close {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(2.25rem, 3vw, 2.85rem);
  line-height: 0.7;
  color: rgba(243, 242, 239, 0.18);
  user-select: none;
}

.story__quote-open {
  margin-bottom: 0.65rem;
}

.story__quote-close {
  margin-top: 0.75rem;
  text-align: left;
}

.story__quote p {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.45vw, 1.95rem);
  line-height: 1.42;
  letter-spacing: -0.018em;
  color: rgba(243, 242, 239, 0.96);
  margin: 0 0 0.85rem;
  text-wrap: pretty;
  max-width: 22ch;
}

.story__quote p:last-of-type {
  margin-bottom: 0;
}

.story__support {
  margin: 1.15rem 0 0;
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(243, 242, 239, 0.42);
}

/* —— Guilherme e Mirian —— */
.founders {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  padding-block: clamp(6.5rem, 12vw, 9.5rem);
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  box-sizing: border-box;
  overflow: hidden;
}

.founders__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.founders__head {
  margin: 0 0 3.25rem;
}

.founders__title {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(2.15rem, 4vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.028em;
  color: var(--white);
  margin: 0 0 1.5rem;
  text-wrap: balance;
}

.founders__lead {
  margin: 0 auto;
  max-width: 38ch;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(243, 242, 239, 0.64);
  text-wrap: pretty;
}

.founders__photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto 2.75rem;
  max-width: min(100%, 820px);
}

.founders__glow {
  position: absolute;
  z-index: 0;
  width: 90%;
  height: 90%;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
  background: radial-gradient(
    ellipse 60% 54% at 50% 50%,
    rgba(36, 74, 108, 0.32) 0%,
    rgba(14, 32, 48, 0.1) 50%,
    transparent 72%
  );
}

.founders__photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 780px;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 36px 88px rgba(0, 0, 0, 0.42),
    0 12px 28px rgba(0, 0, 0, 0.22);
  filter: saturate(0.94) contrast(1.02);
}

.founders__identity {
  margin: 0 0 2.5rem;
}

.founders__names {
  margin: 0 0 0.4rem;
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  letter-spacing: -0.015em;
  color: rgba(243, 242, 239, 0.94);
}

.founders__role {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 242, 239, 0.45);
}

.founders__quote {
  margin: 0 auto 2rem;
  padding: 2rem 0 0;
  border: 0;
  border-top: 1px solid rgba(243, 242, 239, 0.1);
  max-width: 34ch;
}

.founders__quote p {
  margin: 0;
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  line-height: 1.48;
  letter-spacing: -0.015em;
  color: rgba(243, 242, 239, 0.9);
  text-wrap: pretty;
}

.founders__meta {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(243, 242, 239, 0.38);
}

/* —— Atendimento sem pressão —— */
.care {
  background: var(--paper);
  color: var(--ink);
  padding-block: clamp(6rem, 12vw, 9rem);
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.care__inner {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(3rem, 7vw, 5.5rem);
  align-items: center;
}

.care__label {
  margin: 0 0 1rem;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(7, 14, 20, 0.42);
}

.care__title {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 0 0 1.35rem;
  text-wrap: balance;
  max-width: 12ch;
}

.care__title::after {
  content: "";
  display: block;
  width: clamp(3.5rem, 7vw, 5.5rem);
  height: 1px;
  margin-top: 1.35rem;
  background: #a9894f;
}

.care__lead {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(7, 14, 20, 0.64);
  max-width: 36ch;
  text-wrap: pretty;
}

.care__cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.care__card {
  padding: 1.45rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(7, 14, 20, 0.12);
  border-radius: 14px;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s ease;
}

.care__card:hover {
  transform: translateY(-8px);
  border-color: rgba(7, 14, 20, 0.2);
  background: rgba(255, 255, 255, 0.45);
  box-shadow:
    0 20px 48px rgba(7, 14, 20, 0.08),
    0 4px 12px rgba(7, 14, 20, 0.04);
}

.care__card-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-d);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.care__card-text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(7, 14, 20, 0.58);
  max-width: 30ch;
}

/* —— Shipping — peças que chegam a todo o Brasil —— */
.shipping {
  overflow: hidden;
  padding-block: clamp(5.5rem, 11vw, 8.5rem);
  background: var(--deep);
}

.shipping__inner {
  width: min(100% - var(--gutter) * 2, 1280px);
  margin-inline: auto;
}

.shipping__head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.shipping__copy {
  max-width: 42rem;
}

.shipping__label {
  margin: 0 0 1rem;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200, 201, 199, 0.5);
}

.shipping__title {
  margin: 0 0 1.2rem;
  font-family: var(--font-d);
  font-size: clamp(2.3rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  text-wrap: balance;
}

.shipping__lead {
  max-width: 54ch;
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(243, 242, 239, 0.66);
  text-wrap: pretty;
}

.shipping__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.shipping__cta {
  white-space: nowrap;
}

.shipping__controls {
  display: flex;
  gap: 0.65rem;
}

.shipping__arrow {
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}

.shipping__arrow:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.shipping__carousel {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.shipping__carousel:active {
  cursor: grabbing;
}

.shipping__track {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
}

.shipping__slide {
  flex: 0 0 calc((100% - 3.75rem) / 4);
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ink);
}

.shipping__slide img {
  width: 100%;
  aspect-ratio: 0.6;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  user-select: none;
  -webkit-user-drag: none;
}

.shipping__slide:hover img {
  transform: scale(1.025);
}

.shipping__progress {
  height: 1px;
  margin-top: 2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.shipping__progress-bar {
  display: block;
  width: 25%;
  height: 100%;
  background: rgba(255, 255, 255, 0.78);
  transform-origin: left center;
  transition: transform 0.7s var(--ease-out);
}

@media (max-width: 900px) {
  .shipping__slide {
    flex-basis: calc((100% - 1.25rem) / 2);
  }
}

@media (max-width: 640px) {
  .shipping__cta {
    white-space: normal;
    text-align: center;
  }

  .shipping__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .shipping__controls {
    justify-content: flex-end;
  }

  .shipping__slide {
    flex-basis: 82%;
  }
}

/* —— Avaliações de clientes —— */
.trust {
  background: var(--ink);
  padding-block: clamp(5.5rem, 11vw, 8.5rem);
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.trust__inner {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.trust__hero {
  text-align: center;
  margin: 0 auto 2.75rem;
  max-width: 36rem;
}

.trust__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 1.35rem;
}

.trust__stars {
  color: rgba(243, 242, 239, 0.72);
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.trust__num {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.trust__title {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(2.35rem, 4.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 1.15rem;
}

.trust__title-line {
  display: block;
}

.trust__lead {
  margin: 0 auto;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(243, 242, 239, 0.55);
  max-width: 34ch;
}

.trust__metrics {
  list-style: none;
  margin: 0 auto 3rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.75rem;
  max-width: 48rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(243, 242, 239, 0.42);
}

.trust__metric-stars {
  letter-spacing: 0.08em;
  color: rgba(243, 242, 239, 0.55);
  margin-right: 0.25rem;
}

.trust__metric-sep {
  opacity: 0.4;
}

.trust__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.trust__card {
  position: relative;
  margin: 0;
  padding: 2rem 1.65rem 1.65rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease;
}

.trust__card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.trust__mark {
  position: absolute;
  top: 0.35rem;
  left: 1rem;
  font-family: var(--font-d);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}

.trust__card p {
  position: relative;
  z-index: 1;
  margin: 0 0 1.35rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(243, 242, 239, 0.84);
}

.trust__card footer {
  position: relative;
  z-index: 1;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200, 201, 199, 0.48);
}

.trust__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(243, 242, 239, 0.55);
  border-bottom: 1px solid rgba(243, 242, 239, 0.16);
  padding-bottom: 0.15rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.trust__link:hover {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

/* —— Visit — layout amplo desktop (>1100px: 34% / 66%) —— */
.visit {
  position: relative;
  width: 100%;
  background: var(--deep);
  /* pode ultrapassar 100vh — prioridade para legibilidade e fotos */
  min-height: 0;
  padding-top: 7.5rem; /* 120px */
  padding-bottom: 8.75rem; /* 140px */
  padding-left: clamp(1.5rem, 5vw, 4.5rem); /* 24–72px */
  padding-right: clamp(1.5rem, 5vw, 4.5rem);
  box-sizing: border-box;
}

.visit__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.visit__shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  column-gap: clamp(4.5rem, 6vw, 6rem); /* 72–96px */
  align-items: center;
  box-sizing: border-box;
}

/* Coluna esquerda */
.visit__content {
  min-width: 0;
  max-width: 27.5rem; /* 440px */
  width: 100%;
}

.visit__label {
  margin: 0 0 1.15rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200, 201, 199, 0.55);
}

.visit__title {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(3.25rem, 4.2vw, 4rem); /* 52–64px */
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 1.35rem;
}

.visit__title-line {
  display: block;
}

.visit__lead {
  margin: 0 0 2rem;
  max-width: 26rem;
  font-size: clamp(1rem, 1.15vw, 1.125rem); /* 16–18px */
  font-weight: 300;
  line-height: 1.65;
  color: rgba(243, 242, 239, 0.7);
}

.visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.visit__btn {
  min-height: 3.4rem; /* ~54px */
  padding-inline: 1.5rem;
}

.visit__info {
  margin-top: 2.25rem;
  padding-top: 1.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.visit__info-place {
  margin: 0;
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.2;
  color: var(--white);
}

.visit__info-rating {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: rgba(243, 242, 239, 0.62);
}

.visit__info-hours {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(243, 242, 239, 0.72);
}

.visit__info-note {
  margin: 0.1rem 0 0;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(200, 201, 199, 0.72);
}

/* Coluna direita — fotos com presença real, sem crop */
.visit__gallery {
  min-width: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.75rem; /* 28px */
  align-items: end;
  justify-content: start;
}

.visit__shot {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Imagem principal — frente (presença) */
.visit__shot--main {
  width: 100%;
  max-width: 31.25rem; /* 500px */
  justify-self: end;
}

/* Imagem secundária — frente 2 */
.visit__shot--side {
  width: 100%;
  max-width: 24.375rem; /* 390px */
  justify-self: start;
}

.visit__frame {
  width: 100%;
  line-height: 0;
  border-radius: 1.125rem; /* 18px */
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a1016;
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.28),
    0 4px 14px rgba(0, 0, 0, 0.12);
  transition:
    transform 400ms ease,
    box-shadow 400ms ease;
}

.visit__photo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  /* sem scale, sem crop, sem forçar height fixa */
}

.visit__shot:hover .visit__frame {
  transform: translateY(-4px);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.34),
    0 6px 16px rgba(0, 0, 0, 0.14);
}

.visit__caption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-inline: 0.1rem;
}

.visit__cap-title {
  font-size: 0.875rem; /* 14px */
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: rgba(243, 242, 239, 0.78);
}

.visit__cap-sub {
  font-size: 0.75rem; /* 12px */
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(200, 201, 199, 0.62);
}

/* —— Finale CTA —— */
.finale {
  background: var(--ink);
  padding-block: clamp(6.5rem, 14vw, 10rem);
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.finale__inner {
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.finale__title {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(2.15rem, 4.2vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.028em;
  color: var(--white);
  margin: 0 0 1.35rem;
  text-wrap: balance;
}

.finale__lead {
  margin: 0 0 2.25rem;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(243, 242, 239, 0.52);
}

.finale__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* —— Footer — compacto e elegante (~320–420px desktop) —— */
.footer {
  background: #050a0f;
  height: auto;
  min-height: 0;
  padding: 4rem 0 2rem; /* 64px / 32px — faixa 56–72 / 28–40 */
  box-sizing: border-box;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: auto;
  min-height: 0;
}

/* Superior: marca | nav | contato | voltar ao topo */
.footer__upper {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(0, 0.85fr)
    minmax(0, 0.55fr)
    auto;
  column-gap: clamp(5rem, 7vw, 7.5rem); /* 80–120px */
  align-items: flex-start;
  margin-bottom: 0;
}

.footer__col {
  min-width: 0;
}

.footer__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  justify-self: end;
  white-space: nowrap;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 242, 239, 0.4);
  line-height: 1.2;
  transition: color 300ms ease;
}

.footer__back-arrow {
  display: inline-block;
  font-size: 0.85em;
  transition: transform 300ms ease;
}

.footer__back:hover {
  color: var(--white);
}

.footer__back:hover .footer__back-arrow {
  transform: translateY(-2px);
}

.footer__logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 0.85rem;
  opacity: 0.9;
  transition: opacity 300ms ease;
}

.footer__logo:hover {
  opacity: 1;
}

.footer__logo img {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
}

.footer__lines {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: var(--font-d);
  font-size: 1.02rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: rgba(243, 242, 239, 0.48);
}

.footer__lines span {
  display: block;
}

/* Navegação compacta */
.footer__col--nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.95rem; /* ~15px */
  padding-top: 0.15rem;
}

.footer__col--nav a {
  position: relative;
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.25;
  color: rgba(243, 242, 239, 0.55);
  padding-bottom: 0.1rem;
  opacity: 0.85;
  transition:
    color 300ms ease,
    opacity 300ms ease,
    transform 300ms ease;
}

.footer__col--nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 300ms ease;
}

.footer__col--nav a:hover {
  color: var(--white);
  opacity: 1;
  transform: translateY(-2px);
}

.footer__col--nav a:hover::after {
  transform: scaleX(1);
}

/* Contato — só ícones, coluna estreita */
.footer__col--contact {
  padding-top: 0.15rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  max-width: 8rem;
}

.footer__contact-label {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 242, 239, 0.38);
  line-height: 1.2;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 1.1rem; /* ~18px */
}

.footer__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(243, 242, 239, 0.55);
  opacity: 0.75;
  transition:
    color 300ms ease,
    opacity 300ms ease,
    transform 300ms ease,
    filter 300ms ease;
}

.footer__icon {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.footer__icon-link:hover {
  color: var(--white);
  opacity: 1;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.22));
}

.footer__icon-link:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.45);
  outline-offset: 4px;
}

/* Linha divisória compacta */
.footer__rule {
  width: 100%;
  height: 1px;
  margin-top: 2.25rem; /* 36px */
  margin-bottom: 1.6rem; /* 26px */
  background: rgba(255, 255, 255, 0.08);
  border: 0;
}

/* Área inferior — uma linha */
.footer__lower {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.footer__copy {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: rgba(143, 144, 142, 0.62);
  white-space: nowrap;
}

.footer__credit {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(143, 144, 142, 0.5);
}

.footer__webncy {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  color: rgba(243, 242, 239, 0.5);
  opacity: 0.85;
  transition:
    color 300ms ease,
    opacity 300ms ease;
}

.footer__webncy::after {
  content: "";
  position: absolute;
  left: 0;
  right: 1.1em;
  bottom: -0.12em;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 300ms ease;
}

.footer__webncy:hover {
  color: var(--white);
  opacity: 1;
}

.footer__webncy:hover::after {
  transform: scaleX(1);
}

.footer__arrow {
  display: inline-block;
  font-size: 0.78em;
  opacity: 0.7;
  transition: transform 300ms ease, opacity 300ms ease;
}

.footer__webncy:hover .footer__arrow {
  opacity: 1;
  transform: translate(2px, -1px);
}

/* —— Modal —— */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 20, 0.88);
  cursor: pointer;
}

.modal__panel {
  position: relative;
  width: min(100%, 52rem);
  background: var(--ink);
  border: 1px solid var(--line-dark);
  padding: 1rem 1rem 1.15rem;
}

.modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.modal__title {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--white);
}

.modal__close {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ash);
  transition: color 0.2s ease;
}

.modal__close:hover {
  color: var(--white);
}

.modal__media {
  aspect-ratio: 16 / 9;
  background: #000;
}

.modal__media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

/* —— Responsive —— */
@media (max-width: 1100px) {
  .hero {
    min-height: 0;
    padding-top: calc(var(--nav) + 2rem);
    padding-bottom: 2rem;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    column-gap: 1.75rem;
    align-items: center;
  }

  .hero__content {
    max-width: none;
  }

  .hero__title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    max-width: 12ch;
  }

  .hero__story {
    width: min(300px, 100%);
    max-height: 560px;
  }

  /* Visit: tablet — texto acima, fotos lado a lado */
  .visit {
    padding-top: 5.5rem;
    padding-bottom: 6.25rem;
  }

  .visit__shell {
    grid-template-columns: 1fr;
    row-gap: 3.5rem;
    column-gap: 0;
    align-items: start;
  }

  .visit__content {
    max-width: 36rem;
  }

  .visit__title {
    font-size: clamp(2.85rem, 6.5vw, 3.5rem);
  }

  .visit__gallery {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
  }

  .visit__shot--main {
    max-width: 28rem; /* ~448px — ainda com presença */
    justify-self: stretch;
  }

  .visit__shot--side {
    max-width: 22rem; /* ~352px */
    justify-self: stretch;
  }

  .hero__wordmark {
    left: 50%;
    transform: translate(-50%, -50%);
    top: 38%;
    font-size: clamp(5rem, 15vw, 9rem);
  }

  .hero__glow-copy {
    left: 50%;
    transform: translateX(-50%);
    top: 28%;
  }

  .store__stage {
    height: clamp(500px, 58vh, 620px);
  }

  .store__slide {
    grid-template-columns: minmax(0, 28%) minmax(0, 48%) minmax(0, 24%);
    padding: 1.35rem 1.15rem;
  }

  .store__slide-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  }

  .store__slide-text {
    font-size: 0.84rem;
    max-width: 20ch;
  }

  .store__slide-extra {
    display: none;
  }

  .store__word {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
  }

  .story__compose {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
    column-gap: clamp(2.5rem, 4.5vw, 4rem);
  }

  .story__media {
    max-width: 360px;
  }

  .story__card {
    max-width: 360px;
  }

  .story__copy {
    max-width: 34rem;
  }

  .story__title {
    font-size: clamp(2rem, 3.2vw, 2.7rem);
  }

  .story__wordmark {
    font-size: clamp(5rem, 14vw, 9rem);
    left: 58%;
  }
}

@media (max-width: 960px) {
  .nav__burger {
    display: grid;
    place-items: center;
    z-index: 2;
  }

  /* Desktop links escondidos — menu mobile é o overlay */
  .nav__links {
    display: none;
  }

  /* —— Overlay tela cheia —— */
  .nav__overlay {
    display: block;
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100dvh;
    min-height: 100vh;
    z-index: var(--z-nav-overlay);
    background: #050a0f;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav__overlay[hidden] {
    display: none !important;
  }

  .nav__overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__overlay-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100dvh;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    padding: 0 0 max(1.5rem, env(safe-area-inset-bottom));
    box-sizing: border-box;
  }

  /* Cabeçalho: logo | X */
  .nav__overlay-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-shrink: 0;
    height: 5.25rem; /* 84px */
    padding-inline: 1.35rem; /* ~22px */
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav__overlay-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
    color: var(--white);
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.05s,
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
  }

  .nav__overlay.is-open .nav__overlay-brand {
    opacity: 1;
    transform: none;
  }

  .nav__overlay-brand img {
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
    flex-shrink: 0;
  }

  .nav__overlay-brand span {
    font-family: var(--font-d);
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .nav__overlay-close {
    position: relative;
    flex-shrink: 0;
    width: 2.75rem; /* 44px */
    height: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    display: grid;
    place-items: center;
    margin-right: -0.35rem;
    border-radius: 50%;
    color: var(--white);
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
      background 0.25s ease;
  }

  .nav__overlay.is-open .nav__overlay-close {
    opacity: 1;
    transform: none;
  }

  .nav__overlay-close:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav__overlay-close-icon {
    position: relative;
    display: block;
    width: 1.15rem;
    height: 1.15rem;
  }

  .nav__overlay-close-icon::before,
  .nav__overlay-close-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.15rem;
    height: 1px;
    background: currentColor;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav__overlay-close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav__overlay-close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav__overlay.is-open .nav__overlay-close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav__overlay.is-open .nav__overlay-close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  /* Links editoriais em coluna */
  .nav__overlay-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.55rem; /* ~25px */
    margin-top: 2.5rem; /* 40px */
    padding-inline: 1.6rem; /* ~26px */
    width: 100%;
    box-sizing: border-box;
  }

  .nav__overlay-link {
    display: inline-flex;
    align-items: baseline;
    gap: 0.85rem;
    max-width: 100%;
    color: rgba(243, 242, 239, 0.92);
    text-decoration: none;
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      color 0.25s ease;
  }

  .nav__overlay.is-open .nav__overlay-link {
    opacity: 1;
    transform: none;
  }

  .nav__overlay.is-open .nav__overlay-link:nth-child(1) {
    transition-delay: 0.12s;
  }
  .nav__overlay.is-open .nav__overlay-link:nth-child(2) {
    transition-delay: 0.17s;
  }
  .nav__overlay.is-open .nav__overlay-link:nth-child(3) {
    transition-delay: 0.22s;
  }
  .nav__overlay.is-open .nav__overlay-link:nth-child(4) {
    transition-delay: 0.27s;
  }
  .nav__overlay.is-open .nav__overlay-link:nth-child(5) {
    transition-delay: 0.32s;
  }

  .nav__overlay-num {
    flex-shrink: 0;
    font-family: var(--font-b);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(143, 144, 142, 0.55);
    transform: translateY(-0.15em);
  }

  .nav__overlay-text {
    font-family: var(--font-d);
    font-size: clamp(1.75rem, 7.5vw, 2.15rem); /* 28–34px */
    font-weight: 400;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: -0.015em;
    text-transform: none;
  }

  .nav__overlay-link:hover .nav__overlay-text,
  .nav__overlay-link:focus-visible .nav__overlay-text {
    color: var(--white);
  }

  /* CTA WhatsApp separado */
  .nav__overlay-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 3.2rem);
    max-width: 100%;
    min-height: 3.25rem; /* 52px */
    margin: 2.5rem 1.6rem 0; /* 40px top */
    padding: 0.85rem 1.25rem;
    box-sizing: border-box;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 999px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.4s,
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.4s,
      background 0.3s ease,
      color 0.3s ease;
  }

  .nav__overlay.is-open .nav__overlay-cta {
    opacity: 1;
    transform: none;
  }

  .nav__overlay-cta:hover {
    background: transparent;
    color: var(--white);
  }

  /* Meta inferior */
  .nav__overlay-meta {
    margin-top: auto;
    padding: 2.5rem 1.6rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.48s,
      transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.48s;
  }

  .nav__overlay.is-open .nav__overlay-meta {
    opacity: 1;
    transform: none;
  }

  .nav__overlay-meta-label {
    margin: 0 0 0.1rem;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(143, 144, 142, 0.48);
  }

  .nav__overlay-ig {
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    color: rgba(243, 242, 239, 0.52);
    text-decoration: none;
    transition: color 0.25s ease;
  }

  .nav__overlay-ig:hover {
    color: rgba(243, 242, 239, 0.88);
  }

  .nav__overlay-place {
    margin: 0.35rem 0 0;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(143, 144, 142, 0.55);
  }

  @media (prefers-reduced-motion: reduce) {
    .nav__overlay,
    .nav__overlay-brand,
    .nav__overlay-close,
    .nav__overlay-link,
    .nav__overlay-cta,
    .nav__overlay-meta {
      transition: none !important;
      transform: none !important;
    }

    .nav__overlay.is-open .nav__overlay-brand,
    .nav__overlay.is-open .nav__overlay-close,
    .nav__overlay.is-open .nav__overlay-link,
    .nav__overlay.is-open .nav__overlay-cta,
    .nav__overlay.is-open .nav__overlay-meta {
      opacity: 1;
      transform: none;
    }
  }

  .story {
    padding-block: clamp(5rem, 12vw, 6.75rem);
  }

  .story__compose {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
  }

  .story__media {
    max-width: min(340px, 82vw);
    width: 100%;
  }

  .story__card {
    max-width: none;
  }

  .story__caption {
    text-align: center;
  }

  .story__copy {
    max-width: 36rem;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .story__title {
    max-width: 14ch;
    margin-bottom: 1.5rem;
  }

  .story__text {
    max-width: 38ch;
  }

  .story__facts {
    width: 100%;
    max-width: 18rem;
    align-items: center;
    margin-top: 2.15rem;
  }

  .story__closing {
    width: 100%;
    max-width: 30rem;
    margin-top: 2.5rem;
    padding-top: 2.25rem;
  }

  .founders {
    padding-block: clamp(5rem, 12vw, 7rem);
  }

  .founders__head {
    margin-bottom: 2.5rem;
  }

  .founders__photo-wrap {
    margin-bottom: 2.25rem;
    max-width: min(100%, 520px);
  }

  .founders__photo {
    max-width: 100%;
  }

  .founders__quote {
    max-width: 32ch;
  }

  .story__quote p {
    max-width: 22ch;
    margin-inline: auto;
  }

  .story__quote-open,
  .story__quote-close {
    text-align: center;
  }

  .story__wordmark {
    left: 50%;
    top: 22%;
    font-size: clamp(4.5rem, 22vw, 7rem);
  }

  .care__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .care__title {
    max-width: none;
  }

  .trust__row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trust__title {
    font-size: clamp(2.1rem, 7vw, 2.85rem);
  }

  .finale__title {
    font-size: clamp(1.95rem, 7vw, 2.75rem);
  }

  .footer {
    padding: 3.25rem 0 1.85rem;
  }

  .footer__upper {
    grid-template-columns: 1fr 1fr auto;
    column-gap: 2.25rem;
    row-gap: 1.75rem;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }

  .footer__back {
    grid-column: 3;
    grid-row: 2;
    align-self: start;
  }

  .footer__col--contact {
    max-width: none;
  }

  .footer__rule {
    margin-top: 1.85rem;
    margin-bottom: 1.35rem;
  }

  .footer__copy {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2.25rem;
    justify-items: center;
  }

  .hero__content {
    max-width: 36rem;
    width: 100%;
  }

  .hero__media {
    width: 100%;
  }

  .hero__story {
    width: min(300px, 70vw);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 0;
    justify-content: flex-start;
    padding-top: calc(var(--nav) + 1.35rem);
    padding-bottom: 1.75rem;
    padding-inline: clamp(1.15rem, 4.5vw, 1.5rem);
  }

  .hero__wordmark {
    font-size: clamp(4rem, 18vw, 7rem);
  }

  .hero__layout {
    row-gap: 1.85rem;
    text-align: center;
  }

  .hero__content {
    max-width: none;
    margin-inline: auto;
    align-items: center;
  }

  .hero__title {
    font-size: clamp(2.05rem, 8.5vw, 2.55rem);
    max-width: 11ch;
    margin-inline: auto;
    text-align: center;
  }

  .hero__lead {
    margin-inline: auto;
    max-width: 32ch;
  }

  .hero__perks {
    justify-content: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__proof {
    justify-content: center;
    text-align: center;
    row-gap: 0.35rem;
  }

  .hero__proof-item {
    white-space: nowrap;
  }

  /* vídeo estável: sem scale no hover (evita “pulo” no toque) */
  .hero__story {
    width: min(280px, 72vw);
    max-height: 520px;
  }

  .hero__story:hover,
  .hero__story:focus-visible {
    transform: none;
  }

  .hero__scroll {
    margin-top: 1.35rem;
  }

  .store__stage {
    height: auto;
    min-height: 34rem;
  }

  .store__slide {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(260px, 46vw) auto auto;
    row-gap: 1rem;
    padding: 1.1rem 1rem 1.25rem;
  }

  .store__frame {
    grid-row: 1;
    width: 100%;
    min-height: 260px;
  }

  .store__copy {
    grid-row: 2;
    padding-right: 0;
    width: 100%;
  }

  .store__side {
    grid-row: 3;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding-left: 0;
    min-height: 2.5rem;
  }

  .store__word {
    display: none;
  }

  .store__count {
    margin: 0;
    padding: 0;
  }

  .store__slide-text {
    max-width: none;
  }

  .store__photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* Setas sobre a foto — sempre visíveis e simétricas */
  .store__nav {
    width: 2.65rem;
    height: 2.65rem;
    min-width: 2.65rem;
    min-height: 2.65rem;
    top: calc(1.1rem + max(130px, 23vw));
    bottom: auto;
    transform: translateY(-50%);
    background: rgba(7, 14, 20, 0.55);
    border-color: rgba(255, 255, 255, 0.28);
  }

  .store__nav--prev {
    left: 0.85rem;
  }

  .store__nav--next {
    right: 0.85rem;
  }

  .store__nav:hover,
  .store__nav:active {
    transform: translateY(-50%);
  }

  .store__nav-icon {
    width: 1.1rem;
    height: 1.1rem;
  }

  .visit {
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }

  .visit__shell {
    row-gap: 2.75rem;
  }

  .visit__content {
    max-width: none;
  }

  .visit__title {
    font-size: clamp(2.5rem, 9vw, 3.05rem);
  }

  .visit__lead {
    font-size: 1.05rem;
    max-width: none;
  }

  .visit__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .visit__actions .btn,
  .visit__btn,
  .finale__actions .btn {
    width: 100%;
  }

  .finale__actions {
    flex-direction: column;
    align-items: stretch;
  }

  /* Mobile: coluna única, fotos 100%, sem crop */
  .visit__gallery {
    grid-template-columns: 1fr;
    gap: 1.85rem;
    width: 100%;
    max-width: 100%;
  }

  .visit__shot--main,
  .visit__shot--side {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .visit__cap-title {
    font-size: 0.875rem;
  }

  .visit__cap-sub {
    font-size: 0.75rem;
  }

  .visit__shot:hover .visit__frame {
    transform: none;
  }

  .footer {
    padding: 3.25rem 0 2rem; /* 52px / 32px */
  }

  .footer__upper {
    grid-template-columns: 1fr 1fr;
    row-gap: 1.65rem;
    column-gap: 1.25rem;
    text-align: center;
    justify-items: center;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__lines {
    align-items: center;
    font-size: 1rem;
  }

  .footer__col--nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.25rem;
    justify-items: center;
    width: 100%;
    max-width: 18rem;
  }

  .footer__col--contact {
    grid-column: 1 / -1;
    align-items: center;
    max-width: none;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__back {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: center;
    order: 10;
  }

  .footer__rule {
    margin-top: 1.65rem;
    margin-bottom: 1.25rem;
  }

  .footer__lower {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .footer__copy {
    white-space: normal;
  }

  .footer__copy,
  .footer__credit {
    font-size: 0.68rem;
  }

  .trust__metrics {
    gap: 0.35rem 0.55rem;
    font-size: 0.66rem;
  }
}

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

  .store__slide,
  .store__photo,
  .store__nav,
  .story__card,
  .story__pulse,
  .care__card,
  .trust__card,
  .visit__photo,
  .visit__frame,
  .btn {
    transition: none !important;
    animation: none !important;
  }

  .visit__shot:hover .visit__frame {
    transform: none !important;
  }

  .store__photo,
  .store__slide.is-active .store__photo,
  .store__slide.is-leaving .store__photo,
  .story__card:hover,
  .story__card:focus-visible,
  .care__card:hover,
  .trust__card:hover {
    transform: none !important;
  }

  .hero__scroll-arrow {
    animation: none !important;
  }

  .hero__story,
  .hero__story:hover,
  .hero__story:focus-visible {
    transition: none !important;
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
