/* ==========================================================================
   Cissa Mota — Fotografia
   Paleta: preto profundo, grafite, branco quente, âmbar
   Tipografia: Manrope (texto) + Cormorant Garamond (display)
   ========================================================================== */

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

:root {
  --black: #050505;
  --graphite: #121214;
  --graphite-soft: #1a1a1d;

  /* texto — contraste elevado para leitura confortável sobre preto */
  --warm-white: #f6f2ec;
  --warm-muted: #cdc7bd;   /* corpo de texto secundário */
  --warm-dim:   #a9a29a;   /* apoio, nunca texto longo */

  --amber: #d29a45;
  --amber-bright: #edb95e;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(1.5rem, 5vw, 6rem);
  --maxw: 1500px;
}

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

html {
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--warm-white);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1.02rem, 0.95rem + 0.3vw, 1.16rem);
  line-height: 1.72;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

::selection { background: var(--amber); color: var(--black); }

/* Lenis */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* --------------------------------------------------------------------------
   Tipografia
   -------------------------------------------------------------------------- */

.eyebrow {
  font-family: var(--sans);
  font-size: clamp(0.82rem, 0.76rem + 0.22vw, 0.94rem);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--amber-bright);
  margin: 0 0 1.5rem;
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
}

.display em { font-style: italic; color: var(--amber-bright); }

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.1rem, 4.6vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 1.4rem;
}

.lede {
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.3rem);
  line-height: 1.68;
  color: var(--warm-muted);
  max-width: 48ch;
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--gutter);
  mix-blend-mode: difference;
  pointer-events: none;
}

.nav > * { pointer-events: auto; }

.nav__brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

/* o sobrenome recebe o âmbar da identidade.
   a nav usa mix-blend-mode: difference, que inverteria a cor — por isso
   a marca é isolada do blend para o âmbar sair fiel. */
.nav__brand { mix-blend-mode: normal; isolation: isolate; }
.nav__brand span { color: var(--amber-bright); }

.nav__links {
  display: flex;
  gap: 2.1rem;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.nav__links a { position: relative; padding-bottom: 3px; }

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}

.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

@media (max-width: 860px) { .nav__links { display: none; } }

/* --------------------------------------------------------------------------
   HERO — canvas com sequência de frames
   -------------------------------------------------------------------------- */

.hero { position: relative; height: 600vh; }

.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

.hero__fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero__veil { position: absolute; inset: 0; pointer-events: none; background: #050505; opacity: 0; }

.hero__vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(5,5,5,0.55) 100%),
    linear-gradient(to bottom, rgba(5,5,5,0.55) 0%, transparent 22%, transparent 74%, rgba(5,5,5,0.85) 100%);
}

.hero__layer {
  position: absolute; inset: 0;
  display: grid; place-content: center;
  text-align: center;
  padding: 0 var(--gutter);
  pointer-events: none;
}

.hero__layer > * {
  pointer-events: auto;
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
}

.hero__layer > *::before {
  content: '';
  position: absolute;
  inset: -30% -35%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(5,5,5,0.78) 0%, rgba(5,5,5,0.55) 35%, rgba(5,5,5,0.22) 60%, transparent 80%);
  filter: blur(22px);
}

.hero__title {
  max-width: 20ch;
  margin-inline: auto;
  text-shadow: 0 2px 30px rgba(0,0,0,0.85), 0 1px 4px rgba(0,0,0,0.6);
}

.hero__sub {
  margin: 1.7rem auto 0;
  font-size: clamp(1.05rem, 0.98rem + 0.35vw, 1.25rem);
  color: #ddd6cc;
  max-width: 42ch;
  text-shadow: 0 1px 14px rgba(0,0,0,0.9);
}

.hero__layer .eyebrow { text-shadow: 0 1px 12px rgba(0,0,0,0.9); }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 2.4rem;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.85rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #cdc7bd;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9);
  z-index: 5;
}

