/* ===================================================================
   TSW · Decoração de Interiores e Valorização Imobiliária
   style.css — folha de estilo da página TSW Decoração
   -------------------------------------------------------------------
   Sumário
     01. Reset / Base
     02. Variáveis (paleta TSW)
     03. Tipografia (@font-face + escala)
     04. Layout (container, seções)
     05. Componentes (eyebrow, botões, tags, cards)
     06. Navegação
     07. Hero
     08. Seção Impacto + contadores
     09. Método (sticky)
     10. Serviços
     11. Galeria editorial (bento/masonry)
     12. Antes / Depois
     13. Renda passiva (parallax)
     14. Depoimentos (marquee)
     15. CTA final (parallax)
     16. Contato / Captação de lead
     17. FAQ (acordeão)
     18. Rodapé
     19. Overlays (preloader, progress, grain) + reveal
     20. Animações (keyframes)
     21. Responsividade
   =================================================================== */


/* ============================ 02. VARIÁVEIS ======================= */
:root {
  /* Paleta TSW */
  --color-black: #0B0B0B;
  --color-graphite: #141414;
  --color-ink3: #1c1c1c;
  --color-gold: #E3C477;
  --color-gold-deep: #B8964A;
  --color-sand: #D8C9A8;
  --color-offwhite: #F5F1E8;
  --color-muted: rgba(245, 241, 232, .68);
  --color-line: rgba(227, 196, 119, .18);

  /* Tons de apoio (derivados) — contraste revisado p/ WCAG AA */
  --color-muted-soft: rgba(245, 241, 232, .6);
  --color-muted-faint: rgba(245, 241, 232, .5);
  --gold-wash: rgba(227, 196, 119, .08);
  --gold-line-soft: rgba(227, 196, 119, .12);
  --gold-line-strong: rgba(227, 196, 119, .5);
  --error: #d98a6a;

  /* Tipografia */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Jost', system-ui, -apple-system, sans-serif;

  /* Larguras de conteúdo */
  --max: 1240px;
}


/* ============================ 03. TIPOGRAFIA ===================== */
/* Cormorant Garamond — normal (400–600) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Cormorant Garamond — itálico (400–500) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-italic-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-italic-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Jost — normal (300–500) */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url("../fonts/jost-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url("../fonts/jost-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}


/* ============================ 01. RESET / BASE =================== */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Compensa a navbar fixa ao pular para âncoras (#metodo, #servicos...) */
  scroll-padding-top: 90px;
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0;
  background: var(--color-black);
  color: var(--color-offwhite);
  font-family: var(--font-sans);
  overflow-x: clip;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
input, textarea, select, button { font-family: inherit; }
::selection { background: var(--color-gold); color: var(--color-black); }

/* Foco visível e acessível em toda a página */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.page {
  position: relative;
  background: var(--color-black);
  color: var(--color-offwhite);
  min-height: 100vh;
}

/* Acessibilidade: pular para o conteúdo */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--color-gold);
  color: var(--color-black);
  padding: 12px 18px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }


/* ============================ 04. LAYOUT ======================== */
.section {
  position: relative;
  padding: clamp(80px, 11vw, 140px) clamp(20px, 6vw, 64px);
}
.section--black { background: var(--color-black); }
.section--graphite { background: var(--color-graphite); }
.section--flush { padding-left: 0; padding-right: 0; }

.container { max-width: var(--max); margin: 0 auto; }
.container--wide { max-width: 1340px; }
.container--form { max-width: 1120px; }
.container--cta { max-width: 840px; }
.container--narrow { max-width: 900px; }
.container--faq { max-width: 860px; }

.section-head { text-align: center; margin-bottom: clamp(44px, 6vw, 72px); }
.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--color-offwhite);
  text-wrap: balance;
}
.section-lead {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-muted);
  margin: 18px auto 0;
  max-width: 50ch;
}


/* ============================ 05. COMPONENTES =================== */
/* Eyebrow (rótulo de seção com filete dourado) */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow--center { justify-content: center; }
.eyebrow__line { width: 42px; height: 1px; background: var(--color-gold); flex: 0 0 auto; }
.eyebrow__text {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--color-sand);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 32px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .4s, border-color .4s, color .4s, transform .3s;
}
.btn__arrow { font-size: 16px; line-height: 1; }
.btn--gold { color: var(--color-black); background: var(--color-gold); border-color: var(--color-gold); }
.btn--gold:hover { background: var(--color-sand); border-color: var(--color-sand); }
.btn--outline { color: var(--color-offwhite); border-color: var(--color-line); }
.btn--outline:hover { border-color: var(--color-gold); background: var(--gold-wash); }
.btn--outline-gold { color: var(--color-offwhite); border-color: var(--color-gold); }
.btn--outline-gold:hover { background: var(--color-gold); color: var(--color-black); }
.btn--glow { animation: tsw-glow 4.5s ease-in-out infinite; }

/* Pílulas / tags */
.pill {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-muted);
  border: 1px solid var(--color-line);
  padding: 8px 16px;
  border-radius: 40px;
}


