/* ============================================================
   Tamara Busato — direção editorial (arestas vivas, assimetria,
   imagem em primeiro plano, movimento com intenção)
   ============================================================ */

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

/* grão analógico sobre tudo */
.grain {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background-image: var(--grain);
  background-size: 180px 180px;
  opacity: 0.05;
  mix-blend-mode: multiply;
}

/* barra de progresso de leitura (CSS scroll-driven, degrada para nada) */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  z-index: 90;
  background: var(--petroleo);
  transform: scaleX(0);
  transform-origin: 0 50%;
}
@supports (animation-timeline: scroll()) {
  .progress {
    animation: progress linear both;
    animation-timeline: scroll(root);
  }
}
@keyframes progress {
  to {
    transform: scaleX(1);
  }
}

/* pular para o conteúdo */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  padding: 0.6em 1em;
  background: var(--areia-clara);
  color: var(--vinho);
}

.method :focus-visible,
.cta :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--areia-clara);
}

.svg-sprite {
  position: absolute;
}

/* ---------- rótulos editoriais ---------- */
.label {
  display: inline-flex;
  align-items: baseline;
  gap: 0.8em;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--petroleo);
  font-weight: 600;
}
.label .n {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0;
  color: var(--vinho);
}
.label .leque {
  width: 16px;
  align-self: center;
}

.leque,
.mark,
.fan,
.faq__icon,
.wa-float svg {
  color: currentColor;
  aspect-ratio: 1;
  height: auto;
}

/* ---------- botões (retangulares) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  padding: 1.15em 2.1em;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn .leque {
  width: 15px;
  transition: transform 0.4s var(--ease-out);
}
.btn:hover .leque {
  transform: translateX(4px) rotate(8deg);
}
.btn--primary {
  background: var(--vinho);
  color: var(--areia);
}
.btn--primary:hover {
  background: var(--tinta);
}
.btn--ghost {
  background: transparent;
  color: var(--vinho);
  border-color: currentColor;
}
.btn--ghost:hover {
  background: var(--vinho);
  color: var(--areia);
}
.btn--lg {
  padding: 1.3em 2.5em;
  font-size: 0.82rem;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
}
.site-header.is-scrolled {
  background: var(--areia);
  box-shadow: 0 1px 0 rgba(42, 16, 22, 0.12);
}
.site-header.is-scrolled .container {
  padding-block: 10px;
}
/* logo oficial empilhado (leque + nome), igual ao Instagram */
.brand {
  display: flex;
  align-items: center;
}
.brand__logo {
  display: block;
  height: clamp(52px, 4vw, 62px);
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav a:not(.btn) {
  position: relative;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tinta);
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--vinho);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.35s var(--ease-out);
}
.nav a:not(.btn):hover::after {
  transform: scaleX(1);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--vinho);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--areia);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: clamp(560px, 86vh, 920px);
  align-items: center;
}
.hero__lead {
  padding: 60px var(--gutter) 60px;
  max-width: 820px;
  /* bloco encostado à esquerda da coluna (antes ia colado na foto, à direita) */
  margin-right: auto;
  text-align: center;
}
.hero__head {
  font-size: var(--fs-h1);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-top: 28px;
}
.hero__head .line {
  display: block;
  overflow: hidden;
}
.hero__head .line > span {
  display: block;
  transform: translateY(110%);
}
.is-ready .hero__head .line > span {
  transform: none;
  transition: transform 0.9s var(--ease-out);
}
.is-ready .hero__head .line:nth-child(2) > span {
  transition-delay: 0.08s;
}
.is-ready .hero__head .line:nth-child(3) > span {
  transition-delay: 0.16s;
}
.hero__head .em {
  font-style: italic;
  color: var(--petroleo);
}
.hero__sub {
  margin-top: 32px;
  max-width: 46ch;
  margin-inline: auto;
  color: var(--tinta);
  opacity: 0.86;
}
.hero__media {
  position: relative;
  align-self: stretch;
  overflow: hidden;
}
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* sobre a foto da Tamara, o leque vira selo de canto — não marca d'água */
.hero__media .fan {
  position: absolute;
  left: auto;
  right: 6%;
  top: auto;
  bottom: 6%;
  width: 15%;
  color: var(--areia-clara);
  transform: none;
  filter: drop-shadow(0 10px 26px rgba(42, 16, 22, 0.5));
  opacity: 0;
}
.is-ready .hero__media .fan {
  opacity: 0.92;
  transition: opacity 1.1s var(--ease-out) 0.3s;
}
.hero__scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 26px;
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--petroleo);
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--vinho);
  color: var(--areia);
  padding-block: 22px;
  overflow: hidden;
  white-space: nowrap;
  border-block: 1px solid rgba(239, 233, 223, 0.25);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marquee 38s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1rem + 1.6vw, 2.3rem);
  padding-inline: 0.7em;
}
.marquee .leque {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--areia-clara);
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- seção base ---------- */
.section {
  padding-block: var(--section-y);
  position: relative;
}
.section--tint {
  background: var(--areia-clara);
}
.head {
  display: grid;
  gap: 22px;
  margin-bottom: clamp(44px, 6vw, 84px);
  max-width: 42rem;
}
.head h2 {
  font-size: var(--fs-h2);
  line-height: 1.08;
}
.head--center {
  margin-inline: auto;
  text-align: center;
  max-width: 44rem;
}
.head--center .label {
  justify-content: center;
}

