/* ============================================================
   Anderson Andrade — Portfolio
   Theme: dark / refined-tech · accent #e00000
   ============================================================ */

:root {
  --bg:        #0a0a0b;
  --bg-soft:   #101012;
  --surface:   #141416;
  --surface-2: #1a1a1d;
  --line:      rgba(255, 255, 255, 0.08);
  --line-2:    rgba(255, 255, 255, 0.14);

  --text:      #f2f2f3;
  --muted:     #8a8a90;
  --muted-2:   #5e5e64;

  --red:       #e00000;
  --red-soft:  #ff2b2b;
  --red-glow:  rgba(224, 0, 0, 0.35);

  --font-display: "Bricolage Grotesque", serif;
  --font-body:    "Manrope", sans-serif;
  --font-mono:    "JetBrains Mono", monospace;
  --font-poppins: "Poppins", sans-serif;

  --maxw: 1240px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --radius: 18px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  position: relative;
}

::selection { background: var(--red); color: #fff; }

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

/* ---------- Atmosphere ---------- */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.bg-glow {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60vw 60vw at 75% -10%, var(--red-glow), transparent 60%),
    radial-gradient(50vw 50vw at 0% 100%, rgba(224,0,0,0.10), transparent 55%);
  filter: blur(8px);
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--red), var(--red-soft));
  z-index: 200; box-shadow: 0 0 12px var(--red-glow);
}

/* ---------- Layout helpers ---------- */
.section {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(5rem, 11vw, 9rem) var(--pad);
}
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; max-width: 100%; flex-wrap: wrap;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600; line-height: 1.04; letter-spacing: -0.02em;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
}
.accent { color: var(--red); }

/* Título de Serviços: forçar exatamente 2 linhas no desktop */
#servicos .section-head { max-width: none; }
.services-title { font-size: clamp(1.7rem, 3.6vw, 3rem); }
.services-title .st-line { display: inline; }
@media (min-width: 720px) {
  .services-title .st-line { display: block; white-space: nowrap; }
}

/* ---------- Kicker ---------- */
.kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.kicker.center { justify-content: center; display: flex; }
.kicker .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 10px var(--red-glow);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ---------- Buttons ---------- */
.btn {
  --bg-btn: transparent;
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-poppins); font-weight: 600; font-size: 0.95rem; letter-spacing: 0;
  padding: 0.95rem 1.6rem; border-radius: 100px;
  border: 1px solid var(--line-2); background: var(--bg-btn);
  cursor: pointer; white-space: nowrap;
  transition: transform .35s var(--ease), border-color .35s var(--ease),
              color .35s var(--ease), box-shadow .35s var(--ease);
}
.btn > * { position: relative; z-index: 1; }
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translate(2px, -2px); }
.btn-sm { padding: 0.6rem 1.05rem; font-size: 0.85rem; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn.full { width: 100%; justify-content: center; }

/* Primary — light shine sweeps across on hover */
.btn-primary {
  background: var(--red); border-color: var(--red); color: #fff;
  box-shadow: 0 8px 30px -8px var(--red-glow);
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.45) 50%, transparent 65%);
  transform: translateX(-130%); transition: transform 1.1s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 46px -10px var(--red-glow); }
.btn-primary:hover::before { transform: translateX(130%); }