/* ============================ 06. NAVEGAÇÃO ===================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(11, 11, 11, .82), rgba(11, 11, 11, .28));
  border-bottom: 1px solid var(--color-line);
}
.nav__brand { display: flex; align-items: baseline; gap: 12px; text-decoration: none; }
.nav__logo {
  font-family: var(--font-serif);
  font-size: 26px;
  letter-spacing: .16em;
  color: var(--color-offwhite);
  padding-left: .16em;
}
.nav__tag {
  font-family: var(--font-sans);
  font-size: 9.5px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.nav__links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.nav__link {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-decoration: none;
  transition: color .35s;
}
.nav__link:hover { color: var(--color-offwhite); }
.nav__cta {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-black);
  background: var(--color-gold);
  padding: 11px 22px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .4s, transform .4s;
}
.nav__cta:hover { background: var(--color-sand); transform: translateY(-1px); }

/* Indicador de seção ativa no menu desktop */
.nav__link[aria-current="page"] { color: var(--color-gold); }

/* Botão hambúrguer (oculto no desktop, exibido no mobile) */
.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--color-line); border-radius: 2px;
  cursor: pointer; padding: 0; transition: border-color .35s;
}
.nav__toggle:hover { border-color: var(--color-gold); }
.nav__toggle-box { display: flex; flex-direction: column; gap: 5px; width: 20px; }
.nav__toggle-bar {
  display: block; height: 1.5px; width: 100%; background: var(--color-offwhite);
  transition: transform .35s ease, opacity .25s ease;
}

/* ===================== MENU MOBILE (drawer) ==================== */
.menu-m { position: fixed; inset: 0; z-index: 130; overflow: hidden; }
.menu-m[hidden] { display: none; }
.menu-m__backdrop {
  position: absolute; inset: 0; background: rgba(8, 8, 8, .62);
  backdrop-filter: blur(4px); opacity: 0; transition: opacity .4s ease;
}
.menu-m__panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(86vw, 360px);
  background: linear-gradient(180deg, var(--color-graphite), var(--color-black));
  border-left: 1px solid var(--gold-line-strong);
  box-shadow: -30px 0 60px -20px rgba(0, 0, 0, .7);
  padding: clamp(22px, 6vw, 36px);
  display: flex; flex-direction: column; gap: 8px;
  transform: translateX(100%); transition: transform .42s cubic-bezier(.2, .7, .2, 1);
  overflow-y: auto;
}
.menu-m.is-open .menu-m__backdrop { opacity: 1; }
.menu-m.is-open .menu-m__panel { transform: translateX(0); }
.menu-m__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.menu-m__logo { font-family: var(--font-serif); font-size: 26px; letter-spacing: .16em; color: var(--color-offwhite); padding-left: .16em; }
.menu-m__close {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; color: var(--color-offwhite); font-size: 30px; line-height: 1;
  cursor: pointer; transition: color .3s;
}
.menu-m__close:hover { color: var(--color-gold); }
.menu-m__links { display: flex; flex-direction: column; }
.menu-m__link {
  font-family: var(--font-serif); font-size: 25px; color: var(--color-offwhite);
  text-decoration: none; padding: 14px 0; min-height: 44px; display: flex; align-items: center;
  border-bottom: 1px solid var(--gold-line-soft); transition: color .3s, padding-left .3s;
}
.menu-m__link:hover { color: var(--color-gold); padding-left: 6px; }
.menu-m__cta {
  margin-top: 24px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-black); background: var(--color-gold); padding: 16px 22px; border-radius: 2px;
  text-decoration: none; min-height: 44px; transition: background .35s;
}
.menu-m__cta:hover { background: var(--color-sand); }
.menu-m__wa {
  margin-top: 16px; font-family: var(--font-sans); font-size: 13px; color: var(--color-muted);
  text-decoration: none; min-height: 44px; display: flex; align-items: center; transition: color .3s;
}
.menu-m__wa:hover { color: var(--color-gold); }
/* Trava o scroll do body com o menu aberto */
body.menu-open { overflow: hidden; }


/* ============================ 07. HERO ========================== */
.hero {
  position: relative;
  min-height: 100vh;       /* fallback p/ browsers sem dvh */
  min-height: 100dvh;      /* viewport real do mobile (sem corte da barra) */
  display: flex;
  align-items: flex-end;
  /* Reserva o espaço da navbar fixa: o H1 nunca fica cortado sob o topo.
     Sem overflow:hidden aqui — se o conteúdo for mais alto que a viewport,
     a hero cresce naturalmente em vez de cortar o título. */
  padding-top: clamp(96px, 12vh, 132px);
}
/* O overflow vive na camada da imagem (clipa o Ken Burns sem cortar o texto) */
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; animation: tsw-ken 26s ease-in-out infinite alternate; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11, 11, 11, .62) 0%, rgba(11, 11, 11, .34) 40%, rgba(11, 11, 11, .92) 100%);
}
.hero__glow {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(120% 90% at 18% 12%, rgba(227, 196, 119, .16), transparent 55%);
}
.hero__inner {
  position: relative; z-index: 2; width: 100%;
  max-width: 1240px; margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 64px) clamp(48px, 8vh, 92px);
}
.hero__kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.hero__kicker-line { width: 42px; height: 1px; background: var(--color-gold); }
.hero__kicker-text {
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: var(--color-sand);
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-offwhite);
  font-size: clamp(42px, 7.4vw, 104px);
  line-height: .98;
  letter-spacing: -.015em;
  margin: 0;
  max-width: 15ch;
  text-wrap: balance;
}
.hero__title span { display: block; }
.hero__title em { font-style: italic; color: var(--color-gold); }
.hero__desc {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--color-offwhite);
  opacity: .82;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.7;
  max-width: 58ch;
  margin: 30px 0 0;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero__pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll-label {
  font-family: var(--font-sans);
  font-size: 9px; letter-spacing: .34em; text-transform: uppercase; color: var(--color-muted);
}
.hero__scroll-track {
  width: 1px; height: 46px; position: relative; overflow: hidden;
  background: linear-gradient(var(--color-gold), transparent);
}
.hero__scroll-dot {
  position: absolute; top: 0; left: 0; width: 100%; height: 14px;
  background: var(--color-gold); animation: tsw-scroll 2s ease-in-out infinite;
}