/* índice gigante de seção (marca d'água) */
.section__no {
  position: absolute;
  top: clamp(20px, 4vw, 60px);
  right: var(--gutter);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(4rem, 3rem + 7vw, 11rem);
  line-height: 1;
  color: var(--vinho);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.section .container {
  position: relative;
  z-index: 1;
}

/* ---------- sobre ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}
.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--areia-clara);
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__media figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 12px 16px;
  background: var(--vinho);
  color: var(--areia);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.about__text p {
  max-width: 46ch;
  color: var(--tinta);
}
.about__text p + p {
  margin-top: 1.2em;
}
.about__pillars {
  margin-top: 40px;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0;
}
.about__pillars li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(42, 16, 22, 0.16);
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--vinho);
}
.about__pillars li:last-child {
  border-bottom: 1px solid rgba(42, 16, 22, 0.16);
}
.about__pillars .leque {
  width: 20px;
  color: var(--petroleo);
}

/* ---------- números / credibilidade ---------- */
.stats {
  padding-block: clamp(8px, 2vw, 28px) clamp(56px, 8vw, 104px);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(42, 16, 22, 0.16);
}
.stats__grid li {
  padding: clamp(32px, 5vw, 56px) clamp(8px, 3vw, 40px);
  text-align: center;
  border-bottom: 1px solid rgba(42, 16, 22, 0.16);
}
.stats__grid li + li {
  border-left: 1px solid rgba(42, 16, 22, 0.16);
}
.stats__n {
  display: block;
  font-family: var(--font-display);
  font-weight: 360;
  font-size: clamp(2.8rem, 1.8rem + 4vw, 5.4rem);
  line-height: 1;
  color: var(--vinho);
}
.stats__l {
  display: block;
  margin-top: 14px;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--petroleo);
}
@media (max-width: 720px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
  .stats__grid li + li {
    border-left: 0;
  }
}

/* ---------- problema ---------- */
.pains {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(42, 16, 22, 0.16);
}
.pains li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid rgba(42, 16, 22, 0.16);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1rem + 1.2vw, 2rem);
  line-height: 1.25;
  color: var(--vinho);
}
.pains .leque {
  width: 26px;
  color: var(--petroleo);
  margin-top: 8px;
}
.turn {
  margin-top: clamp(44px, 6vw, 72px);
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 1.2rem + 2.6vw, 3.4rem);
  color: var(--vinho);
}

/* ---------- método ---------- */
.method {
  position: relative;
  overflow: hidden;
  color: var(--areia-clara);
  background: var(--petroleo);
}
.method::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: var(--pattern-light);
  background-size: 110px 110px;
  pointer-events: none;
}
.method .container {
  position: relative;
  z-index: 2;
}
.method__top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.method h2 {
  font-size: var(--fs-h2);
  color: var(--areia-clara);
  line-height: 1;
}
.method__top .head {
  margin: 0;
  max-width: none;
}
.method .label,
.method .label .n {
  color: var(--areia-clara);
}
.method__sub {
  color: rgba(239, 233, 223, 0.82);
  max-width: 38ch;
}
.method__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(239, 233, 223, 0.3);
}
.method__steps > li {
  display: grid;
  grid-template-columns: clamp(60px, 9vw, 140px) 1fr;
  gap: clamp(16px, 3vw, 48px);
  align-items: baseline;
  padding: clamp(26px, 4vw, 44px) 0;
  border-bottom: 1px solid rgba(239, 233, 223, 0.3);
  transition: background 0.4s var(--ease);
}
.method__steps > li:hover {
  background: rgba(239, 233, 223, 0.06);
}
.method__steps .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3.6rem);
  color: var(--areia-clara);
}
.method__steps h3 {
  color: var(--areia-clara);
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2.1rem);
  margin-bottom: 8px;
}
.method__steps p {
  color: rgba(239, 233, 223, 0.78);
  max-width: 62ch;
}
.method__steps strong {
  color: var(--areia-clara);
  font-weight: 600;
}
.method__lead {
  margin-top: 18px;
}
.method__note {
  margin-top: 18px;
  font-style: italic;
  font-size: 0.92rem;
  opacity: 0.9;
}