/* Ghost / outline — red fills up from the bottom on hover */
.btn-ghost { color: var(--text); }
.btn-ghost::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--red); transform: translateY(101%);
  transition: transform .42s var(--ease);
}
.btn-ghost:hover { color: #fff; border-color: var(--red); transform: translateY(-3px); }
.btn-ghost:hover::before { transform: translateY(0); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; z-index: 100;
  top: clamp(12px, 1.8vw, 20px); left: 50%; transform: translateX(-50%);
  width: calc(100% - clamp(1.5rem, 6vw, 3rem)); max-width: var(--maxw);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0.95rem 0.85rem 1.1rem;
  border-radius: 18px;
  background: transparent;
  border: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease),
              box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
/* Glass effect only after scrolling */
.site-header.scrolled {
  background: rgba(10, 10, 11, 0.55);
  border-color: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 18px 50px -16px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 600; }
.brand-logo { width: auto; height: 40px; display: block; }
.brand-name {
  font-family: var(--font-poppins); font-weight: 600; font-size: 1.2rem;
  letter-spacing: -0.01em; color: var(--text);
}
.nav { display: flex; gap: 2rem; }
.nav a {
  font-size: 0.92rem; color: rgba(255, 255, 255, 0.82); position: relative;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0;
  background: var(--red); transition: width .3s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

/* Header social icons */
.header-social { display: flex; gap: 0.5rem; }
.nav-social { display: none; } /* só aparece dentro do menu mobile aberto */
.social-ico {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text); transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.social-ico svg { width: 20px; height: 20px; }
.social-ico:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px -8px var(--red-glow); }

.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; z-index: 2; overflow: hidden;
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 9rem var(--pad) 4rem;
}
.hero-inner { position: relative; z-index: 3; max-width: 900px; }

/* ---- Background graphic ---- */
.hero-visual { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }

.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(circle at 50% 42%, #000 10%, transparent 72%);
          mask-image: radial-gradient(circle at 50% 42%, #000 10%, transparent 72%);
}
.hero-orb {
  position: absolute; top: 44%; left: 50%;
  width: min(760px, 92vw); aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 55%, rgba(255,60,30,0.55), rgba(224,0,0,0.30) 38%, transparent 66%);
  border-radius: 46% 46% 50% 50% / 58% 58% 42% 42%;
  filter: blur(46px); opacity: 0.85;
  animation: orbFloat 9s ease-in-out infinite;
}
.hero-orb::after {
  content: ""; position: absolute; inset: 16%;
  border-radius: inherit;
  border: 1px solid rgba(255,110,70,0.35);
  box-shadow: 0 0 60px rgba(224,0,0,0.4) inset;
}
@keyframes orbFloat { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-52%) scale(1.04); } }

.hero-streak {
  position: absolute; top: 50%; left: 50%;
  width: 180%; height: 1.5px;
  transform: translate(-50%, -50%) rotate(-37deg);
  background: linear-gradient(90deg, transparent, rgba(255,90,50,0.5), var(--red) 50%, rgba(255,90,50,0.5), transparent);
  box-shadow: 0 0 26px var(--red-glow); opacity: 0.55;
}
.hero-streak.two { transform: translate(-50%, -50%) rotate(-37deg) translateY(120px); opacity: 0.22; }

/* Flash of light traveling along the streak */
.hero-streak::after {
  content: ""; position: absolute; top: 50%; left: 0;
  width: 150px; height: 4px; transform: translate(-50%, -50%);
  border-radius: 50%; filter: blur(1px);
  background: linear-gradient(90deg,
    transparent,
    rgba(255,180,110,0.25) 25%,
    #ffd9a8 45%, #ffffff 50%, #ffd9a8 55%,
    rgba(255,110,50,0.25) 75%,
    transparent);
  box-shadow: 0 0 22px 5px rgba(255,170,90,0.75), 0 0 60px 16px rgba(224,0,0,0.45);
  opacity: 0;
  animation: streakFlash 7s ease-in-out infinite;
}
.hero-streak.two::after { animation-delay: 3.5s; width: 110px; opacity: 0; }
@keyframes streakFlash {
  0%   { left: -4%;  opacity: 0; }
  3%   { opacity: 1; }
  22%  { left: 104%; opacity: 1; }
  27%  { opacity: 0; }
  100% { left: 104%; opacity: 0; }
}

.xhair { position: absolute; width: 11px; height: 11px; opacity: 0.5; }
.xhair::before, .xhair::after { content: ""; position: absolute; background: var(--line-2); }
.xhair::before { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.xhair::after { top: 50%; left: 0; height: 1px; width: 100%; transform: translateY(-50%); }
.xhair.tl { top: 104px; left: 7%; }
.xhair.tr { top: 104px; right: 7%; }
.xhair.bl { bottom: 120px; left: 7%; }
.xhair.br { bottom: 120px; right: 7%; }

/* ---- Badge ---- */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em;
  color: var(--text); padding: 0.5rem 1rem;
  border: 1px solid var(--line-2); border-radius: 100px;
  background: rgba(255,255,255,0.03); backdrop-filter: blur(6px);
  margin-bottom: 1.6rem;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red-glow); animation: pulse 2.4s var(--ease) infinite; }