/* Animações de entrada do hero (mais lentas/cinematográficas, escalonadas) */
.rise { animation: tsw-rise 1.3s cubic-bezier(.22, .61, .36, 1) both; }
.rise-d1 { animation-delay: .35s; }
.rise-d2 { animation-delay: .6s; }
.rise-d3 { animation-delay: .85s; }
.rise-d4 { animation-delay: 1.15s; }
.rise-d5 { animation-delay: 1.4s; }
.rise-d6 { animation-delay: 1.65s; }


/* ============================ 08. IMPACTO ====================== */
.impacto__grid {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: clamp(40px, 6vw, 90px); align-items: center;
}
.impacto__col-text { flex: 1 1 460px; min-width: 300px; }
.impacto__col-media { flex: 1 1 380px; min-width: 280px; position: relative; }
.impacto__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(32px, 4.6vw, 58px); line-height: 1.04; letter-spacing: -.01em;
  margin: 0; color: var(--color-offwhite); text-wrap: balance;
}
.impacto__p {
  font-family: var(--font-sans); font-weight: 300;
  font-size: clamp(15px, 1.3vw, 18px); line-height: 1.85; color: var(--color-muted);
  margin: 28px 0 0; max-width: 52ch;
}
.impacto__quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px); line-height: 1.4; color: var(--color-offwhite);
  margin: 34px 0 0; max-width: 40ch;
}
.impacto__frame { position: relative; border: 1px solid var(--color-line); overflow: hidden; }
.impacto__frame img { width: 100%; height: clamp(360px, 52vw, 560px); object-fit: cover; }

/* Contadores */
.stats {
  max-width: var(--max); margin: clamp(56px, 7vw, 90px) auto 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px; background: var(--color-line); border: 1px solid var(--color-line);
}
.stat { background: var(--color-graphite); padding: 34px clamp(20px, 3vw, 40px); }
.stat__num {
  font-family: var(--font-serif); font-size: clamp(44px, 5vw, 62px); line-height: 1; color: var(--color-gold);
}
.stat__label {
  font-family: var(--font-sans); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--color-muted); margin-top: 12px;
}


/* ============================ 09. MÉTODO (sticky) ============== */
.metodo__layout { display: flex; flex-wrap: wrap; gap: clamp(36px, 5vw, 72px); align-items: flex-start; }
.metodo__sticky { flex: 1 1 360px; min-width: 300px; position: sticky; top: 110px; }
.metodo__card {
  border: 1px solid var(--color-line); background: var(--color-graphite);
  overflow: hidden; position: relative;
}
.metodo__card img { width: 100%; height: clamp(280px, 38vw, 420px); object-fit: cover; }
.metodo__card-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 11, 11, .92));
}
.metodo__card-body { position: absolute; left: 0; bottom: 0; padding: clamp(22px, 3vw, 34px); }
.metodo__card-n {
  font-family: var(--font-serif); font-size: clamp(60px, 8vw, 96px); line-height: .85;
  color: var(--color-gold); transition: opacity .4s;
}
.metodo__card-title {
  font-family: var(--font-serif); font-size: clamp(24px, 3vw, 34px); color: var(--color-offwhite);
  margin-top: 8px; transition: opacity .4s;
}
.metodo__card-desc {
  font-family: var(--font-sans); font-weight: 300; font-size: 14px; line-height: 1.7;
  color: var(--color-muted); margin-top: 10px; max-width: 42ch; transition: opacity .4s;
}
.metodo__list { flex: 1 1 420px; min-width: 300px; display: flex; flex-direction: column; }
.metodo__step {
  display: flex; gap: 22px; padding: clamp(26px, 3.4vw, 40px) 0;
  border-bottom: 1px solid var(--gold-line-soft);
  transition: opacity .6s ease, border-color .6s ease;
  opacity: .42;
}
.metodo__step.is-active { opacity: 1; border-color: var(--gold-line-strong); }
.metodo__step-n {
  font-family: var(--font-serif); font-size: clamp(22px, 2.4vw, 30px); color: var(--color-gold);
  min-width: 48px; line-height: 1;
}
.metodo__step-title {
  font-family: var(--font-serif); font-weight: 500; font-size: clamp(22px, 2.6vw, 32px);
  margin: 0; color: var(--color-offwhite); letter-spacing: -.005em;
}
.metodo__step-desc {
  font-family: var(--font-sans); font-weight: 300; font-size: 15px; line-height: 1.75;
  color: var(--color-muted); margin: 12px 0 0; max-width: 46ch;
}