.hero__scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--amber-bright), transparent);
  animation: scrollPulse 2.4s var(--ease) infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.35); transform-origin: top; opacity: 0.4; }
  50%      { transform: scaleY(1);    transform-origin: top; opacity: 1; }
}

/* Loader */
.loader {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-content: center; gap: 1.5rem;
  background: var(--black);
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}

.loader.is-done { opacity: 0; visibility: hidden; }

.loader__mark {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
  color: var(--warm-white);
}

.loader__mark span { color: var(--amber-bright); }

.loader__bar { width: min(240px, 55vw); height: 2px; background: rgba(246,242,236,0.16); overflow: hidden; }
.loader__fill { height: 100%; width: 0%; background: var(--amber-bright); transition: width 0.3s linear; }

.loader__pct {
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  color: var(--warm-muted);
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   Seções
   -------------------------------------------------------------------------- */

.section { position: relative; padding: clamp(5rem, 11vh, 8.5rem) var(--gutter); }

.section__head { max-width: 64ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.section__inner { max-width: var(--maxw); margin-inline: auto; }

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

.reveal.is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Manifesto — enxuto, sem lacuna morta antes do portfólio
   -------------------------------------------------------------------------- */

.manifesto {
  text-align: center;
  padding-block: clamp(5rem, 12vh, 9rem) clamp(3rem, 6vh, 4.5rem);
}

.manifesto .display { max-width: 17ch; margin-inline: auto; }

.manifesto__note {
  margin: 1.8rem 0 0;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--warm-dim);
}

/* --------------------------------------------------------------------------
   PORTFÓLIO — carrossel horizontal guiado pela rolagem
   -------------------------------------------------------------------------- */

.folio-sec { padding-block: clamp(3rem, 6vh, 4.5rem) clamp(4rem, 9vh, 7rem); }

.folio-sec .section__head { padding-inline: var(--gutter); margin-bottom: clamp(2rem, 4vw, 3rem); }

/* durante o pin o trilho ocupa a tela inteira e centraliza os cards;
   o respiro superior evita que a navegação fixa passe sobre as fotos */
.folio-pin {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 2.5rem;
}

.folio-track {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
  padding-inline: var(--gutter);
  width: max-content;
  will-change: transform;
}

.folio-card { margin: 0; flex: 0 0 auto; width: clamp(270px, 30vw, 430px); }

/* deslocamentos suaves dão ritmo editorial sem esticar o trilho */
.folio-card:nth-child(even) { transform: translateY(clamp(1.5rem, 4vw, 3.5rem)); }

.folio__frame {
  position: relative;
  overflow: hidden;
  background: var(--graphite);
  aspect-ratio: 3 / 4;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 1.3s var(--ease);
}

.folio-card:nth-child(even) .folio__frame { aspect-ratio: 4 / 5; }

.folio__frame.is-open { clip-path: circle(100% at 50% 50%); }

.folio__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transform: scale(1.1);
  transition: transform 1.5s var(--ease), filter 1.2s var(--ease);
  filter: saturate(0.94) contrast(1.03);
  will-change: transform;
}

.folio-card:hover .folio__frame img { transform: scale(1.01); filter: saturate(1.05) contrast(1.05); }

/* enquadramentos específicos */
.folio-card[data-focus="low"]   .folio__frame img { object-position: center 62%; }
.folio-card[data-focus="mid"]   .folio__frame img { object-position: center 45%; }

.folio__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(246,242,236,0.16);
}

.folio__name {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 400;
}

.folio__tag {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-bright);
  white-space: nowrap;
}

.folio-hint {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: clamp(1.8rem, 3.5vw, 2.8rem) 0 0;
  padding-inline: var(--gutter);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-dim);
}

.folio-hint::after {
  content: '';
  flex: 1;
  max-width: 160px;
  height: 1px;
  background: linear-gradient(to right, var(--amber), transparent);
}