/* ---- Title ---- */
.hero-title {
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: -0.035em; line-height: 0.98;
  font-size: clamp(2.3rem, 6.8vw, 5.4rem);
  margin: 0 0 1.6rem;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero-title .word { display: inline-block; transform: translateY(110%) rotate(4deg); opacity: 0; }
.hero-title .word.accent { color: var(--red); }
.is-ready .hero-title .word { animation: wordUp 0.9s var(--ease) forwards; }
@keyframes wordUp { to { transform: translateY(0) rotate(0); opacity: 1; } }

/* Rotating word */
.rotator { position: relative; overflow: hidden; vertical-align: bottom; }
.rot-word { display: inline-block; will-change: transform, opacity; transition: transform .5s var(--ease), opacity .5s var(--ease); }
.rot-word.out { transform: translateY(-115%); opacity: 0; }
.rot-word.in-prep { transform: translateY(115%); opacity: 0; transition: none; }

/* ---- Lead ---- */
.hero-lead {
  max-width: 580px; margin: 0 auto 2.4rem;
  font-size: clamp(1rem, 1.5vw, 1.18rem); color: var(--text);
}
.hero-lead strong { color: var(--text); font-weight: 600; }

/* ---- Actions ---- */
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3.4rem; }
.btn .ico { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.18); transition: transform .3s var(--ease); }
.btn-primary .ico { background: #fff; }
.btn-primary .ico svg path { stroke: var(--red); }
.btn:hover .ico { transform: translate(2px, -2px); }

/* ---- Trust ---- */
.hero-trust { display: inline-flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; justify-content: center; }
.avatars { display: flex; }
.avatars span { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -11px; background-size: cover; background-position: center; background-repeat: no-repeat; background-color: #2b2b30; }
.avatars span:first-child { margin-left: 0; }
.avatars span[data-a="1"] { background-image: url("Images/pessoas/1.jpg"); }
.avatars span[data-a="2"] { background-image: url("Images/pessoas/2.jpg"); }
.avatars span[data-a="3"] { background-image: url("Images/pessoas/3.jpg"); }
.avatars span[data-a="4"] { background-image: url("Images/pessoas/4.jpg"); }
.avatars span[data-a="5"] { background-image: url("Images/pessoas/5.jpg"); }
.hero-trust p { font-size: 0.9rem; color: var(--muted); }
.hero-trust strong { color: var(--text); font-weight: 600; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-soft); padding: 1.4rem 0; overflow: hidden;
  white-space: nowrap;
}
.marquee-track { display: inline-flex; align-items: center; gap: 2.2rem; animation: marquee 32s linear infinite; }
.marquee-track.reverse { animation-direction: reverse; animation-duration: 38s; }
.marquee span { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 500; letter-spacing: -0.01em; }
.marquee .mq-dot { color: var(--red); font-size: 1rem; }
.marquee-alt { background: transparent; border: 0; }
.marquee-alt span { color: var(--muted); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES — cards
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.card {
  background: var(--surface); padding: clamp(1.6rem, 3vw, 2.4rem);
  position: relative; transition: background .35s var(--ease); overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 50% 0%, rgba(224,0,0,0.10), transparent 70%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.card:hover { background: var(--surface-2); }
.card:hover::before { opacity: 1; }
.card-num { font-family: var(--font-mono); font-size: 0.8rem; color: var(--red); margin-bottom: 1.6rem; }
.card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.7rem; letter-spacing: -0.01em; }
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.4rem; }
.tags { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tags li { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); padding: 0.3rem 0.7rem; border: 1px solid var(--line); border-radius: 100px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section-tm .section-head.center { margin-bottom: clamp(2rem, 4vw, 3rem); }

/* carousel — loop infinito (transform) */
.tm-carousel-wrap { position: relative; }
.tm-carousel {
  overflow: hidden; cursor: grab; padding: 6px 0 1.2rem;
  /* degradê escondendo as pontas dos cards */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 86%, transparent 100%);
}
.tm-carousel.dragging { cursor: grabbing; }
.tm-carousel.dragging .tm-card { pointer-events: none; }
.tm-track { display: flex; gap: 1.4rem; will-change: transform; }

.tm-card {
  position: relative; flex: 0 0 clamp(280px, 33%, 400px);
  display: flex; flex-direction: column; gap: 1.1rem;
  background: var(--surface); border: 1px solid transparent; border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.1rem); overflow: hidden;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
/* hover red wash */
.tm-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(120% 100% at 50% 0%, rgba(224,0,0,0.10), transparent 70%);
  opacity: 0; transition: opacity .4s var(--ease);
}
/* gradient border */
.tm-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none; z-index: 1;
  background: linear-gradient(150deg, rgba(255,255,255,0.22), rgba(224,0,0,0.28) 38%, rgba(255,255,255,0.03) 78%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: opacity .35s var(--ease);
}
.tm-card > * { position: relative; z-index: 2; }
.tm-card:hover { transform: translateY(-4px); background: var(--surface-2); }
.tm-card:hover::before { opacity: 1; }
.tm-card.featured { box-shadow: 0 0 50px -16px var(--red-glow); }
.tm-card.featured::before { opacity: 1; }
.tm-card.featured::after {
  background: linear-gradient(150deg, rgba(255,90,80,0.55), rgba(224,0,0,0.5) 45%, rgba(255,255,255,0.06) 85%);
}