/* ============================ 10. SERVIÇOS ===================== */
.servicos__head {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: clamp(44px, 6vw, 72px);
}
.servicos__title {
  font-family: var(--font-serif); font-weight: 500; font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02; letter-spacing: -.01em; margin: 0; color: var(--color-offwhite); max-width: 16ch;
}
.servicos__intro {
  font-family: var(--font-sans); font-weight: 300; font-size: 15px; line-height: 1.8;
  color: var(--color-muted); max-width: 36ch; margin: 0;
}
.servicos__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px;
}
.card-svc {
  position: relative; padding: clamp(28px, 3vw, 40px) clamp(26px, 2.6vw, 34px);
  border: 1px solid var(--color-line); background: var(--color-black); overflow: hidden;
  transition: border-color .5s, transform .5s, background .5s;
}
.card-svc:hover { border-color: var(--gold-line-strong); transform: translateY(-6px); background: var(--color-ink3); }
.card-svc__top {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0; transition: opacity .5s;
}
.card-svc:hover .card-svc__top { opacity: 1; }
.card-svc__icon { stroke: var(--color-gold); stroke-width: 1.25; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.card-svc__title {
  font-family: var(--font-serif); font-weight: 500; font-size: clamp(21px, 2vw, 26px);
  margin: 24px 0 0; color: var(--color-offwhite);
}
.card-svc__desc {
  font-family: var(--font-sans); font-weight: 300; font-size: 14.5px; line-height: 1.72;
  color: var(--color-muted); margin: 12px 0 0;
}


/* ===================== AUTORIDADE / CURADORIA ================= */
.autoridade__grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center;
}
.autoridade__title {
  font-family: var(--font-serif); font-weight: 500; font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1; letter-spacing: -.01em; margin: 0; color: var(--color-offwhite); text-wrap: balance;
}
.autoridade__p {
  font-family: var(--font-sans); font-weight: 300; font-size: clamp(15px, 1.3vw, 17px); line-height: 1.85;
  color: var(--color-muted); margin: 26px 0 0; max-width: 54ch;
}
.autoridade__pillars { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1px; background: var(--color-line); border: 1px solid var(--color-line); }
.autoridade__pillar { background: var(--color-graphite); padding: clamp(24px, 3vw, 34px); }
.autoridade__pillar-n { font-family: var(--font-serif); font-size: 22px; color: var(--color-gold); }
.autoridade__pillar-t { font-family: var(--font-serif); font-weight: 500; font-size: clamp(20px, 2vw, 26px); margin: 8px 0 0; color: var(--color-offwhite); }
.autoridade__pillar-d { font-family: var(--font-sans); font-weight: 300; font-size: 14.5px; line-height: 1.7; color: var(--color-muted); margin: 8px 0 0; max-width: 44ch; }


/* ============================ 12. ANTES / DEPOIS ============== */
.transform__cols { display: flex; flex-wrap: wrap; gap: 24px; }
.transform__card {
  flex: 1 1 340px; min-width: 290px; border: 1px solid var(--color-line);
  background: var(--color-black); padding: clamp(32px, 4vw, 52px);
}
.transform__card--after {
  border-color: var(--gold-line-strong);
  background: linear-gradient(180deg, var(--color-ink3), var(--color-black));
  position: relative; overflow: hidden;
}
.transform__halo {
  position: absolute; top: -40%; right: -20%; width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(227, 196, 119, .14), transparent 70%);
}
.transform__label {
  font-family: var(--font-sans); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--color-muted);
}
.transform__label--gold { color: var(--color-gold); }
.transform__h {
  font-family: var(--font-serif); font-weight: 500; font-size: clamp(24px, 3vw, 34px);
  margin: 18px 0 24px; color: var(--color-offwhite);
}
.transform__list { display: flex; flex-direction: column; gap: 16px; position: relative; }
.transform__row {
  display: flex; gap: 14px; font-family: var(--font-sans); font-weight: 300;
  font-size: 15px; line-height: 1.6; color: var(--color-muted);
}
.transform__row--after { color: var(--color-offwhite); }
.transform__row .mark { color: var(--color-muted-faint); }
.transform__row--after .mark { color: var(--color-gold); }
.transform__arrow { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.transform__arrow span { font-family: var(--font-serif); font-size: 34px; color: var(--color-gold); }


/* ============================ 13. RENDA PASSIVA =============== */
.renda { position: relative; padding: clamp(100px, 15vw, 200px) clamp(20px, 6vw, 64px); overflow: hidden; background: var(--color-black); }
.renda__media { position: absolute; inset: -12% 0; z-index: 0; will-change: transform; }
.renda__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.renda__veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(11, 11, 11, .86), rgba(11, 11, 11, .72)); }
.renda__inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; }
.renda__eyebrow {
  font-family: var(--font-sans); font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--color-sand); margin-bottom: 28px;
}
.renda__statement {
  font-family: var(--font-serif); font-weight: 500; font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.18; color: var(--color-offwhite); margin: 0; text-wrap: balance;
}
.renda__statement em { font-style: italic; color: var(--color-gold); }
.renda__p {
  font-family: var(--font-sans); font-weight: 300; font-size: clamp(15px, 1.4vw, 18px); line-height: 1.85;
  color: rgba(245, 241, 232, .78); margin: 30px auto 0; max-width: 60ch;
}
.renda__cta { margin-top: 40px; }