/* bullets das etapas — marcador discreto em areia */
.method__bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}
.method__bullets li {
  position: relative;
  padding-left: 20px;
  max-width: 62ch;
  color: rgba(239, 233, 223, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
}
.method__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--areia-clara);
  opacity: 0.55;
}

/* os dois caminhos iniciais da etapa 01 */
.method__paths {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.6vw, 24px);
}
.method__paths .path {
  padding: clamp(18px, 1.6vw, 24px);
  border: 1px solid rgba(239, 233, 223, 0.3);
}
.method__paths .leque {
  width: 18px;
  color: var(--areia-clara);
  opacity: 0.75;
  margin-bottom: 12px;
}
.method__paths h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.28rem);
  line-height: 1.2;
  color: var(--areia-clara);
  margin-bottom: 8px;
}
.method__paths p {
  font-size: 0.9rem;
  line-height: 1.58;
  max-width: none;
}
@media (max-width: 720px) {
  .method__paths {
    grid-template-columns: 1fr;
  }
}
.method__cta {
  margin-top: clamp(40px, 5vw, 60px);
}
.method .btn--primary {
  background: var(--areia-clara);
  color: var(--vinho);
}
.method .btn--primary:hover {
  background: var(--areia);
}

/* ---------- as 3 etapas do método (TB360) em foto do ateliê ---------- */
.method__shots {
  margin-top: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 26px);
}
.method__shots figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(239, 233, 223, 0.32);
  background: rgba(0, 0, 0, 0.18);
}
.method__shots img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.method__shots figure:hover img {
  transform: scale(1.05);
}
.method__shots figcaption {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 3px;
  padding: 22px 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(19, 41, 41, 0.5) 42%, rgba(14, 30, 30, 0.9));
  color: var(--areia-clara);
}
.method__shots .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1;
  opacity: 0.85;
}
.method__shots b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.7rem);
  line-height: 1.04;
}
.method__shots figcaption span:last-child {
  margin-top: 2px;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  color: rgba(239, 233, 223, 0.82);
}
@media (max-width: 720px) {
  .method__shots {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }
}

/* ---------- banda full-bleed com parallax ---------- */
.band {
  position: relative;
  /* min-height (não height fixo): a faixa cresce se o texto precisar,
     então "direção certa" nunca é cortado em telas mais baixas */
  min-height: clamp(320px, 52vh, 560px);
  padding-block: clamp(44px, 6vh, 88px);
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--areia-clara);
}
.band__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.band__media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* no celular a faixa assume a proporção da foto vertical,
   para o vestido aparecer inteiro (do decote à barra) */
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 16, 22, 0.45), rgba(42, 16, 22, 0.2));
}
.band__inner {
  position: relative;
  z-index: 2;
  padding-inline: var(--gutter);
}
.band__inner .fan {
  width: 44px;
  color: var(--areia-clara);
  margin: 0 auto 22px;
}
.band__inner p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 1.1rem + 2.4vw, 52px); /* teto px: não incha com o root-scale */
  line-height: 1.15;
  max-width: 18ch;
  margin-inline: auto;
}
/* ---------- serviços (lista editorial) ---------- */
.services {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(42, 16, 22, 0.16);
}
.services li {
  border-bottom: 1px solid rgba(42, 16, 22, 0.16);
}
.services a {
  display: grid;
  grid-template-columns: clamp(50px, 7vw, 96px) 1fr auto;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  padding: clamp(22px, 3vw, 38px) 0;
  transition: color 0.3s var(--ease), padding-inline 0.4s var(--ease-out);
}
.services li:hover a {
  color: var(--petroleo);
  padding-left: 14px;
}
.services .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--petroleo);
}
.services h3 {
  font-size: clamp(1.4rem, 1.1rem + 1.3vw, 2.3rem);
  color: var(--vinho);
  transition: color 0.3s var(--ease);
}
.services__body p {
  margin-top: 8px;
  max-width: 60ch;
  font-size: 0.92rem;
  line-height: 1.56;
  color: var(--tinta);
  opacity: 0.78;
}
.services__benefit {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--petroleo);
}
.services li:hover h3 {
  color: var(--petroleo);
}
.services .more {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tinta);
  opacity: 0.6;
}
.services__note {
  margin-top: 30px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--petroleo);
}