/* mobile: swipe nativo com encaixe, sem pin */
@media (max-width: 860px) {
  .folio-pin {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    height: auto;
    padding: 0;
    display: block;
  }
  .folio-pin::-webkit-scrollbar { display: none; }
  .folio-track { transform: none !important; align-items: stretch; }
  .folio-card { width: 78vw; scroll-snap-align: center; transform: none !important; }
  .folio-card .folio__frame { aspect-ratio: 3 / 4 !important; }
}

/* --------------------------------------------------------------------------
   SOBRE — retrato grande à esquerda, texto enxuto à direita
   -------------------------------------------------------------------------- */

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
}

/* retrato em moldura vertical, próximo da proporção original da foto,
   para equilibrar o peso visual do texto ao lado */
.about__portrait {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--graphite);
  justify-self: end;
}

.about__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.98) contrast(1.02);
}

.about__portrait::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(246,242,236,0.22);
  pointer-events: none;
}

.about__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 1.6rem;
}

.about__title em { font-style: italic; color: var(--amber-bright); }

.about__text p {
  color: var(--warm-muted);
  margin: 0 0 1.15rem;
  max-width: 52ch;
}

.about__text p.eyebrow {
  color: var(--amber-bright);
  font-family: var(--sans);
  max-width: none;
  margin-bottom: 1.1rem;
}

.about__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.9rem;
}

@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
  .about__portrait { justify-self: start; max-width: 340px; }
}

/* --------------------------------------------------------------------------
   DEPOIMENTOS — mosaico de alturas livres
   -------------------------------------------------------------------------- */

.depo__head { max-width: 60ch; }
.depo__head .section-title em { font-style: italic; color: var(--amber-bright); }

/* duas faixas: os três depoimentos longos em colunas iguais na primeira,
   os dois curtos dividindo a segunda — sem sobra no fim de nenhuma linha */
.depo__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1.2rem, 2.2vw, 2rem);
}

.depo__card { grid-column: span 2; }
.depo__card--short { grid-column: span 3; }

/* ordem visual: longos primeiro, curtos fechando o bloco */
.depo__card:nth-child(1) { order: 1; }
.depo__card:nth-child(3) { order: 2; }
.depo__card:nth-child(5) { order: 3; }
.depo__card:nth-child(2) { order: 4; }
.depo__card:nth-child(4) { order: 5; }

.depo__card {
  margin: 0;
  padding: clamp(1.8rem, 2.6vw, 2.6rem);
  background: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid rgba(246,242,236,0.12);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}

/* filete âmbar no topo, que acende no hover */
.depo__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--amber), transparent 70%);
  opacity: 0.55;
  transition: opacity 0.5s var(--ease);
}

.depo__card:hover { border-color: rgba(210,154,69,0.4); transform: translateY(-4px); }
.depo__card:hover::before { opacity: 1; }

.depo__stars {
  display: flex;
  gap: 0.28rem;
  margin-bottom: 1.2rem;
  color: var(--amber-bright);
  font-size: 1.12rem;
  line-height: 1;
}

.depo__card blockquote {
  margin: 0 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.05rem + 0.5vw, 1.5rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--warm-white);
}

/* depoimentos curtos ganham corpo de destaque, virando respiro no mosaico */
.depo__card--short blockquote {
  font-size: clamp(1.32rem, 1.15rem + 0.75vw, 1.75rem);
  font-style: italic;
  line-height: 1.42;
}

.depo__author {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-bright);
}

.depo__author::before {
  content: '';
  display: block;
  width: 34px;
  height: 1px;
  background: rgba(210,154,69,0.5);
  margin-bottom: 0.85rem;
}

@media (max-width: 1080px) {
  .depo__grid { grid-template-columns: repeat(2, 1fr); }
  .depo__card, .depo__card--short { grid-column: span 1; }
}

@media (max-width: 700px) {
  .depo__grid { grid-template-columns: 1fr; }
  .depo__card, .depo__card--short { grid-column: span 1; }
}

/* --------------------------------------------------------------------------
   EXPERIÊNCIA — escala de aberturas
   -------------------------------------------------------------------------- */

.exp { background: var(--graphite); }

.aperture { list-style: none; margin: 0; padding: 0; }