/* ============================ 14. DEPOIMENTOS ================= */
.depo { padding-top: clamp(80px, 11vw, 140px); padding-bottom: clamp(80px, 11vw, 140px); }
.depo__head { padding: 0 clamp(20px, 6vw, 64px); }
.depo__viewport {
  position: relative;
  overflow: hidden; /* clipa o trilho do marquee no componente (sem scroll horizontal) */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.depo__track {
  display: flex; gap: 24px; width: max-content; padding: 0 12px;
  animation: tsw-marquee 46s linear infinite;
}
.depo__viewport:hover .depo__track { animation-play-state: paused; }
.depo__card {
  width: clamp(300px, 34vw, 400px); flex: 0 0 auto;
  border: 1px solid var(--color-line); background: var(--color-black);
  padding: clamp(30px, 3vw, 42px); margin: 0;
  display: flex; flex-direction: column; gap: 18px;
}
.depo__stars { display: flex; gap: 5px; color: var(--color-gold); font-size: 13px; letter-spacing: 3px; }
.depo__quote {
  font-family: var(--font-serif); font-style: italic; font-size: clamp(19px, 1.9vw, 23px);
  line-height: 1.5; color: var(--color-offwhite); margin: 0;
}
.depo__foot {
  margin-top: auto; display: flex; align-items: center; gap: 14px;
  padding-top: 8px; border-top: 1px solid var(--color-line);
}
.depo__avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 1px solid var(--color-line); flex: 0 0 auto; }
.depo__name { display: block; font-family: var(--font-sans); font-size: 14px; color: var(--color-offwhite); }
.depo__role { display: block; font-family: var(--font-sans); font-weight: 300; font-size: 12px; color: var(--color-muted); margin-top: 2px; }
/* Controle de pausa do marquee */
.depo__controls { display: flex; justify-content: center; margin-top: 22px; }
.depo__pause {
  display: inline-flex; align-items: center; gap: 9px; min-height: 40px; padding: 8px 18px;
  background: transparent; border: 1px solid var(--color-line); border-radius: 40px; cursor: pointer;
  font-family: var(--font-sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--color-muted); transition: border-color .35s, color .35s;
}
.depo__pause:hover { border-color: var(--color-gold); color: var(--color-offwhite); }
.depo__pause-ico {
  width: 8px; height: 10px; flex: 0 0 auto;
  border-left: 2px solid var(--color-gold); border-right: 2px solid var(--color-gold);
}
/* Estado "pausado" → ícone vira "play" (triângulo) */
.depo__pause[aria-pressed="true"] .depo__pause-ico {
  width: 0; height: 0; border: none;
  border-left: 9px solid var(--color-gold); border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}
.depo__track.is-paused { animation-play-state: paused; }