/* ---------- cases (galeria assimétrica) ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 1.5vw, 20px);
}
.gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--areia-clara);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.gallery figure:hover img {
  transform: scale(1.05);
}
.gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--areia-clara);
  z-index: 2;
}
.gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(42, 16, 22, 0.55));
  opacity: 0.8;
}
.g-tall {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 3 / 4;
}
.g-wide {
  grid-column: span 4;
  aspect-ratio: 16 / 9;
}
.g-sq {
  grid-column: span 2;
  aspect-ratio: 1;
}
.quote {
  margin-top: clamp(56px, 7vw, 100px);
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}
.quote .fan {
  width: 40px;
  color: var(--petroleo);
  margin: 0 auto 24px;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.1rem + 2vw, 2.9rem);
  line-height: 1.26;
  color: var(--vinho);
}
.quote cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--petroleo);
}

/* ---------- processo (cards quadrados) ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
  counter-reset: step;
}
.steps li {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 1.6vw, 28px);
  background: var(--areia-clara);
  border: 1px solid rgba(42, 16, 22, 0.14);
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.steps li:hover {
  transform: translateY(-5px);
  border-color: var(--petroleo);
  box-shadow: 0 18px 36px -24px rgba(42, 16, 22, 0.5);
}
.steps li::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.9rem, 1.2rem + 1.4vw, 2.7rem);
  line-height: 1;
  color: var(--petroleo);
}
.steps h3 {
  margin-top: auto;
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.32rem);
  color: var(--vinho);
}
.steps p {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.82;
  /* reserva 3 linhas p/ a descrição: todos os títulos ficam na mesma altura */
  min-height: 4.5em;
}
.process__note {
  margin-top: clamp(36px, 4vw, 56px);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 1rem + 1.2vw, 1.9rem);
  color: var(--petroleo);
  text-align: center;
}

/* ---------- faq ---------- */
.faq {
  max-width: 900px;
  margin-inline: auto;
}
.faq__item {
  border-bottom: 1px solid rgba(42, 16, 22, 0.18);
}
.faq__item:first-child {
  border-top: 1px solid rgba(42, 16, 22, 0.18);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 2px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.7rem);
  color: var(--vinho);
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__icon {
  width: 22px;
  color: var(--petroleo);
  transition: transform 0.4s var(--ease-out);
}
.faq__item[open] .faq__icon {
  transform: rotate(180deg);
}
.faq__a {
  padding: 0 2px 30px;
  max-width: 60ch;
  color: var(--tinta);
  opacity: 0.86;
}
.faq__a p + p {
  margin-top: 1em;
}
.faq__item[open] .faq__a {
  animation: faqIn 0.45s var(--ease-out);
}
@keyframes faqIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 0.86;
    transform: none;
  }
}