.aperture__row {
  display: grid;
  grid-template-columns: clamp(120px, 15vw, 200px) minmax(0, 1fr);
  align-items: baseline;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.8rem, 4vh, 2.8rem) 0;
  border-top: 1px solid rgba(246,242,236,0.14);
}

.aperture__row:last-child { border-bottom: 1px solid rgba(246,242,236,0.14); }

.aperture__f {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 300;
  line-height: 1;
  color: var(--amber-bright);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.aperture__f i { font-style: italic; padding-right: 0.06em; }

.aperture__body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.15;
  margin: 0 0 0.6rem;
}

.aperture__body p {
  color: var(--warm-muted);
  font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.18rem);
  line-height: 1.7;
  margin: 0;
  max-width: 62ch;
}

@media (max-width: 700px) {
  .aperture__row { grid-template-columns: 1fr; gap: 0.7rem; align-items: start; }
}

/* --------------------------------------------------------------------------
   CTA final — inclui as regiões de atendimento
   -------------------------------------------------------------------------- */

.cta {
  position: relative;
  text-align: center;
  padding-block: clamp(5.5rem, 13vh, 9rem);
  background:
    radial-gradient(ellipse 60% 50% at 50% 45%, rgba(210,154,69,0.16), transparent 70%),
    var(--black);
}

.cta .display { max-width: 15ch; margin-inline: auto; }

.cta__areas {
  margin: clamp(2.4rem, 5vw, 3.4rem) auto 0;
  max-width: 760px;
}

.cta__areas-label {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--warm-dim);
  margin: 0 0 1.1rem;
}

.areas { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }

.area-chip {
  border: 1px solid rgba(246,242,236,0.24);
  padding: 0.6rem 1.35rem;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-muted);
  border-radius: 999px;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: clamp(2.2rem, 4vw, 3rem);
  padding: 1.15rem 2.6rem;
  border: 1px solid var(--amber);
  color: var(--amber-bright);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: color 0.55s var(--ease), border-color 0.55s var(--ease);
}

.btn-wa span { position: relative; z-index: 1; }
.btn-wa svg { position: relative; z-index: 1; width: 19px; height: 19px; fill: currentColor; }

.btn-wa::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s var(--ease);
}

.btn-wa:hover { color: var(--black); }
.btn-wa:hover::before { transform: scaleX(1); transform-origin: left; }

.cta__phone {
  margin-top: 1.5rem;
  font-size: 1.02rem;
  letter-spacing: 0.1em;
  color: var(--warm-muted);
}

/* --------------------------------------------------------------------------
   Rodapé
   -------------------------------------------------------------------------- */

.footer {
  border-top: 1px solid rgba(246,242,236,0.12);
  padding: 2.6rem var(--gutter) 1.6rem;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  color: var(--warm-muted);
}

.ai-note {
  padding: 0 var(--gutter) 3rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--warm-dim);
  max-width: 82ch;
}

/* --------------------------------------------------------------------------
   Botão flutuante WhatsApp
   -------------------------------------------------------------------------- */

.wa-float {
  position: fixed;
  right: 1.4rem; bottom: 1.4rem;
  z-index: 90;
  width: 56px; height: 56px;
  display: grid; place-content: center;
  border-radius: 50%;
  background: var(--amber);
  color: var(--black);
  box-shadow: 0 10px 34px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateY(18px) scale(0.85);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), background 0.3s;
  pointer-events: none;
}

.wa-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { background: var(--amber-bright); }
.wa-float svg { width: 27px; height: 27px; fill: currentColor; }

/* --------------------------------------------------------------------------
   Acessibilidade / motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .folio__frame { clip-path: none; }

  .hero__layer > *::before {
    filter: blur(22px) !important;
    background: radial-gradient(ellipse at center, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.7) 40%, transparent 78%) !important;
  }

  /* trilho do portfólio volta a ser rolagem nativa */
  .folio-pin { overflow-x: auto; }
  .folio-track { transform: none !important; }
}

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