/* ============================ 15. CTA FINAL ================== */
.cta { position: relative; padding: clamp(96px, 14vw, 180px) clamp(20px, 6vw, 64px); overflow: hidden; background: var(--color-black); }
/* Composição visual própria (sem imagem externa) — luxo boutique / arquitetura premium */
.cta__scene { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.cta__scene-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(30, 30, 30, .9), transparent 60%),
    linear-gradient(180deg, #0e0e0e 0%, #0b0b0b 55%, #080808 100%);
}
/* Linhas arquitetônicas sutis, esmaecidas para o centro */
.cta__scene-lines {
  position: absolute; inset: 0; opacity: .55;
  background-image:
    linear-gradient(rgba(227, 196, 119, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227, 196, 119, .05) 1px, transparent 1px);
  background-size: 66px 66px, 66px 66px;
  -webkit-mask-image: radial-gradient(120% 95% at 50% 32%, #000 0%, transparent 72%);
  mask-image: radial-gradient(120% 95% at 50% 32%, #000 0%, transparent 72%);
}
/* Orbes douradas de profundidade (estáticas — leves para a GPU) */
.cta__scene-orb { position: absolute; border-radius: 50%; filter: blur(48px); opacity: .5; }
.cta__scene-orb--a {
  width: 44vw; height: 44vw; max-width: 520px; max-height: 520px; left: -8%; top: -20%;
  background: radial-gradient(circle, rgba(227, 196, 119, .22), transparent 70%);
}
.cta__scene-orb--b {
  width: 38vw; height: 38vw; max-width: 440px; max-height: 440px; right: -10%; bottom: -24%;
  background: radial-gradient(circle, rgba(184, 150, 74, .18), transparent 70%);
}
/* Brilho diagonal lento atravessando a cena (apenas transform/opacity — leve) */
.cta__scene-sheen {
  position: absolute; inset: -40% -10%; will-change: transform, opacity;
  background: linear-gradient(115deg, transparent 42%, rgba(227, 196, 119, .08) 50%, transparent 58%);
  animation: cta-sheen 11s ease-in-out infinite;
}
.cta__glow { position: absolute; inset: 0; z-index: 1; background: radial-gradient(80% 60% at 50% 28%, rgba(227, 196, 119, .14), transparent 60%); }
.cta__inner { position: relative; z-index: 2; max-width: 840px; margin: 0 auto; text-align: center; }
.cta__title {
  font-family: var(--font-serif); font-weight: 500; font-size: clamp(34px, 5.6vw, 72px);
  line-height: 1.05; letter-spacing: -.01em; margin: 0; color: var(--color-offwhite); text-wrap: balance;
}
.cta__title em { font-style: italic; color: var(--color-gold); }
.cta__p {
  font-family: var(--font-sans); font-weight: 300; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.8;
  color: rgba(245, 241, 232, .8); margin: 28px auto 0; max-width: 54ch;
}
.cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 40px; }
.btn--wa { gap: 10px; }
.btn--wa svg { fill: #3FA46A; }

[hidden] { display: none !important; }


/* ============================ 17. FAQ (2 colunas + cards 3D) ==== */
.faq__grid {
  display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(36px, 5vw, 72px); align-items: start;
}
.faq__aside { position: sticky; top: 120px; }
.faq__title { text-align: left; font-size: clamp(30px, 4vw, 50px); }
.faq__lead {
  font-family: var(--font-sans); font-weight: 300; font-size: 15px; line-height: 1.8;
  color: var(--color-muted); margin: 22px 0 0; max-width: 38ch;
}
.faq__wa {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; min-height: 44px;
  font-family: var(--font-sans); font-size: 13px; letter-spacing: .04em;
  color: var(--color-offwhite); text-decoration: none;
  border: 1px solid var(--color-gold); border-radius: 2px; padding: 13px 22px;
  transition: background .4s, color .4s, transform .3s;
}
.faq__wa svg { fill: #3FA46A; flex: 0 0 auto; transition: fill .4s; }
.faq__wa:hover { background: var(--color-gold); color: var(--color-black); }
.faq__wa:hover svg { fill: var(--color-black); }

/* Lista em cards com profundidade (3D sutil) */
.faq__list { perspective: 1200px; display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  position: relative; border: 1px solid var(--color-line); border-radius: 12px;
  background: linear-gradient(180deg, rgba(28, 28, 28, .55), rgba(11, 11, 11, .55));
  transform-style: preserve-3d; will-change: transform;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .03), 0 18px 30px -26px rgba(0, 0, 0, .8);
  transition: transform .5s cubic-bezier(.2, .7, .2, 1), border-color .5s, box-shadow .5s, background .5s;
}
.faq__item:hover { border-color: var(--gold-line-strong); box-shadow: 0 1px 0 rgba(255, 255, 255, .05), 0 26px 46px -28px rgba(0, 0, 0, .9); }
.faq__item:has([aria-expanded="true"]) {
  border-color: var(--gold-line-strong);
  background: linear-gradient(180deg, rgba(40, 36, 26, .6), rgba(15, 13, 9, .6));
  box-shadow: 0 26px 50px -26px rgba(0, 0, 0, .9), 0 0 40px -18px rgba(227, 196, 119, .32);
}
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: transparent; border: none; cursor: pointer; text-align: left;
  padding: clamp(18px, 2.4vw, 26px) clamp(20px, 2.4vw, 28px);
}
.faq__q-text { font-family: var(--font-serif); font-size: clamp(18px, 1.9vw, 23px); color: var(--color-offwhite); line-height: 1.28; }
.faq__icon {
  flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--gold-line-strong); font-family: var(--font-sans); font-size: 19px; font-weight: 300;
  color: var(--color-gold); transition: transform .45s ease, background .45s; line-height: 1;
}
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); background: var(--gold-wash); }
.faq__panel { overflow: hidden; max-height: 0; opacity: 0; transition: max-height .55s ease, opacity .55s ease; }
.faq__answer {
  font-family: var(--font-sans); font-weight: 300; font-size: 15px; line-height: 1.78;
  color: var(--color-muted); margin: 0; max-width: 60ch;
  padding: 0 clamp(20px, 2.4vw, 28px) clamp(20px, 2.6vw, 26px);
}


/* ============================ 18. RODAPÉ (estrutura institucional TSW) =====
   Replicado do site servidor-público: mesma estrutura/grid/espaçamentos/cores.
   Cores em valores literais para reproduzir o footer com fidelidade. */