/* ---------- cta ---------- */
.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--areia-clara);
  /* fundo decorado: textura do ateliê velada sob o vinho — mantém o contraste do texto */
  background:
    linear-gradient(rgba(60, 4, 21, 0.9), rgba(42, 16, 22, 0.93)),
    url("../img/cta-bg.jpg") center / cover no-repeat;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: var(--pattern-light);
  background-size: 120px 120px;
}
.cta .container {
  position: relative;
  z-index: 2;
}
.cta .fan {
  width: 52px;
  color: var(--areia-clara);
  margin: 0 auto 30px;
}
.cta h2 {
  color: var(--areia-clara);
  font-size: clamp(2.6rem, 1.4rem + 5vw, 108px);
  line-height: 0.98;
  max-width: 16ch;
  margin-inline: auto;
}
.cta p {
  margin: 26px auto 42px;
  max-width: 40ch;
  color: rgba(239, 233, 223, 0.84);
}
.cta .btn--primary {
  background: var(--areia-clara);
  color: var(--vinho);
}
.cta .btn--primary:hover {
  background: var(--areia);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--tinta);
  color: rgba(239, 233, 223, 0.72);
  padding-block: clamp(56px, 8vw, 100px) 40px;
}
.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
/* logo oficial no rodapé (mesmo lockup do header, em bege) */
.site-footer__logo {
  display: block;
  width: clamp(148px, 18vw, 196px);
  height: auto;
}
.site-footer .wordmark span {
  font-style: italic;
  color: var(--areia);
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-footer__links a {
  color: var(--areia-clara);
  opacity: 0.82;
}
.site-footer__links a:hover {
  opacity: 1;
}
.site-footer__legal {
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: 24px;
  border-top: 1px solid rgba(239, 233, 223, 0.2);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

/* ---------- whatsapp flutuante ---------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 14px 18px;
  background: var(--vinho);
  color: var(--areia);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px -12px rgba(42, 16, 22, 0.7);
}
.wa-float svg {
  width: 22px;
}

/* ---------- 404 ---------- */
.notfound {
  min-height: 84vh;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 6px;
}
.notfound .fan {
  width: 56px;
  color: var(--petroleo);
  margin: 0 auto 18px;
}
.notfound .code {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3.5rem, 2rem + 6vw, 6rem);
  color: var(--vinho);
  line-height: 1;
}
.notfound p {
  max-width: 40ch;
  margin: 8px auto 28px;
  color: var(--tinta);
  opacity: 0.85;
}

/* ---------- entrada em slides ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-d="1"] {
  transition-delay: 0.1s;
}
.reveal[data-d="2"] {
  transition-delay: 0.2s;
}
.reveal[data-d="3"] {
  transition-delay: 0.3s;
}

/* lista que desliza escalonada */
.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.stagger.is-visible > * {
  opacity: 1;
  transform: none;
}
.stagger.is-visible > *:nth-child(1) {
  transition-delay: 0.06s;
}
.stagger.is-visible > *:nth-child(2) {
  transition-delay: 0.14s;
}
.stagger.is-visible > *:nth-child(3) {
  transition-delay: 0.22s;
}
.stagger.is-visible > *:nth-child(4) {
  transition-delay: 0.3s;
}
.stagger.is-visible > *:nth-child(5) {
  transition-delay: 0.38s;
}

/* tratamento uniforme das fotos para coesão visual */
.hero__media img,
.about__media img,
.band__media img,
.gallery img {
  filter: saturate(0.92) contrast(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee__track {
    animation: none;
  }
  .is-ready .hero__head .line > span {
    transform: none;
    transition: none;
  }
  .is-ready .hero__media .fan {
    opacity: 1;
    transition: none;
  }
}

/* ============================================================
   responsivo
   ============================================================ */
@media (max-width: 1000px) {
  .hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero__media {
    height: 56vh;
    order: -1;
  }
  .hero__lead {
    padding: 48px var(--gutter);
    margin-left: 0;
  }
  .hero__scroll {
    display: none;
  }
  .about,
  .method__top {
    grid-template-columns: 1fr;
  }
  .method__top {
    gap: 18px;
    align-items: start;
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 340px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    padding: 40px;
    background: var(--areia-clara);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s var(--ease-out), visibility 0s linear 0.4s;
    z-index: 65;
  }
  .nav.is-open {
    transform: none;
    visibility: visible;
    transition: transform 0.4s var(--ease-out), visibility 0s linear 0s;
  }
  .nav-toggle {
    display: grid;
    place-items: center;
    z-index: 70;
  }
  .nav a:not(.btn) {
    display: block;
    width: 100%;
    padding: 12px 2px;
    min-height: 44px;
    font-size: 1rem;
  }
  .nav .btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-tall,
  .g-wide,
  .g-sq {
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: 3 / 4;
  }
  .g-wide {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  /* no celular o quadrado vira piso de altura: textos maiores crescem
     para baixo em vez de alargar a coluna e desalinhar a grade */
  .steps li {
    aspect-ratio: auto;
    min-height: 42vw;
  }
  /* no celular não reserva 3 linhas (deixa como estava) */
  .steps p {
    min-height: 0;
  }
}

body.nav-locked {
  overflow: hidden;
}

/* monitores muito largos (27"+): container cresce um pouco mais
   pra o conteúdo não ficar estreito/"iPad" no meio da tela */
@media (min-width: 2000px) {
  :root {
    --maxw: 1720px;
  }
}

/* Desktop: aumenta a escala geral do texto (o corpo estava pequeno
   em telas grandes). Tudo que usa rem cresce junto; o título do hero
   tem teto em px, então não estoura. */
@media (min-width: 1360px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 1680px) {
  html {
    font-size: 19px;
  }
}
@media (min-width: 2100px) {
  html {
    font-size: 20px;
  }
}