.tm-stars { color: var(--red); font-size: 0.95rem; letter-spacing: 0.18em; }
.tm-card blockquote { color: var(--text); font-size: 1rem; line-height: 1.6; flex-grow: 1; }
.tm-author { display: flex; align-items: center; gap: 0.85rem; }
.tm-author .tm-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 700; font-size: 0.9rem; color: #fff;
  background: linear-gradient(180deg, var(--red-soft), var(--red));
  box-shadow: 0 6px 18px -6px var(--red-glow);
}
.tm-author strong { display: block; font-family: var(--font-display); font-size: 1rem; }
.tm-author span { font-size: 0.82rem; color: var(--muted); }

/* checks row */
.tm-checks {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1.4rem; margin-top: clamp(2.2rem, 4vw, 3rem);
}
.tm-check {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.02em; color: var(--text);
}
.tm-check svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }
.tm-divider { width: 1px; height: 18px; background: var(--line-2); }

/* ============================================================
   PROCESS — steps
   ============================================================ */
/* centered header */
.section-head.center { max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker {
  justify-content: center; background: var(--surface); border: 1px solid var(--line);
  padding: 0.4rem 0.95rem; border-radius: 99px; margin-bottom: 1.4rem;
}
.section-title.big-center { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 700; }
.section-sub { color: var(--muted); margin: 1.1rem auto 0; max-width: 560px; font-size: 1.05rem; }

/* how-it-works grid */
.hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.hiw-item { display: flex; flex-direction: column; }

.hiw-card {
  position: relative; border-radius: 22px; overflow: hidden;
  background: linear-gradient(180deg, #161618, #0d0d0f);
  border: 1px solid var(--line); padding: 1.5rem;
  aspect-ratio: 1 / 0.95;
  box-shadow: 0 0 50px -14px var(--red-glow), inset 0 1px 0 rgba(255,255,255,0.03);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.hiw-item:hover .hiw-card { transform: translateY(-5px); box-shadow: 0 0 70px -10px var(--red-glow), inset 0 1px 0 rgba(255,255,255,0.05); }
/* glowing gradient border */
.hiw-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 22px; padding: 1px; pointer-events: none;
  background: linear-gradient(180deg, var(--red-soft) 0%, rgba(224,0,0,0.25) 35%, rgba(255,255,255,0.04) 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
/* connecting rail: a trunk line linking the 3 cards with a drop into each,
   with a warm light flowing along it (same beam feel as the hero) */
.hiw-rail { position: relative; height: 64px; margin-bottom: -1px; }
.rail-svg { width: 100%; height: 100%; display: block; }
.rail-path {
  stroke: url(#railGrad); stroke-width: 1.5;
  filter: drop-shadow(0 0 5px rgba(224,0,0,0.3));
}
.rail-light {
  stroke: #ffe7cf; stroke-width: 2.5; stroke-linecap: round;
  stroke-dasharray: 5 95;
  filter: drop-shadow(0 0 3px rgba(255,170,90,0.7)) drop-shadow(0 0 7px rgba(224,0,0,0.45));
  animation: railTravel 6s linear infinite;
}
@keyframes railTravel {
  from { stroke-dashoffset: 100; }
  to   { stroke-dashoffset: 0; }
}

.hiw-item h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin-top: 1.5rem; }
.hiw-item p { color: var(--muted); font-size: 0.98rem; margin-top: 0.35rem; }

.hiw-mock { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: center; }

/* mock 1 — briefing form */
.mock-form label { font-family: var(--font-mono); font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.3rem; display: block; }
.mock-input { background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 10px; padding: 0.6rem 0.8rem; font-size: 0.85rem; color: var(--muted); margin-bottom: 0.85rem; }
.mock-btn { text-align: center; background: linear-gradient(180deg, var(--red-soft), var(--red)); color: #fff; border-radius: 11px; padding: 0.7rem; font-size: 0.88rem; font-weight: 600; box-shadow: 0 10px 28px -8px var(--red-glow); }

/* mock 2 — design / approval */
.mock-design { gap: 0.55rem; }
.mock-window { display: flex; gap: 0.4rem; margin-bottom: 0.4rem; }
.mock-window span { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); }
.mock-window span:first-child { background: var(--red); }
.mock-blocks { display: flex; flex-direction: column; gap: 0.5rem; }
.mb { background: rgba(255,255,255,0.05); border-radius: 8px; }
.mb-lg { height: 64px; }
.mb-sm { height: 14px; width: 75%; }
.mb-sm:last-child { width: 50%; }
.mock-approve { align-self: flex-start; margin-top: 0.85rem; background: rgba(224,0,0,0.12); border: 1px solid rgba(224,0,0,0.4); color: var(--red-soft); border-radius: 99px; padding: 0.4rem 0.95rem; font-size: 0.78rem; font-family: var(--font-mono); }

/* mock 3 — delivery list */
.mock-list { gap: 0.45rem; }
.ml-item { display: flex; align-items: center; gap: 0.7rem; padding: 0.55rem 0.65rem; border-radius: 11px; border: 1px solid transparent; }
.ml-item.active { background: rgba(255,255,255,0.04); border-color: var(--line); }
.ml-ic { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: rgba(224,0,0,0.16); color: var(--red-soft); font-size: 0.78rem; flex-shrink: 0; }
.ml-item b { display: block; font-size: 0.85rem; font-weight: 600; }
.ml-item i { font-style: normal; font-size: 0.72rem; color: var(--muted); }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--maxw); margin: 0 auto;
}
.stat { padding: clamp(2.2rem, 5vw, 3.6rem) var(--pad); border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat-num { display: block; font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 0.7rem; display: block; }

/* ============================================================
   WORK
   ============================================================ */
/* ---- Pinned scroll-through carousel with side vignette ---- */
.work-section { position: relative; z-index: 2; }
.work-pin { position: relative; }            /* height defined via JS */
.work-stage {
  position: sticky; top: 0;
  height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-start;
  padding-top: clamp(5.5rem, 13vh, 8rem);
  gap: clamp(1.4rem, 2.6vw, 2.2rem); overflow: hidden;
}
.work-head-wrap { max-width: var(--maxw); width: 100%; margin: 0 auto; padding: 0 var(--pad); }
.work-head-wrap .section-head { margin-bottom: 0; }
.work-cta-mobile { display: none; } /* botão mobile (abaixo dos cards) — só aparece ≤760px */

.work-carousel {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.work-track { display: flex; gap: 1.6rem; width: max-content; padding: 0 var(--pad); will-change: transform; }
.work-track .work-card { width: clamp(340px, 40vw, 580px); flex: 0 0 auto; }

/* ---- 4 stacked category rows (large cards) ---- */
.cat-rows { position: relative; height: clamp(340px, 58vh, 600px); }
.cat-rows .work-carousel {
  position: absolute; top: 0; left: 0; width: 100%;
  opacity: 0; pointer-events: none; transition: opacity .55s var(--ease);
}
.cat-rows .work-carousel.active { opacity: 1; pointer-events: auto; }
.cat-track { display: flex; gap: clamp(1rem, 1.6vw, 1.6rem); width: max-content; padding: 0 var(--pad); will-change: transform; }
.cat-tile {
  position: relative; flex: 0 0 auto; overflow: hidden;
  height: clamp(340px, 58vh, 600px); aspect-ratio: 16 / 10; width: auto;
  border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.cat-tile[data-shade="1"] { background: linear-gradient(150deg, #1a1a1d, #0d0d0f 72%), radial-gradient(80% 90% at 100% 0%, var(--red-glow), transparent 60%); }
.cat-tile[data-shade="2"] { background: linear-gradient(150deg, #241114, #0d0d0f 72%); }
.cat-tile[data-shade="3"] { background: linear-gradient(150deg, #16171d, #0d0d0f 72%); }
.cat-tile[data-shade="4"] { background: linear-gradient(150deg, #1f1511, #0d0d0f 72%); }
.cat-tile::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(80% 70% at 30% 18%, #000, transparent 80%);
          mask-image: radial-gradient(80% 70% at 30% 18%, #000, transparent 80%);
}
.cat-tile:hover { border-color: var(--line-2); }
a.cat-tile { text-decoration: none; color: inherit; cursor: pointer; }
/* cards sem link (article) não mostram a seta de "abrir" */
article.cat-tile .cat-foot i { display: none; }

/* service image fills the tile (foot bar overlays the bottom) */
.cat-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}

/* Prints de página inteira: topo fixo; ao passar o mouse, rola até o rodapé */
.cat-track--scroll .cat-img {
  object-position: 50% 0%;
  transition: object-position 0.6s var(--ease); /* volta rápida ao sair */
}
.cat-track--scroll .cat-tile:hover .cat-img {
  object-position: 50% 100%;
  transition: object-position 9s linear;  /* descida lenta no hover */
}
@media (prefers-reduced-motion: reduce) {
  .cat-track--scroll .cat-img,
  .cat-track--scroll .cat-tile:hover .cat-img { transition: none; }
}
.cat-tile .work-tag { position: absolute; top: 1.1rem; left: 1.1rem; z-index: 1; }

.cat-foot {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.4rem; background: var(--surface); border-top: 1px solid var(--line);
}
.cat-foot-txt { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.cat-foot span { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.01em; }
.cat-foot em { font-style: normal; font-size: 0.85rem; line-height: 1.3; color: var(--muted); }
.cat-foot i {
  flex: 0 0 auto; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-2); color: var(--text); font-style: normal; font-size: 1.15rem;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.cat-tile:hover .cat-foot i { background: var(--red); border-color: var(--red); color: #fff; transform: translate(3px, -3px); }

/* Fallback (reduced motion): unpin + manual horizontal scroll */
.work-pin.no-pin { height: auto !important; }
.work-pin.no-pin .work-stage { position: static; height: auto; min-height: 0; padding: clamp(4rem, 9vw, 7rem) 0; }
.work-pin.no-pin .work-carousel { overflow-x: auto; }

.work-card {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--surface); transition: border-color .35s var(--ease), transform .35s var(--ease);
  cursor: pointer;
}
.work-card:hover { border-color: var(--line-2); transform: translateY(-4px); }
.work-thumb {
  aspect-ratio: 16 / 9; position: relative; overflow: hidden;
  display: flex; align-items: flex-start; padding: 1.3rem;
  border-bottom: 1px solid var(--line);
}
.work-thumb[data-shade="1"] { background: linear-gradient(150deg, #1a1a1d, #0d0d0f 72%), radial-gradient(80% 90% at 100% 0%, var(--red-glow), transparent 60%); }
.work-thumb[data-shade="2"] { background: linear-gradient(150deg, #241114, #0d0d0f 72%); }
.work-thumb[data-shade="3"] { background: linear-gradient(150deg, #16171d, #0d0d0f 72%); }
.work-thumb[data-shade="4"] { background: linear-gradient(150deg, #1f1511, #0d0d0f 72%); }
/* subtle dot texture */
.work-thumb::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(80% 80% at 30% 20%, #000, transparent 80%);
          mask-image: radial-gradient(80% 80% at 30% 20%, #000, transparent 80%);
}
.work-thumb::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(70% 80% at 75% 15%, var(--red-glow), transparent 60%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.work-card:hover .work-thumb::after { opacity: 1; }

/* big watermark category icon */
.work-glyph {
  position: absolute; right: -8px; bottom: -14px; z-index: 0;
  width: clamp(130px, 24%, 200px); height: auto;
  color: rgba(255, 255, 255, 0.07);
  transition: color .45s var(--ease), transform .45s var(--ease);
}
.work-card:hover .work-glyph { color: rgba(224, 0, 0, 0.18); transform: translate(-6px, -6px); }

.work-tag {
  position: relative; z-index: 1;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.05em;
  padding: 0.4rem 0.8rem; border: 1px solid var(--line-2); border-radius: 100px;
  background: rgba(10,10,11,0.45); backdrop-filter: blur(6px);
}

.work-info { display: flex; align-items: center; gap: 1rem; padding: 1.4rem 1.5rem; }
.work-text { flex: 1; min-width: 0; }
.work-info h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.2rem; }
.work-info p { color: var(--muted); font-size: 0.9rem; }
.work-arrow {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-2); color: var(--text); font-size: 1.15rem;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.work-card:hover .work-arrow { background: var(--red); border-color: var(--red); color: #fff; transform: translate(3px, -3px); }
.work-note { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted-2); max-width: var(--maxw); margin: 0 auto; padding: 1.6rem var(--pad) 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.about-title { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.about-p { color: var(--muted); margin-bottom: 2rem; font-size: 1.05rem; }
.about-p strong { color: var(--text); }

/* left column stays in place while the cards scroll up over each other */
.about-left { position: sticky; top: 120px; align-self: start; }

/* right column — sticky stacking cards */
.about-stack { display: flex; flex-direction: column; gap: 2rem; }
.stat-card {
  position: sticky; top: calc(120px + var(--i, 0) * 16px);
  border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  padding: clamp(1.5rem, 2.6vw, 2.1rem); min-height: 200px;
  display: flex; flex-direction: column; justify-content: space-between;
  background:
    linear-gradient(150deg, rgba(224,0,0,0.16), transparent 55%),
    linear-gradient(180deg, var(--surface-2), var(--bg-soft));
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.8);
}
/* subtle grid texture like the reference */
.stat-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(120% 90% at 85% 0%, #000, transparent 70%);
  mask-image: radial-gradient(120% 90% at 85% 0%, #000, transparent 70%);
}
.stat-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; position: relative; z-index: 1; }
.stat-head span { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); }
.stat-head i { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-style: normal; }
.stat-num {
  position: relative; z-index: 1; font-family: var(--font-display); font-weight: 700;
  line-height: 1; font-size: clamp(3rem, 6vw, 4.6rem); color: var(--red);
}
.stat-num em { font-style: normal; font-size: 0.3em; font-weight: 600; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; margin-left: 0.45rem; }

/* ============================================================
   CTA
   ============================================================ */
.cta { position: relative; z-index: 2; text-align: center; padding: clamp(5rem, 12vw, 9rem) var(--pad); border-top: 1px solid var(--line); }
.cta-inner { max-width: 920px; margin: 0 auto; }
.cta-title { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.03em; line-height: 1.04; font-size: clamp(2.2rem, 6vw, 4.2rem); margin: 1rem 0 1.2rem; }
.cta-title .cta-line { display: block; white-space: nowrap; }
.cta-lead { color: var(--muted); font-size: 1.1rem; margin-bottom: 2.4rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { position: relative; z-index: 2; border-top: 1px solid var(--line); padding: clamp(3rem, 5vw, 4.5rem) var(--pad) clamp(1.6rem, 3vw, 2.2rem); max-width: var(--maxw); margin: 0 auto; }
.site-footer .brand-name { color: var(--text); }

.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.footer-desc { color: var(--muted); font-size: 0.95rem; max-width: 38ch; margin: 1.2rem 0 1.5rem; }
.footer-social { display: flex; gap: 0.5rem; }

.footer-col h3 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; margin-bottom: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-links a { font-size: 0.92rem; color: var(--muted); transition: color .25s var(--ease); width: fit-content; }
.footer-links a:hover { color: var(--red); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted-2); }
.footer-built { display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-credit { display: inline-flex; align-items: center; opacity: 0.8; transition: opacity .25s var(--ease); }
.footer-credit:hover { opacity: 1; }
.footer-credit img { height: 20px; width: auto; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .40s; }
[data-reveal].in-view { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; }
  .about-left { position: static; }
  .stat-card { position: static; min-height: 0; }
  .hiw-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .hiw-rail { display: none; }
  .tm-card { flex-basis: clamp(260px, 80%, 340px); }
}
@media (max-width: 760px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .social-ico { width: 40px; height: 40px; }
  .nav.open {
    display: flex; flex-direction: column; gap: 1.4rem;
    position: fixed; top: calc(clamp(12px, 1.8vw, 20px) + 64px);
    left: 50%; transform: translateX(-50%);
    width: calc(100% - clamp(1.5rem, 6vw, 3rem));
    padding: 1.6rem 1.4rem;
    background: rgba(10,10,11,0.85); backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.10); border-radius: 16px;
    box-shadow: 0 18px 50px -16px rgba(0,0,0,0.8);
  }
  .nav.open a { font-size: 1.1rem; }
  .header-social { display: none; }
  .nav.open .nav-social { display: flex; gap: 1rem; justify-content: flex-start; }
  .nav.open .nav-social .social-ico { transition: none; }
  .nav.open .nav-social .social-ico:hover { background: transparent; border-color: rgba(255,255,255,0.18); color: var(--text); transform: none; box-shadow: none; }
  .cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.6rem; }
  .cta-title .cta-line { white-space: normal; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-left: 0; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .work-track .work-card { width: clamp(260px, 82vw, 360px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-left .btn { width: 100%; justify-content: center; }

  /* Trabalhos: sem pin/scroll — cards empilhados verticalmente */
  .work-pin { height: auto !important; }
  .work-stage { position: static; height: auto; min-height: 0; overflow: visible;
                padding-top: clamp(4rem, 12vw, 6rem); gap: 2rem; }
  .cat-rows { position: static; height: auto; display: flex; flex-direction: column;
              gap: 1.2rem; padding: 0 var(--pad); }
  .cat-rows .work-carousel { position: static; opacity: 1; pointer-events: auto;
                             overflow: visible; -webkit-mask-image: none; mask-image: none; }
  .cat-track { flex-direction: column; width: 100%; padding: 0; gap: 1.2rem;
               transform: none !important; }
  .cat-tile { width: 100%; height: auto; aspect-ratio: 16 / 10; }
  /* botão "Seu projeto aqui": esconde o do topo, mostra o de baixo */
  .head-cta { display: none; }
  .work-cta-mobile { display: flex; justify-content: center; align-self: stretch; margin: 0 var(--pad); }
  .hero-meta { gap: 1.2rem; }
  .meta-sep { display: none; }
  .tm-checks { flex-direction: column; gap: 1rem; }
  .tm-divider { display: none; }
}

/* ============================================================
   BOTÃO FLUTUANTE DE WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; z-index: 200;
  right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px);
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 10px 28px -6px rgba(37, 211, 102, 0.55);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25d366; animation: waPulse 2.4s ease-out infinite;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 40px -8px rgba(37, 211, 102, 0.7); }
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 760px) {
  .wa-float { width: 52px; height: 52px; }
  .wa-float svg { width: 28px; height: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero-title .word { opacity: 1; transform: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