.site-footer {
  padding: 64px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: #050505;
  font-family: var(--font-sans);
}
.site-footer .footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(130px, .42fr) minmax(330px, 1fr) minmax(260px, .72fr);
  gap: 34px 30px;
}
.footer-brand { display: flex; gap: 14px; }
.footer-mark { flex: 0 0 auto; }
.brand-mark.footer-mark {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 8px; background: #050505; border: 1px solid rgba(199, 155, 67, .25); overflow: hidden;
}
.brand-mark.footer-mark img { width: 34px; height: 34px; object-fit: contain; }
.footer-brand strong { display: block; font-size: 1.1rem; font-weight: 600; color: #fff; }
.footer-brand p, .footer-bottom p { margin: 8px 0 0; color: #9f9687; line-height: 1.5; }
.footer-links, .footer-contact { display: grid; gap: 10px; align-content: start; }
.footer-links a, .footer-contact a { color: #d8d1c3; font-size: .95rem; text-decoration: none; transition: color .3s; }
.footer-contact a { display: inline-flex; align-items: center; gap: 10px; min-width: 0; overflow-wrap: anywhere; }
.footer-contact a svg { flex: 0 0 auto; width: 18px; height: 18px; color: #e3c477; }
.footer-credentials {
  align-content: start; padding: 18px; border: 1px solid rgba(199, 155, 67, .24);
  border-radius: 8px; background: rgba(199, 155, 67, .07);
}
.footer-credentials strong { display: block; margin-bottom: 10px; color: #fff; font-size: .95rem; font-weight: 600; }
.footer-credentials p { margin: 6px 0 0; color: #d8d1c3; font-size: .9rem; line-height: 1.35; }
.footer-links a:hover, .footer-contact a:hover { color: #e3c477; }
.footer-bottom {
  grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 10px 18px;
  padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .12);
}
.footer-bottom p { margin: 0; }
@media (max-width: 1080px) {
  .site-footer .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .site-footer .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { flex-direction: column; }
  .footer-links a, .footer-contact a { min-height: 44px; padding-block: 10px; }
}


/* ============================ 19. OVERLAYS + REVEAL ========== */
.preloader {
  position: fixed; inset: 0; z-index: 120; background: var(--color-black);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transition: opacity 1s ease, visibility 1s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__logo {
  font-family: var(--font-serif); font-size: clamp(40px, 8vw, 76px); letter-spacing: .18em;
  color: var(--color-offwhite); padding-left: .18em; animation: tsw-fade 1.1s ease both;
}
.preloader__bar { width: 140px; height: 1px; background: var(--color-line); overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, transparent, var(--color-gold), transparent); animation: tsw-shimmer 1.4s linear infinite; }
.preloader__label { font-family: var(--font-sans); font-size: 10px; letter-spacing: .42em; text-transform: uppercase; color: var(--color-muted); }

.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold), var(--color-sand));
  transform: scaleX(0); transform-origin: left; z-index: 110; will-change: transform;
}

.grain {
  position: fixed; inset: 0; z-index: 105; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxNjAnIGhlaWdodD0nMTYwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC44NScgbnVtT2N0YXZlcz0nMicvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScxMDAlJyBoZWlnaHQ9JzEwMCUnIGZpbHRlcj0ndXJsKCNuKScvPjwvc3ZnPg==");
}

/* Orb dourado discreto que segue o cursor (global; ativado via JS só em ponteiro fino) */
.cursor-orb {
  position: fixed; top: 0; left: 0; width: 90px; height: 90px; border-radius: 50%;
  pointer-events: none; z-index: 96; opacity: 0; will-change: transform, opacity;
  transform: translate(-50%, -50%); mix-blend-mode: screen;
  transition: opacity .45s ease;
  background: radial-gradient(circle, rgba(227, 196, 119, .16), rgba(227, 196, 119, .06) 45%, transparent 70%);
}
.cursor-orb.is-on { opacity: 1; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease var(--reveal-delay, 0s), transform 1s ease var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal--scale { transform: translateY(40px) scale(.97); }
.reveal.is-visible { opacity: 1; transform: none; filter: blur(0); }


/* ============================ 20. ANIMAÇÕES ================== */
@keyframes tsw-rise { from { opacity: 0; transform: translateY(42px); filter: blur(10px); } to { opacity: 1; transform: none; filter: blur(0); } }
/* Variante da entrada do hero SEM blur — usada no mobile para evitar o "fantasma"
   residual do filter:blur animado em texto (sobretudo no Safari iOS). */
@keyframes tsw-rise-soft { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes tsw-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes tsw-ken { from { transform: scale(1); } to { transform: scale(1.08); } }
@keyframes tsw-scroll { 0% { transform: translateY(0); opacity: .25; } 40% { opacity: 1; } 100% { transform: translateY(13px); opacity: .1; } }
@keyframes tsw-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes tsw-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(227, 196, 119, 0), 0 14px 40px -16px rgba(227, 196, 119, .5); } 50% { box-shadow: 0 0 32px -4px rgba(227, 196, 119, .35), 0 14px 44px -14px rgba(227, 196, 119, .6); } }
@keyframes tsw-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@keyframes cta-sheen { 0%, 100% { transform: translateX(-12%); opacity: .4; } 50% { transform: translateX(12%); opacity: .8; } }
@keyframes atend-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(227, 196, 119, .45); } 50% { box-shadow: 0 0 0 5px rgba(227, 196, 119, 0); } }


/* ============================ 21. RESPONSIVIDADE ============ */
/* Autoridade e FAQ colapsam em telas médias */
@media (max-width: 900px) {
  .autoridade__grid { grid-template-columns: 1fr; gap: clamp(28px, 6vw, 44px); }
  .faq__grid { grid-template-columns: 1fr; gap: clamp(28px, 6vw, 44px); }
  .faq__aside { position: static; }
  .faq__title { text-align: left; }
}
@media (max-width: 780px) {
  .nav__links { display: none !important; }
  .nav__tag { display: none; }
  /* Mostra o botão hambúrguer no lugar dos links */
  .nav__toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  .transform__arrow { width: 100%; }
  .transform__arrow span { transform: rotate(90deg); display: inline-block; }
  .footer__bottom { justify-content: flex-start; }
}
/* Em telas estreitas, o CTA do topo dá lugar ao hambúrguer (CTA fica no menu) */
@media (max-width: 520px) {
  .nav__cta { display: none; }
}
@media (max-width: 480px) {
  .hero { min-height: 90vh; min-height: 90dvh; }
  .btn { padding: 15px 26px; }
  .impacto__col-text { min-width: 0; }
  .transform__card { min-width: 0; }
}


/* ================= 21b. CORREÇÃO MOBILE (hero + método) ======== */
/* Bug 1 — Hero: título e textos sólidos e legíveis no celular,
   sem aparência transparente/fantasma. Desktop permanece intacto. */
@media (max-width: 768px) {
  /* Entrada sem blur: remove o "fantasma" do filter:blur animado no texto */
  .hero .rise { animation-name: tsw-rise-soft; }

  /* Rede de segurança: nada de transparência/blur/blend preso no texto */
  .hero__kicker-text,
  .hero__title,
  .hero__title span,
  .hero__desc {
    opacity: 1;
    filter: none;
    -webkit-filter: none;
    mix-blend-mode: normal;
  }

  /* Título e lead sólidos, com leve sombra para legibilidade sobre a foto */
  .hero__title {
    color: var(--color-offwhite);
    text-shadow: 0 2px 20px rgba(0, 0, 0, .74);
  }
  .hero__title em { color: var(--color-gold); } /* preserva o acento dourado */
  .hero__desc {
    color: var(--color-offwhite);
    text-shadow: 0 1px 14px rgba(0, 0, 0, .66);
  }
  .hero__kicker-text { text-shadow: 0 1px 10px rgba(0, 0, 0, .6); }

  /* Véu um pouco mais escuro atrás do bloco de texto (preserva a imagem) */
  .hero__veil {
    background: linear-gradient(180deg,
      rgba(11, 11, 11, .70) 0%,
      rgba(11, 11, 11, .46) 42%,
      rgba(11, 11, 11, .96) 100%);
  }

  /* Indicador de scroll: mais curto e um pouco mais baixo, para nao
     encostar na pill "PROJETO + DECORACAO + ESTRATEGIA" no mobile. */
  .hero__scroll { bottom: 20px; }
  .hero__scroll-track { height: 22px; }
  .hero__scroll-dot { height: 9px; }
}

/* Bug 2 — Método: no mobile o layout empilha em coluna única e o card
   deixa de ser sticky/posicionado, eliminando a sobreposição sobre a lista. */
@media (max-width: 900px) {
  .metodo__layout { flex-direction: column; flex-wrap: nowrap; }
  .metodo__sticky {
    position: static;   /* desativa o pin que pintava por cima dos passos */
    top: auto;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    margin-bottom: clamp(24px, 5vw, 36px);
  }
  .metodo__list {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }
}


/* ============================ 21c. MOTION V8 (refinos) ========
   Somente microinterações adicionais — nada de estrutura. */

/* Setas dos botões deslizam no hover */
.btn .btn__arrow { display: inline-block; transition: transform .35s cubic-bezier(.22, .61, .36, 1); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Menu desktop: sublinhado dourado que cresce */
.nav__link { position: relative; }
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--color-gold); transform: scaleX(0); transform-origin: left center;
  transition: transform .35s cubic-bezier(.22, .61, .36, 1);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* Contadores: resposta discreta ao hover */
.stat { transition: background .45s ease; }
.stat:hover { background: var(--color-ink3); }
.stat__num { transition: text-shadow .45s ease; }
.stat:hover .stat__num { text-shadow: 0 0 34px rgba(227, 196, 119, .4); }

/* Depoimentos: cartão eleva com filete dourado */
.depo__card { transition: border-color .45s ease, transform .45s cubic-bezier(.22, .61, .36, 1), box-shadow .45s ease; }
.depo__card:hover {
  border-color: var(--gold-line-strong);
  transform: translateY(-5px);
  box-shadow: 0 26px 46px -30px rgba(0, 0, 0, .9);
}

/* Pilares de autoridade: profundidade sutil */
.autoridade__pillar { transition: background .45s ease, box-shadow .45s ease; }
.autoridade__pillar:hover {
  background: var(--color-ink3);
  box-shadow: inset 3px 0 0 var(--color-gold);
}

/* Antes/Depois: cartões respondem ao hover */
.transform__card { transition: border-color .5s ease, transform .5s cubic-bezier(.22, .61, .36, 1); }
.transform__card:hover { border-color: var(--gold-line-strong); transform: translateY(-4px); }

/* Imagem de impacto: zoom muito discreto */
.impacto__frame img { transition: transform 1.1s cubic-bezier(.22, .61, .36, 1); }
.impacto__frame:hover img { transform: scale(1.03); }

