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

/* ── KEYFRAMES ── */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes blobBreath {
  0%, 100% { transform: translateY(-52%) scale(1) rotate(0deg); }
  33%       { transform: translateY(-54%) scale(1.04) rotate(1.5deg); }
  66%       { transform: translateY(-50%) scale(0.97) rotate(-1deg); }
}
@keyframes doodleWiggle {
  0%, 100% { transform: rotate(-4deg) scale(1); }
  25%       { transform: rotate(4deg) scale(1.05); }
  50%       { transform: rotate(-2deg) scale(0.98); }
  75%       { transform: rotate(3deg) scale(1.03); }
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.3); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.2); }
  56%       { transform: scale(1); }
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-8px) rotate(2deg); }
}
@keyframes cardSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
@keyframes heroContentIn {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes modeloIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes blobIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
:root {
  --red: #FF0024;
  --black: #0D0D0D;
  --white: #FFFFFF;
  --offwhite: #F5F5F5;
  --gray: #888;
  --light: #F0F0F0;
  --border: #E5E5E5;
  --font: 'Fira Sans', Verdana, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--black); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 60px;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  display: flex; align-items: center;
  justify-content: center;
  padding: 0 40px;
}
.nav-inner {
  width: 100%; max-width: 1280px;
  display: flex; align-items: center;
}
.nav-logo { margin-right: auto; display: flex; align-items: center; }
.nav-logo img { height: 50px; width: auto; display: block; }
body.home nav:not(.scrolled) .nav-logo img { filter: drop-shadow(0 4px 14px rgba(0,0,0,.22)); }
.nav-links { display: flex; gap: 28px; list-style: none; margin-right: 32px; }
.nav-links a { font-size: 13px; font-weight: 500; color: #555; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a.active { border-bottom: 2px solid var(--red); padding-bottom: 2px; }
.nav-cta { background: var(--red); color: #fff; padding: 9px 20px; border-radius: 6px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; transition: background .2s, color .2s; white-space: nowrap; }
.nav-cta:hover { background: #C30024; }
.nav-cart { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; margin-right: 14px; color: #555; transition: color .2s; }
.nav-cart svg { width: 22px; height: 22px; }
.nav-cart:hover { color: var(--red); }

/* Nav transparente sobre o hero vermelho (home, topo da página) */
body.home nav { background: transparent; border-bottom-color: transparent; backdrop-filter: none; transition: background .3s, border-color .3s, backdrop-filter .3s; }
body.home nav .nav-links a { color: rgba(255,255,255,.82); }
body.home nav .nav-links a:hover { color: #fff; }
body.home nav .nav-cart { color: rgba(255,255,255,.82); }
body.home nav .nav-cart:hover { color: #fff; }
body.home nav .nav-cta { background: #fff; color: #A20F22; }
body.home nav .nav-cta:hover { background: rgba(255,255,255,.86); }
body.home nav .nav-burger span { background: #fff; }
/* Ao rolar: nav sólido branco */
body.home nav.scrolled { background: rgba(255,255,255,.97); border-bottom-color: var(--border); backdrop-filter: blur(10px); }
body.home nav.scrolled .nav-links a { color: #555; }
body.home nav.scrolled .nav-links a:hover { color: var(--red); }
body.home nav.scrolled .nav-cart { color: #555; }
body.home nav.scrolled .nav-cart:hover { color: var(--red); }
body.home nav.scrolled .nav-cta { background: var(--red); color: #fff; }
body.home nav.scrolled .nav-burger span { background: var(--black); }
.nav-menu { display: flex; align-items: center; }
.nav-burger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 44px; height: 44px; margin-left: 6px; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.nav-burger span { width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
.nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── LABELS ── */
.label { font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.label-live { display: inline-flex; align-items: center; gap: 8px; }
.label-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(255,0,36,.6); animation: ondePulse 1.6s ease-out infinite; }

/* ── BTNS ── */
.btn-red { background: var(--red); color: #fff; padding: 12px 24px; border-radius: 6px; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; transition: background .2s, transform .15s; }
.btn-red:hover { background: #C30024; transform: translateY(-1px); }
.btn-outline { border: 1.5px solid #d0d0d0; color: var(--black); padding: 11px 20px; border-radius: 6px; font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: border-color .2s; }
.btn-outline:hover { border-color: var(--black); }

/* Botão Encontrar máquinas — moderno com efeitos em loop */
.btn-find {
  position: relative;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  color: var(--black);
  background: #fff;
  border: 1.5px solid #e2e2e6;
  overflow: hidden;
  transition: border-color .25s, transform .15s, box-shadow .25s;
}
.btn-find:hover {
  border-color: var(--red);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,0,36,.14);
}
.btn-find-pin {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  color: var(--red);
  animation: pinBob 2.4s ease-in-out infinite;
}
.btn-find-pin svg { width: 16px; height: 16px; position: relative; z-index: 1; }
.btn-find-ping {
  position: absolute;
  top: 4px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  z-index: 0;
  animation: pinPing 2.4s ease-out infinite;
}
.btn-find-label { position: relative; z-index: 1; }
.btn-find-shine {
  position: absolute; top: 0; left: -60%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,0,36,.10), transparent);
  transform: skewX(-18deg);
  animation: btnShine 3.4s ease-in-out infinite;
}
@keyframes pinBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }
@keyframes pinPing {
  0% { transform: translateX(-50%) scale(.6); opacity: .55; }
  70%, 100% { transform: translateX(-50%) scale(2.6); opacity: 0; }
}
@keyframes btnShine {
  0% { left: -60%; }
  55%, 100% { left: 120%; }
}

/* ── HERO CINEMATOGRÁFICO ── */
#hero.hero-cine { position: relative; min-height: 100vh; background: #0a0a0a; display: block; overflow: hidden; padding: 0; }
#hero.hero-cine::before { content: none; }
.hc-bg { position: absolute; inset: -6%; z-index: 0; will-change: transform; }
.hc-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; display: block; animation: hcZoom 22s ease-in-out infinite alternate; }
@keyframes hcZoom { from { transform: scale(1.02); } to { transform: scale(1.14); } }
.hc-scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(100deg, rgba(8,8,9,.95) 0%, rgba(8,8,9,.72) 32%, rgba(8,8,9,.2) 60%, rgba(8,8,9,0) 82%),
  linear-gradient(to top, rgba(8,8,9,.92) 0%, rgba(8,8,9,0) 44%); }
.hc-vignette { position: absolute; inset: 0; z-index: 1; pointer-events: none; box-shadow: inset 0 0 230px 46px rgba(0,0,0,.72); }
.hc-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; min-height: 100vh; padding: 100px 40px 40px; display: flex; flex-direction: column; }
.hc-top { display: flex; justify-content: space-between; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.hc-content { margin-top: auto; max-width: 760px; will-change: transform, opacity; }
.hc-kicker { font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin-bottom: 22px; display: inline-flex; align-items: center; gap: 10px; }
.hc-kicker::before { content: ''; width: 30px; height: 1px; background: var(--red); }
.hc-title { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(42px, 6.6vw, 108px); line-height: .97; letter-spacing: -1.5px; color: #fff; margin-bottom: 26px; }
.hc-title em { font-style: italic; }
.hc-sub { font-size: clamp(15px, 1.4vw, 19px); line-height: 1.6; color: rgba(255,255,255,.72); max-width: 520px; margin-bottom: 34px; }
.hc-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hc-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--red); color: #fff; font-size: 15px; font-weight: 800; padding: 16px 28px; border-radius: 999px; transition: transform .25s, box-shadow .25s; }
.hc-btn svg { width: 18px; height: 18px; transition: transform .25s; }
.hc-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,0,36,.4); }
.hc-btn:hover svg { transform: translateX(4px); }
.hc-link { color: #fff; font-size: 14px; font-weight: 600; position: relative; padding-bottom: 3px; }
.hc-link::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: rgba(255,255,255,.5); transform: scaleX(.4); transform-origin: left; transition: transform .3s; }
.hc-link:hover::after { transform: scaleX(1); }
.hc-cue { margin-top: 42px; display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.hc-cue-line { width: 1px; height: 40px; background: linear-gradient(rgba(255,255,255,.5), transparent); position: relative; overflow: hidden; }
.hc-cue-line::after { content: ''; position: absolute; top: -40px; left: 0; width: 100%; height: 40px; background: rgba(255,255,255,.9); animation: hcCue 1.9s ease-in-out infinite; }
@keyframes hcCue { 0% { top: -40px; } 65%, 100% { top: 40px; } }
@media (max-width: 700px) {
  .hc-inner { padding: 88px 22px 30px; }
  .hc-top { font-size: 9.5px; letter-spacing: .12em; }
  .hc-title { letter-spacing: -.4px; }
  .hc-sub { max-width: 100%; }
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #ECECEF;
  display: flex;
  align-items: center;
  padding: 0 40px 0 80px;
}
#hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(0,0,0,.10) 1.4px, transparent 1.4px);
  background-size: 24px 24px;
  animation: heroDotsDrift 6s linear infinite, heroDotsPulse 4s ease-in-out infinite;
}
@keyframes heroDotsDrift { from { background-position: 0 0; } to { background-position: 24px 24px; } }
@keyframes heroDotsPulse { 0%, 100% { opacity: .5; } 50% { opacity: .85; } }
.hero-left-rail {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 56px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  pointer-events: none;
  animation: heroContentIn 1s cubic-bezier(.22,1,.36,1) .3s both;
}
.rail-track {
  position: relative;
  width: 1.5px;
  height: 230px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.16) 16%, rgba(0,0,0,.16) 84%, transparent);
}
.rail-dot {
  position: absolute;
  left: 50%; top: 50%;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px 1px rgba(255,0,36,.4);
}
.rail-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 11px;
  letter-spacing: .35em;
  font-weight: 600;
  color: #b2b2b8;
}
@keyframes railTravel { 0%, 100% { top: 4%; } 50% { top: 96%; } }
@keyframes railPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,0,36,.5), 0 0 10px 1px rgba(255,0,36,.45); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(255,0,36,0), 0 0 10px 1px rgba(255,0,36,.45); }
}
.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-parallax-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* Chevron vermelho + mulher — mesmo canvas 1920x1217, sobrepostos */
.hero-layer-blob,
.hero-layer-modelo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}
.hero-layer-blob { z-index: 1; }
.hero-layer-modelo { z-index: 2; }
/* Chevron vermelho — estático, diagonal coesa atrás da mulher */
.hero-layer-blob img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 76%;
  object-fit: cover;
  object-position: 62% top;
  display: block;
  animation: blobIn .9s ease both;
}
/* IMG_01 recortada — mulher sobre a área vermelha, sem cortar */
.hero-layer-modelo img {
  position: absolute;
  right: 22%;
  bottom: 0;
  height: 94%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  animation: modeloIn 1s cubic-bezier(.22,1,.36,1) .35s both,
             heroFloat 5s ease-in-out 1.4s infinite;
}
/* Watermark TOK YOU canto inferior direito */
.hero-watermark {
  position: absolute;
  bottom: 32px; right: 0;
  z-index: 4;
  pointer-events: none;
  animation: heroContentIn 1s cubic-bezier(.22,1,.36,1) .6s both;
}
.hero-watermark img {
  height: 100px;
  width: auto;
  opacity: .85;
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 120px 0 80px;
  max-width: 500px;
  animation: heroContentIn .9s cubic-bezier(.22,1,.36,1) .1s both;
}
.hero-title { font-size: clamp(36px, 3.7vw, 52px); font-weight: 900; line-height: 1.04; letter-spacing: -2px; margin-bottom: 20px; }
.hero-line1 { white-space: nowrap; }
.type-word {
  white-space: nowrap;
  border-right: 4px solid var(--red);
  padding-right: 4px;
  animation: caretBlink .9s step-end infinite;
}
@keyframes caretBlink { 0%, 100% { border-color: var(--red); } 50% { border-color: transparent; } }
/* ── TEXT COLOR ANIMATION ── */
.tc-wrap { display: inline-block; position: relative; }
.tc-sizer { visibility: hidden; }
.tc-word { position: absolute; top: 0; left: 0; white-space: nowrap; }
.tc-word::before {
  content: attr(data-w);
  position: absolute; top: 0; left: 0;
  color: var(--black); z-index: 0;
}
.tc-g {
  -webkit-background-clip: text; background-clip: text;
  color: transparent; position: relative; z-index: 1;
  background-image: linear-gradient(to right, #FF0024, #FF6B35);
}
.tc-g2 { background-image: linear-gradient(to right, #C30024, #FF0024); }
.tc-g3 { background-image: linear-gradient(to right, #FF0024, #ff1744); }

@keyframes tc-fg1 { 0%,16.667%,to{opacity:1} 33.333%,83.333%{opacity:0} }
@keyframes tc-fg2 { 0%,16.667%,66.667%,to{opacity:0} 33.333%,50%{opacity:1} }
@keyframes tc-fg3 { 0%,50%,to{opacity:0} 66.667%,83.333%{opacity:1} }
@keyframes tc-bg1 { 0%,16.667%,to{opacity:0} 25%,91.667%{opacity:1} }
@keyframes tc-bg2 { 0%,25%,58.333%,to{opacity:1} 33.333%,50%{opacity:0} }
@keyframes tc-bg3 { 0%,58.333%,91.667%,to{opacity:1} 66.667%,83.333%{opacity:0} }

.tc-w1::before { animation: tc-bg1 9s infinite; }
.tc-w2::before { animation: tc-bg2 9s infinite; }
.tc-w3::before { animation: tc-bg3 9s infinite; }
.tc-w1 .tc-g { animation: tc-fg1 9s infinite; }
.tc-w2 .tc-g { animation: tc-fg2 9s infinite; }
.tc-w3 .tc-g { animation: tc-fg3 9s infinite; }
.hero-title .red { color: var(--red); }
.hero-sub { font-size: 15px; color: #555; line-height: 1.68; max-width: 360px; margin-bottom: 34px; }
.hero-sub strong { color: var(--black); font-weight: 600; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-social { display: flex; align-items: center; gap: 12px; }
.avatars { display: flex; }
.av { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; flex-shrink: 0; object-fit: cover; }
.av:first-child { margin-left: 0; }
.hero-social-text { font-size: 13px; color: #777; }
.hero-social-text strong { color: var(--black); }

/* Presença — marquee de shoppings */
.hero-malls { max-width: 440px; }
.hero-malls-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--black); margin-bottom: 13px;
  display: inline-flex; align-items: center; gap: 9px;
}
.hero-malls-label::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 0 0 rgba(255,0,36,.5);
  animation: mallsDot 2s ease-out infinite;
}
.hero-malls-track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 88%, transparent);
}
.hero-malls-row { display: flex; gap: 9px; width: max-content; animation: mallsScroll 26s linear infinite; }
.hero-malls-row span {
  flex-shrink: 0; white-space: nowrap;
  font-size: 11.5px; font-weight: 600; color: #555;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid #d4d4d9; background: rgba(255,255,255,.55);
}
@keyframes mallsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes mallsDot {
  0% { box-shadow: 0 0 0 0 rgba(255,0,36,.5); }
  70%, 100% { box-shadow: 0 0 0 7px rgba(255,0,36,0); }
}
.hero-badge {
  position: absolute; top: 100px; right: 0; z-index: 11;
  width: 82px; height: 82px; border-radius: 50%;
  background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.12);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  border: 1.5px solid var(--border);
  animation: cardSlideIn .7s cubic-bezier(.22,1,.36,1) .8s both,
             badgeFloat 4.5s ease-in-out 1.5s infinite;
}
.hero-badge-icon {
  font-size: 20px; line-height: 1;
  display: inline-block;
  animation: heartbeat 2.2s ease-in-out 2s infinite;
}
.hero-badge-text { font-size: 6px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--black); line-height: 1.5; margin-top: 3px; }
.hero-time-card {
  position: absolute; bottom: 130px; right: 0; z-index: 30;
  background: #fff; border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.16), 0 0 0 1.5px rgba(255,0,36,.12);
  padding: 16px 22px;
  display: flex; align-items: center; gap: 14px;
  animation: cardSlideIn .7s cubic-bezier(.22,1,.36,1) 1s both,
             cardFloat 5.5s ease-in-out 1.7s infinite;
}
.hero-time-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.hero-time-t { font-size: 13px; font-weight: 600; color: var(--gray); margin-bottom: 2px; }
.hero-time-s { font-size: 16px; font-weight: 900; color: var(--black); letter-spacing: -.4px; }
.hero-time-s strong { color: var(--red); }

/* ── SECTION BASE ── */
.sec { padding: 88px 40px; }
.sec-inner { max-width: 1280px; margin: 0 auto; }
.sec-title { font-size: clamp(28px, 2.8vw, 42px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.05; }
.sec-sub { font-size: 14.5px; color: #666; line-height: 1.68; max-width: 460px; margin-top: 12px; }

/* ── COMO FUNCIONA ── */
#como {
  background: #ECECEF;
  position: relative;
  z-index: 20;
  margin-top: 0;
  padding: 0 40px 64px;
}
#como .sec-inner {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 18px 54px rgba(0,0,0,.12);
  padding: 60px 56px 56px;
  margin: -72px auto 0;
}
.como-layout { display: grid; grid-template-columns: 0.85fr 3fr; gap: 56px; align-items: center; }
.como-above { font-size: 11px; font-weight: 700; color: var(--red); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .14em; }
.como-headline { font-size: clamp(26px, 2.6vw, 38px); font-weight: 800; letter-spacing: -1.4px; line-height: 1.12; }
.como-desc { font-size: 14px; color: var(--gray); line-height: 1.6; margin-top: 16px; max-width: 230px; }

/* Steps em cards */
.como-steps-h { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.csh {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 30px 14px 22px;
  background: #fff;
  border: 1px solid #E8E8EC;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
  transition: transform .3s cubic-bezier(.34,1.4,.64,1), box-shadow .3s, border-color .3s;
}
.csh:hover, .csh.active {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,.10);
  border-color: #fff;
}
.csh-bignum {
  font-size: 58px; font-weight: 900; letter-spacing: -3px; line-height: 1;
  margin-bottom: 14px;
  color: transparent;
  -webkit-text-stroke: 1.6px #cfcfd6;
  transition: color .45s ease, -webkit-text-stroke-color .45s ease, transform .45s cubic-bezier(.34,1.4,.64,1);
}
.csh:hover .csh-bignum, .csh.active .csh-bignum {
  color: var(--red);
  -webkit-text-stroke-color: var(--red);
  transform: scale(1.05) translateY(-2px);
}
.csh-t { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 7px; }
.csh-d { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* ── FLICKERING GRID ── */
.flicker-canvas {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: .55;
}

/* ── CAPINHA 3D (scroll 360) #ia ── */
#ia.c3-section { padding: 0; background: #0d0d0d; color: #fff; }
.c3-track { position: relative; height: 320vh; }
.c3-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; }
.c3-inner { max-width: 1180px; margin: 0 auto; width: 100%; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.c3-copy { position: relative; z-index: 4; }
.c3-title { font-size: clamp(30px, 3.6vw, 52px); font-weight: 800; letter-spacing: -2px; line-height: 1.04; color: #fff; margin: 16px 0 30px; }
.c3-steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.c3-step { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 700; color: rgba(255,255,255,.4); transition: color .35s; }
.c3-step span { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; transition: all .35s; flex-shrink: 0; }
.c3-step.on { color: #fff; }
.c3-step.on span { background: var(--red); border-color: var(--red); color: #fff; }
.c3-deg { font-family: 'Courier New', monospace; font-size: 42px; font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: 1px; }
.c3-deg span { color: var(--red); }

.c3-scene { position: relative; perspective: 1500px; display: flex; align-items: center; justify-content: center; min-height: 70vh; }
.c3-jp { position: absolute; inset: 0; z-index: 1; pointer-events: none; will-change: transform; }
.c3-jp span { position: absolute; font-weight: 800; }
.c3-k1 { top: 3%; right: 2%; font-size: 92px; color: rgba(255,255,255,.06); writing-mode: vertical-rl; }
.c3-k2 { bottom: 5%; left: 2%; font-size: 19px; letter-spacing: .3em; color: rgba(255,0,36,.55); writing-mode: vertical-rl; }
.c3-k3 { top: 42%; left: 5%; font-size: 120px; color: rgba(255,0,36,.09); }
.c3-kdot { position: absolute; border-radius: 50%; background: var(--red); }
.c3-kd1 { top: 20%; left: 16%; width: 10px; height: 10px; opacity: .6; }
.c3-kd2 { bottom: 22%; right: 14%; width: 6px; height: 6px; opacity: .5; }

.c3-case { position: relative; width: 250px; height: 510px; transform-style: preserve-3d; transform: rotateY(0deg); z-index: 2; will-change: transform; }
.c3-face { position: absolute; top: 50%; left: 50%; }
.c3-front, .c3-back { width: 250px; height: 510px; border-radius: 34px; overflow: hidden; }
.c3-front { transform: translate(-50%,-50%) translateZ(9px); }
.c3-back { transform: translate(-50%,-50%) rotateY(180deg) translateZ(9px); background: linear-gradient(150deg, #242424, #0e0e0e); }
.c3-back::after { content: ''; position: absolute; inset: 14px; border-radius: 26px; box-shadow: inset 0 0 30px rgba(0,0,0,.85); }
.c3-left, .c3-right { width: 18px; height: 510px; border-radius: 6px; background: linear-gradient(#3a3a3a, #101010); }
.c3-left { transform: translate(-50%,-50%) rotateY(-90deg) translateZ(125px); }
.c3-right { transform: translate(-50%,-50%) rotateY(90deg) translateZ(125px); }
.c3-top, .c3-bottom { width: 250px; height: 18px; border-radius: 6px; background: linear-gradient(90deg, #3a3a3a, #101010); }
.c3-top { transform: translate(-50%,-50%) rotateX(90deg) translateZ(255px); }
.c3-bottom { transform: translate(-50%,-50%) rotateX(-90deg) translateZ(255px); }
.c3-front .c3-blank { position: absolute; inset: 0; background: linear-gradient(160deg, #f2f2f4, #dedee2); }
.c3-front .c3-art { position: absolute; inset: 0; clip-path: inset(100% 0 0 0); background:
  radial-gradient(120% 90% at 25% 20%, #ff5a7a 0%, transparent 55%),
  radial-gradient(120% 90% at 80% 30%, #b14cff 0%, transparent 55%),
  radial-gradient(140% 100% at 60% 90%, #ffd23f 0%, transparent 50%),
  linear-gradient(150deg, #FF0024, #b3110f); }
.c3-cam { position: absolute; top: 16px; left: 16px; width: 66px; height: 66px; border-radius: 18px; background: rgba(8,8,8,.6); display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 8px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); }
.c3-cam span { border-radius: 50%; background: radial-gradient(circle at 35% 30%, #3a3a3a, #111); box-shadow: inset 0 0 0 2px #2a2a2a; }
.c3-cam .c3-flash { background: #cfcf7a; }
.c3-gloss { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, rgba(255,255,255,.3), transparent 40%); }
.c3-progress { position: absolute; left: 40px; right: 40px; bottom: 28px; height: 3px; background: rgba(255,255,255,.15); border-radius: 3px; z-index: 5; }
#c3Bar { display: block; height: 100%; width: 0; background: var(--red); border-radius: 3px; }
@media (max-width: 860px) {
  .c3-track { height: 300vh; }
  .c3-inner { grid-template-columns: 1fr; gap: 8px; padding: 0 22px; }
  .c3-copy { order: 2; text-align: center; }
  .c3-steps { align-items: center; }
  .c3-scene { order: 1; min-height: 52vh; }
  .c3-case { width: 200px; height: 408px; }
  .c3-front, .c3-back { width: 200px; height: 408px; }
  .c3-left, .c3-right { height: 408px; }
  .c3-top, .c3-bottom { width: 200px; }
  .c3-left { transform: translate(-50%,-50%) rotateY(-90deg) translateZ(100px); }
  .c3-right { transform: translate(-50%,-50%) rotateY(90deg) translateZ(100px); }
  .c3-top { transform: translate(-50%,-50%) rotateX(90deg) translateZ(204px); }
  .c3-bottom { transform: translate(-50%,-50%) rotateX(-90deg) translateZ(204px); }
  .c3-front { transform: translate(-50%,-50%) translateZ(9px); }
  .c3-back { transform: translate(-50%,-50%) rotateY(180deg) translateZ(9px); }
  .c3-progress { left: 22px; right: 22px; }
  .c3-deg { font-size: 32px; }
}

/* ── CRAFTING CULTURE (estilo detroit.paris) ── */
.dtr { background: #fff; position: relative; overflow: hidden; height: 100vh; min-height: 620px; }
.dtr-strip { position: absolute; left: 0; bottom: 0; height: 100%; display: flex; align-items: flex-end; z-index: 1; }
.dtr-img { position: relative; margin: 0; flex: 0 0 auto; overflow: hidden; clip-path: inset(100% 0 0 0); will-change: clip-path; background: #eee; }
.dtr-img img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.2); will-change: transform; }
/* faixa: alturas variadas, coladas, a última sangra à direita (composição detroit) */
.dtr-a { width: 15vw; height: 27vh; }
.dtr-b { width: 21vw; height: 37vh; }
.dtr-c { width: 22vw; height: 55vh; }
.dtr-d { width: 27vw; height: 73vh; }
.dtr-e { width: 22vw; height: 62vh; }
/* título gigante por cima, canto superior esquerdo */
.dtr-copy { position: absolute; top: 8vh; left: clamp(20px, 2.4vw, 48px); z-index: 5; }
.dtr-title { font-size: clamp(48px, 8.8vw, 152px); font-weight: 900; text-transform: uppercase; letter-spacing: -.03em; line-height: .86; color: var(--black); margin: 0 0 3.2vh; }
.dtr-line { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }
.dtr-line-in { display: inline-block; transform: translateY(115%); will-change: transform; }
.dtr-tag-line { display: block; overflow: hidden; }
.dtr-tag-in { display: inline-block; transform: translateY(130%); font-size: clamp(12px, 1.05vw, 16px); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--black); line-height: 1.75; will-change: transform; }
/* fallback sem GSAP: mostra tudo */
.dtr-noanim .dtr-line-in, .dtr-noanim .dtr-tag-in { transform: none; }
.dtr-noanim .dtr-img { clip-path: inset(0 0 0 0); }
.dtr-noanim .dtr-img img { transform: none; }
@media (max-width: 860px) {
  .dtr { height: auto; min-height: 0; }
  .dtr-copy { position: static; padding: 60px 22px 22px; }
  .dtr-title { letter-spacing: -.02em; margin-bottom: 18px; }
  .dtr-tag { margin-bottom: 26px; }
  .dtr-strip { position: static; height: auto; overflow-x: auto; gap: 8px; padding: 0 22px 24px; -webkit-overflow-scrolling: touch; }
  .dtr-img { clip-path: inset(0 0 0 0) !important; width: 230px !important; height: 300px !important; border-radius: 8px; }
  .dtr-img img { transform: none; }
}


/* ── MANIFESTO (editorial) ── */
#manifesto { background: #fff; padding: 128px 40px; }
.mani-inner { max-width: 920px; margin: 0 auto; text-align: center; }
.mani-kicker { font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: 24px; }
.mani-h { font-size: clamp(34px, 5vw, 66px); font-weight: 800; letter-spacing: -2.5px; line-height: 1.02; color: var(--black); margin-bottom: 30px; }
.mani-p { font-size: clamp(16px, 1.4vw, 20px); color: #555; line-height: 1.62; max-width: 640px; margin: 0 auto; }
@media (max-width: 700px) { #manifesto { padding: 76px 20px; } }

/* ── CRIAÇÃO COM IA (dark) ── */
#ia { background: #0D0D0D; padding: 92px 40px; color: #fff; overflow: hidden; }
.ia-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ia-kicker { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.ia-title { font-size: clamp(30px, 3.6vw, 50px); font-weight: 800; letter-spacing: -2px; line-height: 1.04; color: #fff; margin-bottom: 20px; }
.ia-sub { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.65; max-width: 480px; margin-bottom: 28px; }
.ia-steps { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.ia-step { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 700; color: #fff; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); padding: 10px 16px; border-radius: 999px; }
.ia-step span { width: 20px; height: 20px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; }
.ia-btn { display: inline-flex; align-items: center; gap: 9px; background: var(--red); color: #fff; font-weight: 800; font-size: 14px; padding: 14px 24px; border-radius: 999px; transition: transform .2s, box-shadow .2s, background .2s; }
.ia-btn svg { width: 17px; height: 17px; }
.ia-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,0,36,.35); }
/* visual: arte + barra de prompt */
.ia-visual { position: relative; }
.ia-art { position: relative; border-radius: 22px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.55); }
.ia-art img { width: 100%; display: block; }
.ia-badge { position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 8px; background: rgba(0,0,0,.55); backdrop-filter: blur(8px); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .02em; padding: 8px 13px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15); }
.ia-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #9FF558; box-shadow: 0 0 0 0 rgba(159,245,88,.6); animation: ondePulse 1.6s ease-out infinite; }
.ia-prompt { position: absolute; left: 50%; bottom: -24px; transform: translateX(-50%); width: min(92%, 420px); display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 999px; padding: 8px 8px 8px 16px; box-shadow: 0 20px 44px rgba(0,0,0,.4); }
.ia-prompt-spark { color: var(--red); display: flex; flex-shrink: 0; }
.ia-prompt-spark svg { width: 18px; height: 18px; }
.ia-prompt-txt { flex: 1; min-width: 0; font-size: 13.5px; color: var(--black); white-space: nowrap; overflow: hidden; display: flex; align-items: center; }
.ia-caret { display: inline-block; width: 2px; height: 15px; background: var(--red); margin-left: 1px; animation: caretBlink .9s step-end infinite; }
.ia-prompt-btn { flex-shrink: 0; background: var(--red); color: #fff; font-size: 12.5px; font-weight: 800; padding: 9px 16px; border-radius: 999px; }
/* vídeo demo (frame de celular) */
.ia-video { max-width: 320px; margin: 0 auto; border-radius: 30px; overflow: hidden; background: #000; border: 6px solid #1b1b1b; box-shadow: 0 30px 70px rgba(0,0,0,.6); }
.ia-video video { width: 100%; display: block; aspect-ratio: 9 / 16; object-fit: cover; }

/* ── SCROLLYTELLING PINADO (#ia) — legado ── */
#ia.scrolly { padding: 0; }
.scrolly-track { height: 400vh; position: relative; }
.scrolly-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; }
.scrolly-inner { max-width: 1180px; margin: 0 auto; padding: 0 40px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.sc-left { position: relative; color: #fff; }
.sc-caps { position: relative; height: 210px; margin: 20px 0 26px; }
.sc-cap { position: absolute; inset: 0; margin: 0; font-size: clamp(30px, 3.8vw, 54px); font-weight: 800; letter-spacing: -2px; line-height: 1.03; color: #fff; opacity: 0; transform: translateY(22px); transition: opacity .45s ease, transform .5s cubic-bezier(.22,1,.36,1); pointer-events: none; }
.sc-cap.on { opacity: 1; transform: none; }
.sc-n { display: block; font-size: 13px; font-weight: 800; letter-spacing: .12em; color: var(--red); margin-bottom: 12px; }
.sc-dots { display: flex; gap: 8px; }
.sc-dots span { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.25); transition: width .3s, background .3s; }
.sc-dots span.on { width: 24px; background: var(--red); }

.sc-stage { position: relative; perspective: 1400px; display: flex; align-items: center; justify-content: center; min-height: 66vh; }
.case3d { position: relative; transform-style: preserve-3d; will-change: transform; transition: transform .1s linear; }
.case-body { position: relative; width: 258px; aspect-ratio: 1000 / 2040; border-radius: 42px; overflow: hidden; background: #141414; box-shadow: 0 50px 100px rgba(0,0,0,.6), inset 0 0 0 3px rgba(255,255,255,.07); }
.case-blank { position: absolute; inset: 0; background: linear-gradient(160deg, #f2f2f4, #e2e2e6); }
.case-art { position: absolute; inset: 0; clip-path: inset(100% 0 0 0); background:
  radial-gradient(120% 90% at 25% 20%, #ff5a7a 0%, transparent 55%),
  radial-gradient(120% 90% at 80% 30%, #b14cff 0%, transparent 55%),
  radial-gradient(140% 100% at 60% 90%, #ffd23f 0%, transparent 50%),
  linear-gradient(150deg, #FF0024, #b3110f); }
.case-cam { position: absolute; top: 16px; left: 16px; width: 70px; height: 70px; border-radius: 20px; background: rgba(10,10,10,.6); display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 9px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.case-cam span { border-radius: 50%; background: radial-gradient(circle at 35% 30%, #3a3a3a, #111); box-shadow: inset 0 0 0 2px #2a2a2a; }
.case-cam .case-flash { background: #cfcf7a; box-shadow: 0 0 6px rgba(255,255,200,.5); }
.case-gloss { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, rgba(255,255,255,.28), transparent 38%); }
/* selos */
.sc-badge { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 800; padding: 8px 14px; border-radius: 999px; opacity: 0; transition: opacity .35s, transform .35s; pointer-events: none; }
.sc-badge-preview { top: 16%; right: 8%; background: rgba(255,255,255,.95); color: var(--black); transform: translateY(8px); box-shadow: 0 12px 26px rgba(0,0,0,.35); }
.sc-badge-preview.on { opacity: 1; transform: none; }
.sc-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(255,0,36,.5); animation: ondePulse 1.6s ease-out infinite; }
.sc-badge-done { bottom: 15%; left: 6%; background: #9FF558; color: #0a0a0a; transform: translateY(8px); box-shadow: 0 12px 26px rgba(0,0,0,.35); }
.sc-badge-done.on { opacity: 1; transform: none; }
.sc-progress { position: absolute; left: 40px; right: 40px; bottom: 30px; height: 3px; background: rgba(255,255,255,.15); border-radius: 3px; }
#scBar { display: block; height: 100%; width: 0; background: var(--red); border-radius: 3px; }
@media (max-width: 860px) {
  .scrolly-track { height: 360vh; }
  .scrolly-inner { grid-template-columns: 1fr; gap: 8px; padding: 0 22px; justify-items: center; text-align: center; }
  .sc-left { order: 2; }
  .sc-stage { order: 1; min-height: 46vh; }
  .sc-caps { height: 130px; margin: 8px 0 16px; }
  .sc-dots { justify-content: center; }
  .case-body { width: 190px; }
  .sc-progress { left: 22px; right: 22px; }
}
@media (max-width: 860px) {
  #ia { padding: 60px 20px 72px; }
  .ia-inner { grid-template-columns: 1fr; gap: 30px; }
  .ia-visual { max-width: 420px; margin: 0 auto; width: 100%; }
}

/* ── COLEÇÕES / LOOKBOOK (light, editorial) ── */
#estilos { background: #ECECEF; padding: 96px 40px; }
.col-inner { max-width: 1280px; margin: 0 auto; }
.col-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 44px; flex-wrap: wrap; }
.col-kicker { font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.col-h { font-size: clamp(30px, 3.6vw, 52px); font-weight: 800; letter-spacing: -2px; line-height: 1.03; color: var(--black); }
.col-sub { font-size: 16px; color: #555; line-height: 1.6; max-width: 380px; }
.bento-kicker { font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-bottom: 22px; }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 262px 262px; gap: 16px; }
.bento-c { position: relative; margin: 0; border-radius: 18px; overflow: hidden; background: #ddd; }
.bento-c img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.bento-c:hover img { transform: scale(1.05); }
.bento-c::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.42), transparent 42%); pointer-events: none; }
.bento-c figcaption { position: absolute; left: 18px; top: 15px; z-index: 1; color: #fff; font-size: 15px; font-weight: 800; letter-spacing: .02em; }
.bento-grid .bp1 { grid-column: 1; grid-row: 1 / 3; }
.bento-grid .bp2 { grid-column: 2; grid-row: 1; }
.bento-grid .bp3 { grid-column: 3; grid-row: 1; }
.bento-grid .bp4 { grid-column: 4; grid-row: 1 / 3; }
.bento-grid .bp5 { grid-column: 2; grid-row: 2; }
.bento-grid .bp6 { grid-column: 3; grid-row: 2; }
@media (max-width: 860px) {
  #estilos { padding: 64px 20px; }
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; grid-auto-rows: 200px; }
  .bento-grid .bp1, .bento-grid .bp4 { grid-column: auto; grid-row: span 2; }
  .bento-grid .bp2, .bento-grid .bp3, .bento-grid .bp5, .bento-grid .bp6 { grid-column: auto; grid-row: auto; }
}
@media (max-width: 460px) {
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-grid > * { grid-column: auto !important; grid-row: auto !important; aspect-ratio: 4 / 5; }
}

/* ── ESTILOS / ANTES E DEPOIS (legado, oculto) ── */
.estilos-inner { max-width: 1280px; margin: 0 auto; }
/* head centralizado + conceito */
.estilos-head-c { text-align: center; max-width: 760px; margin: 0 auto 42px; }
/* variante 2 colunas: texto esquerda + carrossel direita */
.estilos-2col { display: grid; grid-template-columns: .82fr 1.18fr; gap: 48px; align-items: center; }
.estilos-2col .estilos-head-c { text-align: left; max-width: none; margin: 0; }
.estilos-2col .estilos-head-c .estilos-sub2 { margin-left: 0; }
.estilos-2col .estilos-head-c .ad-tags { justify-content: flex-start; }
.estilos-2col .ad-carousel { max-width: none; margin: 0; min-width: 0; }
.estilos-2col { min-width: 0; }
.estilos-2col > * { min-width: 0; }
@media (max-width: 860px) {
  .estilos-2col { grid-template-columns: 1fr; gap: 26px; }
  .estilos-2col .estilos-head-c { text-align: center; }
  .estilos-2col .estilos-head-c .estilos-sub2 { margin-left: auto; margin-right: auto; }
  .estilos-2col .estilos-head-c .ad-tags { justify-content: center; }
}
.estilos-title2 { font-size: clamp(28px, 3.4vw, 46px); font-weight: 800; letter-spacing: -1.8px; line-height: 1.06; color: var(--black); margin-bottom: 16px; }
.estilos-sub2 { font-size: 16px; color: var(--gray); line-height: 1.62; max-width: 620px; margin: 0 auto 22px; }
.estilos-sub2 strong { color: var(--black); font-weight: 700; }
.ad-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.ad-tags span { font-size: 12.5px; font-weight: 700; color: var(--black); background: #fff; border: 1px solid var(--border); padding: 8px 14px; border-radius: 999px; }
/* carrossel dos antes/depois (uma em foco + espiadinha dos lados) */
.ad-carousel { position: relative; max-width: 1180px; margin: 0 auto; }
.ad-viewport { overflow: hidden; padding: 8px 0 4px; }
.ad-track { position: relative; display: flex; gap: 24px; transition: transform .55s cubic-bezier(.22,1,.36,1); will-change: transform; }
.ad-slide { flex: 0 0 clamp(280px, 40vw, 460px); aspect-ratio: 1122 / 1402; margin: 0; border-radius: 18px; overflow: hidden; background: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.08); opacity: .45; transform: scale(.9); transition: opacity .45s ease, transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s; }
.ad-slide.active { opacity: 1; transform: scale(1); box-shadow: 0 22px 50px rgba(0,0,0,.16); }
.ad-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ad-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; border: none; background: #fff; color: var(--black); cursor: pointer; box-shadow: 0 10px 26px rgba(0,0,0,.2); display: flex; align-items: center; justify-content: center; transition: transform .2s, background .2s; }
.ad-arrow svg { width: 22px; height: 22px; }
.ad-prev { left: 8px; }
.ad-next { right: 8px; background: var(--red); color: #fff; }
.ad-arrow:hover { transform: translateY(-50%) scale(1.08); }
.ad-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.ad-dot { width: 8px; height: 8px; border-radius: 999px; border: none; background: #c9c9cf; cursor: pointer; padding: 0; transition: width .25s, background .25s; }
.ad-dot.active { width: 22px; background: var(--red); }
@media (max-width: 860px) {
  #estilos { padding: 56px 20px 64px; }
  .ad-slide { flex-basis: 78vw; }
  .ad-prev { left: 2px; } .ad-next { right: 2px; }
  .ad-arrow { width: 40px; height: 40px; }
}
.estilos-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: center; }
.estilos-kicker { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px; }
.estilos-title { font-size: clamp(28px,2.8vw,40px); font-weight: 800; letter-spacing: -1.4px; line-height: 1.1; color: var(--black); }
.estilos-sub { font-size: 14px; color: var(--gray); line-height: 1.6; margin-top: 16px; max-width: 230px; }
.estilos-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--red); }
.estilos-link .arr { transition: transform .25s; }
.estilos-link:hover .arr { transform: translateX(4px); }

.estilos-carousel { position: relative; }
.colecoes { display: flex; gap: 16px; overflow-x: auto; padding: 6px 2px 10px; scrollbar-width: none; scroll-behavior: smooth; }
.colecoes::-webkit-scrollbar { display: none; }
.col-card { flex: 0 0 calc((100% - 48px) / 4); min-width: 0; cursor: pointer; }
.col-img {
  width: 100%; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden;
  background: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.08);
  transition: transform .3s, box-shadow .3s;
}
.col-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.col-card:hover .col-img { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,.14); }
.col-card:hover .col-img img { transform: scale(1.05); }
.col-name { font-size: 13px; font-weight: 700; color: var(--black); margin-top: 14px; text-align: center; }

.estilos-nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 22px; }
.est-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid #d8d8dc; background: #fff; color: var(--black);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
}
.est-arrow svg { width: 18px; height: 18px; }
.est-arrow:hover { border-color: var(--black); transform: translateY(-1px); }
.est-arrow-red { background: var(--red); border-color: var(--red); color: #fff; }
.est-arrow-red:hover { background: #C30024; border-color: #C30024; box-shadow: 0 6px 16px rgba(255,0,36,.3); }

/* ── MÁQUINAS / MAPA REAL ── */
#maquinas { background: var(--white); }
.maq-wrap { display: grid; grid-template-columns: 380px 1fr; min-height: 560px; }
.maq-sidebar { padding: 56px 40px 56px 56px; display: flex; flex-direction: column; }
.maq-title { font-size: clamp(26px,2.4vw,34px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.1; margin: 14px 0 12px; }
.maq-sub { font-size: 13.5px; color: var(--gray); line-height: 1.6; margin-bottom: 22px; max-width: 300px; }
.maq-search { position: relative; display: flex; align-items: center; margin-bottom: 12px; }
.maq-search-ico { position: absolute; left: 13px; width: 16px; height: 16px; color: #999; pointer-events: none; }
.maq-search input { width: 100%; padding: 11px 76px 11px 36px; border: 1.5px solid var(--border); border-radius: 9px; font-family: var(--font); font-size: 13px; outline: none; transition: border-color .2s; }
.maq-search input:focus { border-color: var(--red); }
.maq-search-btn { position: absolute; right: 5px; background: var(--red); color: #fff; border: none; border-radius: 6px; padding: 7px 13px; font-family: var(--font); font-size: 11px; font-weight: 700; cursor: pointer; transition: background .2s; }
.maq-search-btn:hover { background: #C30024; }
.maq-geo { display: inline-flex; align-items: center; gap: 8px; background: none; border: none; color: var(--red); font-family: var(--font); font-size: 12px; font-weight: 700; cursor: pointer; padding: 4px 0; margin-bottom: 10px; }
.maq-geo svg { width: 15px; height: 15px; }
.maq-status { font-size: 12.5px; line-height: 1.4; min-height: 16px; margin: 0 0 12px; }
.maq-status:empty { margin: 0; }
.maq-status.loading { color: var(--gray); }
.maq-status.loading::before { content: ''; display: inline-block; width: 11px; height: 11px; margin-right: 7px; border: 2px solid rgba(0,0,0,.15); border-top-color: var(--red); border-radius: 50%; vertical-align: -1px; animation: maqSpin .7s linear infinite; }
.maq-status.ok { color: var(--black); }
.maq-status.ok strong { color: var(--red); }
.maq-status.err { color: var(--red); }
@keyframes maqSpin { to { transform: rotate(360deg); } }
.maq-loja-dist { flex-shrink: 0; font-size: 11px; font-weight: 800; color: var(--red); background: rgba(255,0,36,.08); padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.maq-list { display: flex; flex-direction: column; overflow-y: auto; flex: 1; margin: 0 -8px; }
.maq-loja { display: flex; align-items: center; gap: 12px; padding: 13px 12px; border-radius: 10px; cursor: pointer; transition: background .15s; text-align: left; }
.maq-loja:hover, .maq-loja.active { background: var(--offwhite); }
.maq-loja-pin { width: 18px; height: 18px; flex-shrink: 0; color: var(--red); }
.maq-loja-info { flex: 1; min-width: 0; }
.maq-loja-n { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.maq-loja-c { font-size: 11.5px; color: var(--gray); }
.maq-loja-chev { color: #ccc; font-size: 17px; }
.ver-link { font-size: 13px; font-weight: 700; color: var(--red); margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: .04em; }
.ver-link:hover { color: #C30024; }

.maq-map { width: 100%; height: 100%; min-height: 560px; background: #eee; z-index: 1; }
.maq-map .leaflet-container { font-family: var(--font); }
/* Pin vermelho custom */
.maq-pin-marker { background: none; border: none; }
.maq-pin-inner {
  width: 26px; height: 26px;
  background: var(--red);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 10px rgba(0,0,0,.3);
}
.maq-pin-letter {
  position: absolute; top: 5px; left: 0; right: 0;
  transform: rotate(0); text-align: center;
  color: #fff; font-size: 12px; font-weight: 800;
}
.maq-pin-me .maq-pin-inner { background: #1d6ef5; }
.maq-route-dot { background: none; border: none; }
.maq-route-dot div {
  width: 14px; height: 14px; margin: 2px;
  border-radius: 50%; background: var(--red);
  border: 2px solid #fff;
  box-shadow: 0 0 0 0 rgba(255,0,36,.55), 0 2px 8px rgba(255,0,36,.5);
  animation: maqDotPulse 1.4s ease-out infinite;
}
@keyframes maqDotPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,0,36,.55), 0 2px 8px rgba(255,0,36,.5); }
  70%, 100% { box-shadow: 0 0 0 12px rgba(255,0,36,0), 0 2px 8px rgba(255,0,36,.5); }
}
.leaflet-popup-content-wrapper { border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,.18); }
.leaflet-popup-content { margin: 14px 16px; font-family: var(--font); }
.maq-pop-n { font-size: 14px; font-weight: 800; color: var(--black); margin-bottom: 5px; }
.maq-pop-a { font-size: 12px; color: var(--gray); line-height: 1.5; }
.maq-pop-f { font-size: 11.5px; color: var(--black); font-weight: 600; margin-top: 5px; }
.maq-pop-rota { display: inline-block; margin-top: 9px; font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .04em; }

/* ── ONDE / PRESENCIAL (bento clean branco) ── */
#onde { background: #fff; padding: 88px 40px; position: relative; overflow: hidden; }
.onde-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
/* headline editorial */
.onde-head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.onde-h { font-size: clamp(32px, 4.4vw, 58px); font-weight: 800; letter-spacing: -2px; line-height: 1.04; color: var(--black); margin-bottom: 20px; }
.onde-h .w { display: inline-block; opacity: 0; transform: translateY(.45em); transition: opacity .55s ease, transform .65s cubic-bezier(.22,1,.36,1); }
.onde-head.vis .onde-h .w { opacity: 1; transform: translateY(0); }
.onde-head.vis .onde-h .w:nth-child(1) { transition-delay: .05s; }
.onde-head.vis .onde-h .w:nth-child(2) { transition-delay: .12s; }
.onde-head.vis .onde-h .w:nth-child(3) { transition-delay: .19s; }
.onde-head.vis .onde-h .w:nth-child(4) { transition-delay: .28s; }
.onde-head.vis .onde-h .w:nth-child(5) { transition-delay: .35s; }
.onde-head.vis .onde-h .w:nth-child(6) { transition-delay: .42s; }
.onde-sub { font-size: 16px; color: var(--gray); line-height: 1.65; max-width: 580px; margin: 0 auto 26px; }
.onde-sub strong { color: var(--black); font-weight: 700; }
.onde-tabs { display: inline-flex; gap: 8px; background: #f3f3f5; padding: 6px; border-radius: 999px; }
.onde-tab { display: inline-flex; align-items: center; gap: 8px; border: none; background: transparent; cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 700; color: var(--gray); padding: 10px 20px; border-radius: 999px; transition: background .3s, color .3s, box-shadow .3s; }
.onde-tab-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: .4; transition: opacity .3s; }
.onde-tab.active { background: #fff; color: var(--red); box-shadow: 0 4px 14px rgba(0,0,0,.08); }
.onde-tab.active .onde-tab-dot { opacity: 1; }

/* slideshow */
.onde-slider { position: relative; max-width: 1080px; margin: 0 auto; aspect-ratio: 21/9; border-radius: 24px; overflow: hidden; background: #1a1a1a; box-shadow: 0 30px 70px rgba(0,0,0,.22); }
.onde-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; }
.onde-slide.active { opacity: 1; }
.onde-slide img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.06); transition: transform 6s ease; }
.onde-slide.active img { transform: scale(1); }
.onde-slabel { position: absolute; left: 26px; bottom: 26px; display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); color: var(--black); font-size: 14px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 11px 18px; border-radius: 999px; box-shadow: 0 10px 26px rgba(0,0,0,.2); }
.onde-slabel::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(255,0,36,.55); animation: ondePulse 1.8s ease-out infinite; }
.onde-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,.25); }
.onde-progress-bar { display: block; height: 100%; width: 0; background: var(--red); }
@keyframes ondePulse { 0% { box-shadow: 0 0 0 0 rgba(255,0,36,.55); } 70%, 100% { box-shadow: 0 0 0 7px rgba(255,0,36,0); } }

/* capinhas flutuando nas laterais (parallax) */
.onde-deco { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.tk-case { position: absolute; width: 30px; height: 52px; border-radius: 9px; border: 2px solid rgba(255,0,36,.16); will-change: transform; animation: tkFloat 6s ease-in-out infinite; }
.tk-case::after { content: ''; position: absolute; top: 7px; left: 7px; width: 8px; height: 8px; border-radius: 50%; border: 2px solid rgba(255,0,36,.16); }
.tk-case:nth-child(even) { animation-duration: 7.5s; animation-delay: .8s; }
.tk-case:nth-child(3n) { animation-duration: 8.5s; animation-delay: 1.4s; }
.tk-jp { position: absolute; font-size: 38px; font-weight: 800; color: rgba(255,0,36,.14); will-change: transform; animation: tkFloatJp 7s ease-in-out infinite; }
.tk-jp:nth-child(odd) { animation-duration: 8.5s; animation-delay: 1s; }
@keyframes tkFloat { 0%, 100% { translate: 0 0; rotate: -6deg; } 50% { translate: 0 -16px; rotate: 6deg; } }
@keyframes tkFloatJp { 0%, 100% { translate: 0 0; } 50% { translate: 0 -14px; } }
@media (max-width: 1180px) { .onde-deco { display: none; } }

/* foto destaque */
.onde-photo { background: #f1f1f3; }
.onde-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.onde-photo:hover img { transform: scale(1.04); }
.onde-photo-ov { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; background: linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,.05) 55%, transparent); }
.onde-kicker { font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.onde-kicker-light { color: rgba(255,255,255,.85); }
.onde-photo-t { font-size: clamp(26px, 2.6vw, 38px); font-weight: 800; letter-spacing: -1.4px; line-height: 1.08; color: #fff; margin-bottom: 22px; }
.onde-photo-btn { display: inline-flex; align-items: center; gap: 9px; align-self: flex-start; background: #fff; color: var(--black); font-size: 14px; font-weight: 800; padding: 13px 22px; border-radius: 999px; transition: transform .25s, box-shadow .25s; }
.onde-photo-btn svg { width: 17px; height: 17px; }
.onde-photo-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.25); }

/* cards numerados */
.onde-fcard { position: relative; background: #faf8f8; border: 1px solid var(--border); border-radius: 22px; padding: 26px 24px; overflow: hidden; transition: transform .3s cubic-bezier(.34,1.4,.64,1), box-shadow .3s; }
.onde-fcard:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(0,0,0,.08); }
.onde-fnum { position: absolute; top: 16px; right: 20px; font-size: 40px; font-weight: 800; color: rgba(255,0,36,.1); letter-spacing: -2px; }
.onde-fic { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 13px; background: rgba(255,0,36,.08); color: var(--red); margin-bottom: 16px; }
.onde-fic svg { width: 23px; height: 23px; }
.onde-fcard-t { font-size: 18px; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.onde-fcard-d { font-size: 13.5px; color: var(--gray); line-height: 1.55; }

/* bloco vermelho CTA */
.onde-cta { background: linear-gradient(135deg, #FF0024, #C30024); border-radius: 22px; padding: 38px 40px; display: flex; flex-direction: column; justify-content: center; }
.onde-cta-t { font-size: clamp(24px, 2.4vw, 34px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.1; color: #fff; margin-bottom: 14px; }
.onde-cta-d { font-size: 14.5px; color: rgba(255,255,255,.85); line-height: 1.6; max-width: 420px; margin-bottom: 24px; }
.onde-cta-btn { display: inline-flex; align-items: center; gap: 9px; align-self: flex-start; background: #fff; color: var(--red); font-size: 14px; font-weight: 800; padding: 13px 24px; border-radius: 999px; transition: transform .25s, box-shadow .25s; }
.onde-cta-btn svg { width: 17px; height: 17px; }
.onde-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.2); }

@media (max-width: 880px) {
  .onde-bento { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .onde-photo, .onde-cta { grid-column: 1 / 3 !important; grid-row: auto !important; }
  .onde-fcard { grid-area: auto !important; }
  .onde-photo { min-height: 300px; }
}
@media (max-width: 540px) {
  .onde-bento { grid-template-columns: 1fr; }
  .onde-photo, .onde-cta, .onde-fcard { grid-column: 1 / 2 !important; }
}

/* ── NOSSA TECNOLOGIA (light, foto full-bleed) ── */
#tecnologia { background: #fff; padding: 0; }
.tec-inner { max-width: none; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.tec-photo { position: relative; overflow: hidden; }
.tec-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 12%; display: block; }
.tec-content { padding: 108px 64px 108px 60px; align-self: center; }
.tec-kicker { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .14em; margin-bottom: 12px; }
.tec-title { font-size: clamp(26px,2.6vw,38px); font-weight: 800; letter-spacing: -1.4px; line-height: 1.12; color: var(--black); margin-bottom: 12px; max-width: 480px; }
.tec-desc { font-size: 14.5px; color: var(--gray); line-height: 1.6; max-width: 460px; margin-bottom: 20px; }
.tec-feats-label { font-size: 11px; font-weight: 700; color: var(--black); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 13px; }
.tec-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; }
.tec-feat { position: relative; padding-top: 11px; }
.tec-feat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.tec-feat-t { font-size: 13.5px; font-weight: 700; color: var(--black); line-height: 1.35; opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .55s cubic-bezier(.22,1,.36,1); }
.tec-feats.vis .tec-feat::before { transform: scaleX(1); }
.tec-feats.vis .tec-feat-t { opacity: 1; transform: translateY(0); }
.tec-feats.vis .tec-feat:nth-child(1)::before, .tec-feats.vis .tec-feat:nth-child(1) .tec-feat-t { transition-delay: .05s; }
.tec-feats.vis .tec-feat:nth-child(2)::before, .tec-feats.vis .tec-feat:nth-child(2) .tec-feat-t { transition-delay: .13s; }
.tec-feats.vis .tec-feat:nth-child(3)::before, .tec-feats.vis .tec-feat:nth-child(3) .tec-feat-t { transition-delay: .21s; }
.tec-feats.vis .tec-feat:nth-child(4)::before, .tec-feats.vis .tec-feat:nth-child(4) .tec-feat-t { transition-delay: .29s; }
.tec-feats.vis .tec-feat:nth-child(5)::before, .tec-feats.vis .tec-feat:nth-child(5) .tec-feat-t { transition-delay: .37s; }
.tec-feats.vis .tec-feat:nth-child(6)::before, .tec-feats.vis .tec-feat:nth-child(6) .tec-feat-t { transition-delay: .45s; }
.tec-btn { display: inline-flex; }
.tec-btn span { transition: transform .25s; display: inline-block; }
.tec-btn:hover span { transform: translateX(4px); }

/* ── HISTÓRIAS ── */
#historias { background: var(--white); }
.hist-head { margin-bottom: 32px; }
.hist-title { font-size: clamp(32px,3.5vw,52px); font-weight: 900; letter-spacing: -2px; }

/* Bento de histórias — galeria de posts reais */
.hist-bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.hb {
  position: relative; aspect-ratio: 3/4;
  border-radius: 18px; overflow: hidden; cursor: pointer; background: #ddd;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
}
.hb img, .hb video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.hb:hover img, .hb:hover video { transform: scale(1.05); }

/* ── FAQ ── */
#faq { background: var(--offwhite); }
.faq-wrap { max-width: 760px; }
/* ── EXPERIENCE ── */
#experience { background: #fff; }
.exp-top { display: grid; grid-template-columns: 1fr 1.1fr; align-items: stretch; }
.exp-left { padding: 92px 56px 92px max(56px, calc((100vw - 1280px) / 2 + 40px)); display: flex; flex-direction: column; justify-content: center; background: #F7F7F8; }
.exp-kicker { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--black); margin-bottom: 22px; }
.exp-kicker span { color: var(--red); }
.exp-title { font-size: clamp(34px, 4vw, 58px); font-weight: 800; letter-spacing: -2px; line-height: 1.04; margin-bottom: 24px; }
.exp-title .red { color: var(--red); }
.exp-title .muted { color: #b6b6ba; }
.exp-sub { font-size: 15px; color: var(--gray); line-height: 1.6; max-width: 340px; margin-bottom: 36px; }
.exp-btn { display: inline-flex; align-items: center; gap: 12px; align-self: flex-start; background: #111; color: #fff; padding: 16px 26px; border-radius: 10px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .15s, background .2s; }
.exp-btn:hover { background: #000; transform: translateY(-2px); }
.exp-btn-ico { color: var(--red); display: flex; }
.exp-btn-ico svg { width: 22px; height: 22px; }

.exp-right { position: relative; display: flex; align-items: center; justify-content: center; padding: 60px 40px; overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,.028) 1px, transparent 1px) 0 0 / 100% 30px,
    linear-gradient(90deg, rgba(0,0,0,.028) 1px, transparent 1px) 0 0 / 30px 100%,
    #fff; }
.exp-cases { position: relative; z-index: 2; width: 100%; max-width: 560px; height: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,.18)); }
.exp-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.exp-circle { position: absolute; top: 8%; left: 14%; width: 190px; height: 190px; animation: expSpin 26s linear infinite; }
.exp-circle text { font-size: 13px; font-weight: 700; letter-spacing: 2px; fill: #b0181a; text-transform: uppercase; }
.exp-ring { position: absolute; top: 50%; left: 50%; width: 460px; height: 460px; transform: translate(-50%, -50%); border: 1px dashed #d8d8dc; border-radius: 50%; }
.exp-cross { position: absolute; color: var(--red); font-weight: 400; font-size: 22px; opacity: .55; }
.exp-cross-1 { top: 16%; right: 12%; color: #c9c9cf; }
.exp-cross-2 { bottom: 14%; left: 9%; }
.exp-cross-3 { bottom: 24%; right: 8%; color: #c9c9cf; font-size: 16px; }
.exp-vlabel { position: absolute; right: 18px; top: 50%; transform: translateY(-50%) rotate(180deg); writing-mode: vertical-rl; font-size: 10px; font-weight: 800; letter-spacing: .3em; color: #c2c2c8; z-index: 2; }
@keyframes expSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Barra escura de features */
.exp-bar { display: grid; grid-template-columns: 1fr auto; }
.exp-feats { background: #0D0D0D; display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 2; margin-right: -44px; clip-path: polygon(0 0, calc(100% - 44px) 0, 100% 50%, calc(100% - 44px) 100%, 0 100%); }
.exp-feat { position: relative; padding: 30px 28px; border-right: 1px solid #1c1c1c; }
.exp-feat:last-child { border-right: none; }
.exp-feat-ic { color: var(--red); display: block; margin-bottom: 16px; }
.exp-feat-ic svg { width: 26px; height: 26px; }
.exp-feat-t { color: #fff; font-size: 14px; font-weight: 700; line-height: 1.3; margin-bottom: 18px; }
.exp-feat-arr { color: #fff; display: block; }
.exp-feat-arr svg { width: 18px; height: 18px; }
.exp-quote { background: #F7F7F8; display: flex; align-items: center; gap: 14px; padding: 26px 40px 26px 68px; min-width: 320px; }
.exp-quote-av { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.exp-quote-t { font-size: 15px; font-weight: 700; line-height: 1.35; color: var(--black); }
.exp-quote-t .red { color: var(--red); }

#faq { background: var(--offwhite); padding: 0; }
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.faq-content { padding: 84px 56px; align-self: center; padding-left: max(56px, calc((100vw - 1280px) / 2 + 40px)); }
.faq-photo { overflow: hidden; }
.faq-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 19px 0; font-size: 14.5px; font-weight: 600; cursor: pointer; user-select: none; gap: 16px; }
.faq-ico { font-size: 20px; color: var(--red); font-weight: 300; flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a { font-size: 13.5px; color: #777; line-height: 1.65; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s; }
.faq-item.open .faq-a { max-height: 120px; padding-bottom: 18px; }

/* ── CTA FINAL ── */
#cta {
  background: var(--black);
  padding: 72px 40px;
  position: relative;
  overflow: hidden;
}
.cta-bars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px) 0 0 / 100% 34px,
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px) 0 0 / 34px 100%;
}
.cta-bars::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -45%; height: 90%;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,0,36,.5), transparent 62%);
}
.cta-scan {
  position: absolute; left: 0; right: 0; bottom: 0; height: 150px;
  background: linear-gradient(to top, rgba(255,0,36,.4), rgba(255,0,36,.06) 45%, transparent);
  border-top: 2px solid rgba(255,70,70,.9);
  box-shadow: 0 0 26px 5px rgba(255,0,36,.55);
  will-change: transform, opacity;
  animation: ctaScan 4.8s cubic-bezier(.45,0,.55,1) infinite;
}
@keyframes ctaScan {
  0%   { transform: translateY(110%); opacity: 0; }
  14%  { opacity: 1; }
  86%  { opacity: 1; }
  100% { transform: translateY(-280%); opacity: 0; }
}
/* mascote final — medalhão na borda do CTA */
.cta-mascot { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); z-index: 3; width: clamp(126px, 14vw, 162px); height: clamp(126px, 14vw, 162px); animation: ctaMascotBob 3.6s ease-in-out infinite; }
.cta-mascot-ring { position: absolute; inset: 0; border-radius: 50%; overflow: hidden; background: radial-gradient(circle at 50% 34%, #ff3346 0%, #E00A26 58%, #A80019 100%); box-shadow: 0 22px 48px rgba(255,0,36,.4), inset 0 2px 0 rgba(255,255,255,.25), inset 0 0 0 5px rgba(255,255,255,.14); }
.cta-mascot-ring img { position: absolute; left: 50%; bottom: -12%; width: 118%; transform: translateX(-50%); filter: drop-shadow(0 6px 10px rgba(0,0,0,.28)); }
.cta-mascot::after { content: ''; position: absolute; inset: -10px; border-radius: 50%; border: 2px dashed rgba(255,255,255,.3); animation: ctaMascotSpin 16s linear infinite; }
@keyframes ctaMascotSpin { to { transform: rotate(360deg); } }
@keyframes ctaMascotBob { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, -58%); } }
@media (prefers-reduced-motion: reduce) { .cta-mascot, .cta-mascot::after { animation: none; } }

.cta-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-title { font-size: clamp(24px,3vw,44px); font-weight: 900; letter-spacing: -2px; color: #fff; line-height: 1.08; }
.cta-sub { font-size: 14px; color: rgba(255,255,255,.65); margin-top: 8px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.btn-white { background: #fff; color: var(--red); padding: 12px 24px; border-radius: 6px; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; transition: transform .15s, box-shadow .2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,.4); color: #fff; padding: 11px 20px; border-radius: 6px; font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: border-color .2s; }
.btn-outline-white:hover { border-color: #fff; }

/* ── FOOTER ── */
footer { background: #fff; border-top: 1px solid var(--border); padding: 56px 40px 28px; }
.foot-inner { max-width: 1280px; margin: 0 auto; }
.foot-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 2fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid var(--border); }
.foot-logo { display: inline-block; margin-bottom: 14px; }
.foot-logo img { height: 30px; width: auto; display: block; }
.foot-tag { font-size: 12.5px; color: var(--gray); margin-bottom: 20px; line-height: 1.5; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 36px; height: 36px; border-radius: 9px; background: #f3f3f5; color: var(--black); display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; }
.foot-social a svg { width: 17px; height: 17px; }
.foot-social a:hover { background: var(--red); color: #fff; }
.foot-col-t { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--black); margin-bottom: 14px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-col ul a { font-size: 13px; color: var(--gray); transition: color .2s; }
.foot-col ul a:hover { color: var(--red); }
.foot-nl p { font-size: 13px; color: var(--gray); line-height: 1.55; margin-bottom: 14px; }
.nl-form { display: flex; }
.nl-input { flex: 1; background: #f7f7f8; border: 1px solid var(--border); border-right: none; color: var(--black); padding: 10px 12px; font-size: 13px; border-radius: 8px 0 0 8px; outline: none; font-family: var(--font); }
.nl-input::placeholder { color: #aaa; }
.nl-input:focus { border-color: var(--red); }
.nl-btn { background: var(--red); border: none; color: #fff; padding: 10px 15px; border-radius: 0 8px 8px 0; cursor: pointer; font-size: 15px; transition: background .2s; }
.nl-btn:hover { background: #C30024; }
.foot-bot { display: flex; justify-content: space-between; align-items: center; gap: 16px 24px; flex-wrap: wrap; padding-top: 22px; font-size: 12px; color: #999; }
.foot-bot a { color: #999; transition: color .2s; }
.foot-bot a:hover { color: var(--black); }
.foot-bot-links { display: flex; gap: 18px; }
.foot-sinnapse { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: #999; }
.foot-sinnapse img { height: 15px; width: auto; display: block; opacity: .95; }
.foot-sinnapse:hover { color: var(--black); }

/* ── TOKBOT (Yuki IA) ── */
.tokbot-launcher {
  position: fixed; right: 26px; bottom: 26px; z-index: 1000;
  display: flex; align-items: center; gap: 0;
  background: #fff; border: none; border-radius: 999px;
  padding: 6px; cursor: pointer;
  box-shadow: 0 12px 34px rgba(0,0,0,.22);
  transition: transform .25s cubic-bezier(.34,1.4,.64,1), box-shadow .25s;
}
.tokbot-launcher:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(255,0,36,.28); }
.tokbot-launcher img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; position: relative; z-index: 2; }
.tokbot-pulse { position: absolute; left: 6px; top: 6px; width: 54px; height: 54px; border-radius: 50%; background: var(--red); z-index: 1; animation: tokbotPulse 2.2s ease-out infinite; }
.tokbot-dot { position: absolute; right: 8px; bottom: 8px; width: 13px; height: 13px; border-radius: 50%; background: #21c45a; border: 2.5px solid #fff; z-index: 3; }
.tokbot-tag { max-width: 0; overflow: hidden; white-space: nowrap; font-size: 13px; font-weight: 600; color: var(--black); transition: max-width .35s ease, padding .35s ease; }
.tokbot-tag strong { font-weight: 800; }
.tokbot-tag-ia { background: var(--red); color: #fff; font-size: 10px; font-weight: 800; padding: 2px 6px; border-radius: 6px; margin-left: 3px; }
.tokbot-launcher:hover .tokbot-tag { max-width: 220px; padding: 0 16px 0 12px; }
@keyframes tokbotPulse { 0% { transform: scale(1); opacity: .5; } 70%, 100% { transform: scale(1.5); opacity: 0; } }

.tokbot-modal { position: fixed; inset: 0; z-index: 1001; display: none; }
.tokbot-modal.open { display: block; }
.tokbot-backdrop { position: absolute; inset: 0; background: rgba(8,8,10,.6); backdrop-filter: blur(6px); animation: tokbotFade .3s ease both; }
.tokbot-panel {
  position: absolute; right: 26px; bottom: 26px; width: 380px; max-width: calc(100vw - 36px);
  background: #131316; border: 1px solid #26262c; border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  display: flex; flex-direction: column; max-height: min(640px, calc(100vh - 52px));
  animation: tokbotPop .42s cubic-bezier(.34,1.4,.64,1) both;
}
.tokbot-aura { position: absolute; top: -60px; left: -40px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(255,0,36,.45), transparent 65%); pointer-events: none; }
.tokbot-close { position: absolute; top: 14px; right: 14px; z-index: 5; width: 32px; height: 32px; border-radius: 50%; border: none; background: rgba(255,255,255,.08); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.tokbot-close:hover { background: rgba(255,255,255,.18); }
.tokbot-close svg { width: 15px; height: 15px; }

.tokbot-header { position: relative; display: flex; align-items: center; gap: 12px; padding: 20px 20px 16px; border-bottom: 1px solid #222228; }
.tokbot-ava-wrap { position: relative; }
.tokbot-ava { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--red); }
.tokbot-name { color: #fff; font-size: 16px; font-weight: 800; display: flex; align-items: center; gap: 7px; }
.tokbot-badge { background: linear-gradient(135deg,#ff3b3c,var(--red)); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .06em; padding: 2px 6px; border-radius: 5px; }
.tokbot-role { color: #8a8a93; font-size: 11.5px; margin-top: 2px; display: flex; align-items: center; gap: 6px; }
.tokbot-online { width: 7px; height: 7px; border-radius: 50%; background: #21c45a; box-shadow: 0 0 0 0 rgba(33,196,90,.5); animation: tokbotBlink 1.8s ease-out infinite; }
.tokbot-xp { margin-left: auto; align-self: flex-start; font-size: 9px; font-weight: 800; letter-spacing: .08em; color: #ffd36b; background: rgba(255,211,107,.12); border: 1px solid rgba(255,211,107,.3); padding: 3px 7px; border-radius: 6px; }

.tokbot-body { flex: 1; overflow-y: auto; padding: 20px; min-height: 220px; }
.tokbot-chat { display: flex; flex-direction: column; gap: 14px; }
.tokbot-msg { background: #1d1d22; color: #e6e6ea; font-size: 13.5px; line-height: 1.5; padding: 14px 16px; border-radius: 4px 16px 16px 16px; max-width: 88%; }
.tokbot-msg strong { color: #fff; }
.tokbot-spark { display: inline-flex; color: var(--red); margin-right: 4px; vertical-align: -2px; }
.tokbot-spark svg { width: 15px; height: 15px; }
.tokbot-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.tokbot-chips button { background: #1d1d22; border: 1px solid #2c2c33; color: #cfcfd6; font-size: 12px; font-weight: 600; padding: 8px 13px; border-radius: 999px; cursor: pointer; transition: all .2s; font-family: var(--font); }
.tokbot-chips button:hover { border-color: var(--red); color: #fff; background: #25181a; }

/* Building stage */
.tokbot-build { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 12px 0; }
.tokbot-phone { position: relative; width: 168px; height: 340px; border-radius: 26px; overflow: hidden; background: #0c0c0e; border: 2px solid #2a2a31; box-shadow: 0 18px 40px rgba(0,0,0,.5); }
.tokbot-phone-art { position: absolute; inset: 0; }
.tokbot-phone-scan { position: absolute; left: 0; right: 0; height: 56px; top: -56px; background: linear-gradient(to bottom, transparent, rgba(255,0,36,.55), transparent); box-shadow: 0 0 22px 5px rgba(255,0,36,.5); animation: tokbotScan 1.5s linear infinite; }
.tokbot-status { color: #b9b9c2; font-size: 13px; font-weight: 600; min-height: 18px; text-align: center; }
.tokbot-status .red { color: var(--red); }
.tokbot-progress { width: 180px; height: 5px; border-radius: 4px; background: #26262d; overflow: hidden; }
.tokbot-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg,#ff3b3c,var(--red)); border-radius: 4px; transition: width .3s ease; }

/* Result stage */
.tokbot-result { display: flex; flex-direction: column; align-items: center; gap: 16px; animation: tokbotFade .4s ease both; }
.tokbot-result .tokbot-phone { border-color: #3a3a43; }
.tokbot-result-cap { color: #fff; font-size: 14px; font-weight: 700; text-align: center; }
.tokbot-result-cap span { color: #8a8a93; font-weight: 500; font-size: 12.5px; display: block; margin-top: 3px; }
.tokbot-thumbs { display: flex; gap: 8px; justify-content: center; }
.tokbot-thumb { width: 46px; height: 60px; border-radius: 8px; overflow: hidden; border: 2px solid #2a2a31; background: none; cursor: pointer; padding: 0; transition: border-color .2s; }
.tokbot-thumb.on { border-color: var(--red); }
.tokbot-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tokbot-result-btns { display: flex; gap: 10px; width: 100%; }
.tokbot-result-btns button { flex: 1; padding: 13px; border-radius: 12px; font-size: 12.5px; font-weight: 800; letter-spacing: .03em; cursor: pointer; border: none; font-family: var(--font); transition: all .2s; }
.tokbot-btn-primary { background: var(--red); color: #fff; }
.tokbot-btn-primary:hover { background: #C30024; transform: translateY(-1px); }
.tokbot-btn-ghost { background: transparent; border: 1px solid #34343c !important; color: #cfcfd6; }
.tokbot-btn-ghost:hover { border-color: #fff !important; color: #fff; }

/* phone art interno */
.tp-blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .9; }
.tp-word { position: absolute; left: 14px; right: 14px; font-weight: 900; line-height: 1; letter-spacing: -1px; }
.tp-logo { position: absolute; bottom: 14px; left: 0; right: 0; text-align: center; font-size: 10px; font-weight: 800; letter-spacing: 1px; opacity: .8; }

.tokbot-input { display: flex; gap: 8px; padding: 14px 16px; border-top: 1px solid #222228; background: #131316; }
.tokbot-input input { flex: 1; background: #1d1d22; border: 1px solid #2c2c33; border-radius: 12px; color: #fff; font-size: 13.5px; padding: 12px 14px; outline: none; font-family: var(--font); transition: border-color .2s; }
.tokbot-input input::placeholder { color: #6a6a73; }
.tokbot-input input:focus { border-color: var(--red); }
.tokbot-send { width: 44px; flex-shrink: 0; border: none; border-radius: 12px; background: var(--red); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, transform .15s; }
.tokbot-send:hover { background: #C30024; transform: translateY(-1px); }
.tokbot-send svg { width: 19px; height: 19px; }

@keyframes tokbotPop { from { opacity: 0; transform: translateY(30px) scale(.94); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes tokbotFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes tokbotScan { to { top: 340px; } }
@keyframes tokbotBlink { 0% { box-shadow: 0 0 0 0 rgba(33,196,90,.5); } 70%, 100% { box-shadow: 0 0 0 6px rgba(33,196,90,0); } }

@media (max-width: 480px) {
  .tokbot-panel { right: 8px; left: 8px; bottom: 8px; width: auto; }
}

/* ── GATILHOS: balão Yuki + exit-intent ── */
.yuki-bubble {
  position: fixed; right: 26px; bottom: 96px; z-index: 999;
  width: 250px; background: #fff; border-radius: 16px 16px 4px 16px;
  padding: 16px 16px 14px; box-shadow: 0 16px 40px rgba(0,0,0,.22);
  opacity: 0; transform: translateY(14px) scale(.96); pointer-events: none;
  transition: opacity .35s ease, transform .35s cubic-bezier(.34,1.4,.64,1);
}
.yuki-bubble.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.yuki-bubble-x { position: absolute; top: 8px; right: 8px; width: 24px; height: 24px; border: none; background: #f1f1f3; border-radius: 50%; color: #888; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.yuki-bubble-x:hover { background: #e4e4e8; }
.yuki-bubble-x svg { width: 11px; height: 11px; }
.yuki-bubble-t { font-size: 13.5px; line-height: 1.45; color: var(--black); margin-bottom: 13px; }
.yuki-bubble-t strong { font-weight: 800; }
.yuki-bubble-cta { width: 100%; background: var(--red); color: #fff; border: none; border-radius: 10px; padding: 11px; font-size: 12.5px; font-weight: 800; letter-spacing: .03em; cursor: pointer; transition: background .2s; font-family: var(--font); }
.yuki-bubble-cta:hover { background: #C30024; }

.exit-pop { position: fixed; inset: 0; z-index: 1002; display: none; }
.exit-pop.open { display: flex; align-items: center; justify-content: center; padding: 20px; }
.exit-back { position: absolute; inset: 0; background: rgba(8,8,10,.55); backdrop-filter: blur(4px); animation: tokbotFade .3s ease both; }
.exit-card {
  position: relative; z-index: 1;
  width: 440px; max-width: calc(100vw - 36px); background: #fff; border-radius: 22px;
  padding: 40px 36px 34px; text-align: center; box-shadow: 0 40px 90px rgba(0,0,0,.4);
  animation: tokbotPop .42s cubic-bezier(.34,1.4,.64,1) both;
}
.exit-x { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border: none; background: #f1f1f3; border-radius: 50%; color: #888; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.exit-x:hover { background: #e4e4e8; }
.exit-x svg { width: 14px; height: 14px; }
.exit-kicker { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.exit-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; color: var(--black); margin-bottom: 8px; }
.exit-sub { font-size: 14px; color: var(--gray); margin-bottom: 26px; }
.exit-opts { display: flex; flex-direction: column; gap: 12px; }
.exit-opt { display: flex; align-items: center; gap: 14px; text-align: left; background: #fff; border: 1.5px solid var(--border); border-radius: 14px; padding: 14px 16px; cursor: pointer; transition: all .2s; font-family: var(--font); }
.exit-opt:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255,0,36,.14); }
.exit-opt-ic { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.exit-opt-yuki img { width: 100%; height: 100%; object-fit: cover; }
.exit-opt-pin { background: rgba(255,0,36,.1); color: var(--red); }
.exit-opt-pin svg { width: 22px; height: 22px; }
.exit-opt-tx { flex: 1; display: flex; flex-direction: column; }
.exit-opt-tx strong { font-size: 14.5px; font-weight: 800; color: var(--black); }
.exit-opt-tx small { font-size: 12px; color: var(--gray); margin-top: 2px; }
.exit-opt-arr { color: var(--red); display: flex; }
.exit-opt-arr svg { width: 18px; height: 18px; }

/* ── PILHA DE ATALHOS FLUTUANTES (expansível) ── */
.fab-stack { position: fixed; right: 22px; bottom: 22px; z-index: 1000; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.fab-main {
  position: relative; width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(255,0,36,.4); -webkit-tap-highlight-color: transparent;
  animation: unitBob 3s ease-in-out infinite;
}
.fab-ring { position: absolute; inset: 0; border-radius: 50%; background: var(--red); opacity: .5; animation: unitPing 2.4s cubic-bezier(0,0,.2,1) infinite; z-index: 0; }
.fab-ic { width: 27px; height: 27px; position: absolute; z-index: 2; transition: opacity .25s, transform .3s; }
.fab-ic-close { opacity: 0; transform: rotate(-90deg); }
.fab-stack.open .fab-main { animation: none; }
.fab-stack.open .fab-ring { display: none; }
.fab-stack.open .fab-ic-open { opacity: 0; transform: rotate(90deg); }
.fab-stack.open .fab-ic-close { opacity: 1; transform: rotate(0); }
/* ações */
.fab-action {
  display: inline-flex; align-items: center; gap: 12px; cursor: pointer; border: none; background: transparent; font-family: var(--font);
  opacity: 0; transform: translateY(12px) scale(.9); pointer-events: none;
  transition: opacity .25s ease, transform .3s cubic-bezier(.34,1.4,.64,1);
}
.fab-stack.open .fab-action { opacity: 1; transform: none; pointer-events: auto; }
.fab-stack.open .fab-unit { transition-delay: .04s; }
.fab-stack.open .fab-wa { transition-delay: .09s; }
.fab-action-label { background: #fff; color: var(--black); font-size: 13px; font-weight: 700; padding: 9px 14px; border-radius: 999px; box-shadow: 0 8px 22px rgba(0,0,0,.16); white-space: nowrap; }
.fab-action-ic { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.2); }
.fab-action-ic svg { width: 24px; height: 24px; }
.fab-wa .fab-action-ic { background: #25D366; }
.fab-unit .fab-action-ic { background: var(--red); }
@keyframes unitPing { 0% { transform: scale(1); opacity: .5; } 80%, 100% { transform: scale(1.9); opacity: 0; } }
@keyframes unitBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* modal da unidade */
.unit-modal { position: fixed; inset: 0; z-index: 1003; display: none; }
.unit-modal.open { display: flex; align-items: center; justify-content: center; padding: 20px; }
.unit-back { position: absolute; inset: 0; background: rgba(8,8,10,.55); backdrop-filter: blur(4px); animation: tokbotFade .3s ease both; }
.unit-card {
  position: relative; z-index: 1; width: 420px; max-width: calc(100vw - 32px); max-height: calc(100vh - 40px); overflow-y: auto;
  background: #fff; border-radius: 22px; box-shadow: 0 40px 90px rgba(0,0,0,.4);
  animation: tokbotPop .42s cubic-bezier(.34,1.4,.64,1) both;
}
.unit-x { position: absolute; top: 14px; right: 14px; z-index: 3; width: 34px; height: 34px; border: none; background: rgba(255,255,255,.9); border-radius: 50%; color: #333; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,.18); }
.unit-x svg { width: 15px; height: 15px; }
.unit-photo { position: relative; height: 190px; border-radius: 22px 22px 0 0; overflow: hidden; background: #eee; }
.unit-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.unit-badge { position: absolute; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.94); backdrop-filter: blur(6px); color: var(--black); font-size: 12px; font-weight: 800; letter-spacing: .02em; padding: 8px 13px; border-radius: 999px; box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.unit-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(255,0,36,.55); animation: ondePulse 1.6s ease-out infinite; }
.unit-body { padding: 22px 24px 24px; }
.unit-name { font-size: 21px; font-weight: 800; letter-spacing: -.6px; color: var(--black); margin-bottom: 3px; }
.unit-city { font-size: 13.5px; color: var(--gray); margin-bottom: 20px; }
.unit-rows { display: flex; flex-direction: column; gap: 15px; margin-bottom: 22px; }
.unit-row { display: flex; gap: 13px; align-items: flex-start; }
.unit-ic { flex-shrink: 0; width: 38px; height: 38px; border-radius: 11px; background: rgba(255,0,36,.08); color: var(--red); display: flex; align-items: center; justify-content: center; }
.unit-ic svg { width: 19px; height: 19px; }
.unit-row div { display: flex; flex-direction: column; }
.unit-row strong { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); margin-bottom: 2px; }
.unit-row span { font-size: 14.5px; font-weight: 600; color: var(--black); line-height: 1.4; white-space: pre-line; }
.unit-actions { display: flex; flex-direction: column; gap: 10px; }
.unit-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 14px; border-radius: 12px; font-size: 14.5px; font-weight: 800; transition: transform .2s, box-shadow .2s, background .2s; }
.unit-btn svg { width: 19px; height: 19px; }
.unit-btn-wa { background: #25D366; color: #fff; }
.unit-btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37,211,102,.4); }
.unit-btn-map { background: #f1f1f3; color: var(--black); }
.unit-btn-map:hover { background: #e6e6ea; }
@media (max-width: 560px) {
  .fab-stack { right: 16px; bottom: 16px; }
  .fab-main { width: 54px; height: 54px; }
  .fab-ic { width: 24px; height: 24px; }
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.reveal.vis { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  /* NAV mobile (hambúrguer) */
  nav { padding: 0 18px; }
  .nav-burger { display: flex; }
  .nav-menu {
    position: fixed; top: 60px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: 0 22px 40px rgba(0,0,0,.12);
    flex-direction: column; align-items: stretch;
    padding: 12px 18px 20px; gap: 0;
    transform: translateY(-16px); opacity: 0; pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
    max-height: calc(100vh - 60px); overflow-y: auto;
  }
  .nav-toggle:checked ~ .nav-menu { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links { flex-direction: column; gap: 0; margin: 0 0 12px; }
  .nav-links a { display: block; padding: 14px 6px; font-size: 16px; border-bottom: 1px solid var(--border); }
  .nav-links a.active { border-bottom: 1px solid var(--border); color: var(--red); padding-bottom: 14px; }
  .nav-cta { display: block; text-align: center; padding: 15px; font-size: 14px; border-radius: 12px; }

  /* HERO — text-first no mobile */
  #hero { min-height: auto; padding: 0 20px; }
  .hero-inner { flex-direction: column; min-height: auto; }
  .hero-layer-modelo, .hero-left-rail, .hero-watermark, .hero-time-card, .hero-layer-blob { display: none; }
  .hero-content { padding: 96px 0 56px; max-width: 100%; }
  .hero-title { font-size: clamp(30px, 8.5vw, 44px); letter-spacing: -1.2px; }
  .hero-line1 { white-space: normal; }
  .hero-actions { flex-wrap: wrap; }

  /* Seções: padding lateral menor */
  .sec { padding-left: 18px; padding-right: 18px; }
  #onde, #tecnologia, #cta, #faq, #estilos, footer,
  .sec-inner, .como-wrap, .exp-left { padding-left: 20px; padding-right: 20px; }
  #onde, #cta, #faq { padding-top: 56px; padding-bottom: 56px; }

  /* COMO FUNCIONA */
  #como.sec { padding-left: 18px; padding-right: 18px; }
  #como .sec-inner { padding: 32px 20px; }
  .como-layout { display: block; }
  .como-left { margin-bottom: 26px; }
  .como-headline br { display: none; }
  .como-steps-h { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* ESTILOS */
  .estilos-layout { display: block; }
  .estilos-head, .estilos-left { margin-bottom: 20px; }

  /* MÁQUINAS */
  .maq-wrap { grid-template-columns: 1fr; }
  .maq-sidebar { padding: 40px 20px; }
  .maq-map { min-height: 420px; height: 420px; }

  /* TECNOLOGIA */
  .tec-inner { grid-template-columns: 1fr; }
  .tec-photo { min-height: 320px; }

  /* EXPERIENCE */
  .exp-wrap, .exp-top { grid-template-columns: 1fr !important; }
  .exp-left { padding: 64px 20px; }
  .exp-right { padding: 40px 20px 56px; }
  .exp-cases { max-width: 360px; }
  .exp-bar { grid-template-columns: 1fr; }
  .exp-feats { margin-right: 0; clip-path: none; grid-template-columns: 1fr 1fr; }
  .exp-quote { padding: 24px 20px; min-width: 0; justify-content: center; }

  /* HISTÓRIAS */
  .hist-bento { grid-template-columns: 1fr 1fr; }

  /* FAQ */
  .faq-layout { grid-template-columns: 1fr; }
  .faq-photo { min-height: 280px; order: -1; }

  /* CTA */
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 22px; }

  /* FOOTER */
  .foot-top { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
}

@media (max-width: 560px) {
  .hist-bento { grid-template-columns: 1fr; }
  .exp-feats { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr; gap: 26px; }
  .onde-slider { aspect-ratio: 4/3; }
  .hero-actions .btn-red, .hero-actions .btn-find { width: 100%; justify-content: center; }
  .page-body { padding-left: 18px; padding-right: 18px; }
}

/* ── NOVO HERO (nh) ── */
#hero.nh { position: relative; min-height: 100vh; overflow: hidden; display: flex; align-items: center; padding: 70px 0 40px; background: #A50E1F; }
#hero.nh::before { content: none; }
#hero.nh::after { content: none; }
.nh-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; will-change: transform;
  background: #A50E1F url('../img/fundo.jpg?v=2') left center / cover no-repeat;
  filter: contrast(1.28) saturate(1.05); }

/* tipografia gigante TOK YOU */
.nh-bigtype { position: absolute; z-index: 1; right: 2%; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; line-height: .78; text-align: right; pointer-events: none;
  animation: nhTypeIn 1.1s cubic-bezier(.22,1,.36,1) .15s both; }
.nh-bigtype span { font-size: clamp(120px, 21vw, 340px); font-weight: 900; letter-spacing: -.02em; color: #fff; text-transform: uppercase; }

/* modelo */
.nh-model { position: absolute; z-index: 2; right: -1%; top: -4%; bottom: auto; height: 111%; width: 64%; pointer-events: none; will-change: transform; transition: transform .4s cubic-bezier(.2,.8,.3,1); }
.nh-model img { width: 100%; height: 100%; object-fit: contain; object-position: bottom center; display: block; filter: drop-shadow(0 24px 50px rgba(0,0,0,.4));
  animation: nhModelIn 1.1s cubic-bezier(.22,1,.36,1) .35s both; }

/* conteúdo */
.nh-inner { width: 100%; max-width: 1280px; margin: 0 auto; position: relative; z-index: 10; padding: 0 40px; }
.nh-content { max-width: 640px; animation: heroContentIn .9s cubic-bezier(.22,1,.36,1) .1s both; }
.nh-title { font-family: var(--font); font-size: clamp(46px, 6vw, 96px); font-weight: 900; line-height: .94; letter-spacing: -.035em; text-transform: uppercase; color: #fff; margin-bottom: 30px; }
.nh-line { display: block; overflow: hidden; padding-top: .18em; margin-top: -.14em; padding-bottom: .05em; }
.nh-line > span { display: block; transform: translateY(112%); animation: nhLineUp 1s cubic-bezier(.2,.9,.25,1) forwards; }
.nh-line:nth-child(1) > span { animation-delay: .12s; }
.nh-line:nth-child(2) > span { animation-delay: .24s; }
.nh-line:nth-child(3) > span { animation-delay: .36s; }
@keyframes nhLineUp { to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .nh-line > span { transform: none; animation: none; } }
.nh-sub { font-size: clamp(15px, 1.5vw, 19px); color: rgba(255,255,255,.82); line-height: 1.55; margin-bottom: 34px; }
.nh-sub b { color: #fff; font-weight: 800; }

.nh-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
.nh-btn { display: inline-flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 17px 30px; border-radius: 999px; transition: transform .2s, box-shadow .25s, background .2s, color .2s; }
.nh-btn svg { width: 19px; height: 19px; }
.nh-btn-fill { background: #fff; color: #A20F22; box-shadow: 0 14px 34px rgba(0,0,0,.24); position: relative; overflow: hidden; }
.nh-btn-fill::after { content: ''; position: absolute; top: 0; left: -70%; width: 45%; height: 100%; background: linear-gradient(105deg, transparent, rgba(162,15,34,.16), transparent); transform: skewX(-20deg); transition: left .65s cubic-bezier(.3,.7,.3,1); }
.nh-btn-fill:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(0,0,0,.32); }
.nh-btn-fill:hover::after { left: 130%; }
.nh-btn-ghost { background: transparent; color: #fff; border: 1.6px solid rgba(255,255,255,.55); }
.nh-btn-ghost:hover { background: #fff; color: #A20F22; border-color: #fff; }

.nh-trust { list-style: none; display: flex; gap: 40px; flex-wrap: wrap; }
.nh-trust li { display: flex; align-items: center; gap: 12px; }
.nh-trust svg { width: 26px; height: 26px; color: rgba(255,255,255,.85); flex-shrink: 0; }
.nh-trust b { display: block; font-size: 14px; font-weight: 800; color: #fff; }
.nh-trust span { display: block; font-size: 12.5px; color: rgba(255,255,255,.66); }

@keyframes nhTypeIn { from { opacity: 0; transform: translateY(-50%) scale(1.04); } to { opacity: 1; transform: translateY(-50%) scale(1); } }
@keyframes nhModelIn { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  #hero.nh { padding: 96px 0 48px; align-items: flex-start; min-height: auto; }
  .nh-bigtype { top: auto; bottom: 6%; transform: none; right: 3%; opacity: .16; animation: none; }
  .nh-bigtype span { font-size: 30vw; }
  .nh-model { height: 62%; right: -6%; opacity: .9; }
  .nh-content { max-width: 100%; position: relative; }
  .nh-title { font-size: clamp(38px, 12vw, 60px); }
  .nh-trust { gap: 20px 28px; }
}
@media (max-width: 560px) {
  .nh-inner { padding: 0 20px; }
  .nh-model { display: none; }
  .nh-bigtype { bottom: 2%; opacity: .12; }
  .nh-actions .nh-btn { width: 100%; justify-content: center; }
}


/* ── Tilt 3D colagem vira ── */
.vc { perspective: 700px; }
.vc img { will-change: transform; transition: transform .35s cubic-bezier(.2,.7,.3,1); transform-style: preserve-3d; }

/* ── FAQ cascata ── */
#faq .faq-item { transition: opacity .6s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
#faq.faq-hidden .faq-item { opacity: 0; transform: translateY(26px); }
#faq:not(.faq-hidden) .faq-item:nth-child(2) { transition-delay: .06s; }
#faq:not(.faq-hidden) .faq-item:nth-child(3) { transition-delay: .12s; }
#faq:not(.faq-hidden) .faq-item:nth-child(4) { transition-delay: .18s; }
#faq:not(.faq-hidden) .faq-item:nth-child(5) { transition-delay: .24s; }
#faq:not(.faq-hidden) .faq-item:nth-child(6) { transition-delay: .30s; }
#faq:not(.faq-hidden) .faq-item:nth-child(7) { transition-delay: .36s; }
#faq:not(.faq-hidden) .faq-item:nth-child(8) { transition-delay: .42s; }

/* ── PRELOADER ── */
#preloader { position: fixed; inset: 0; z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  background: radial-gradient(120% 120% at 50% 42%, #C31325 0%, #A50E1F 52%, #6d0916 100%);
  transition: transform 1s cubic-bezier(.76,0,.24,1), opacity .8s ease; }
#preloader.pre-done { transform: translateY(-101%); }
.pre-logo { width: clamp(56px, 7vw, 74px); height: auto; opacity: 0; animation: preLogoIn .8s ease .15s forwards; }
@keyframes preLogoIn { to { opacity: 1; transform: translateY(0); } }
.pre-stage { position: relative; width: clamp(180px, 24vw, 230px); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
/* aneis de energia girando */
.pre-ring { position: absolute; inset: 4%; border-radius: 50%; pointer-events: none; mix-blend-mode: screen;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255,255,255,0) 40deg, rgba(255,120,130,.5) 90deg, rgba(255,255,255,.92) 140deg, rgba(255,120,130,.45) 190deg, transparent 240deg, transparent 360deg);
  -webkit-mask: radial-gradient(closest-side, transparent 76%, #000 79%, #000 92%, transparent 96%);
          mask: radial-gradient(closest-side, transparent 76%, #000 79%, #000 92%, transparent 96%);
  animation: preSpin 3.6s linear infinite; }
.pre-ring2 { inset: -6%; opacity: .5; animation: preSpin 5.4s linear infinite reverse; }
@keyframes preSpin { to { transform: rotate(360deg); } }
.pre-num { position: absolute; inset: 0; font-family: var(--font); font-size: clamp(40px, 5vw, 58px); font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.03em; display: flex; align-items: center; justify-content: center; text-shadow: 0 0 26px rgba(0,0,0,.35); }
.pre-num em { font-style: normal; font-size: .45em; margin-left: 4px; opacity: .8; color: rgba(255,255,255,.75); }
.pre-bar { width: 200px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.2); overflow: hidden; }
.pre-bar i { display: block; height: 100%; background: #fff; box-shadow: 0 0 12px rgba(255,255,255,.6); transform-origin: left; transform: scaleX(0); }
.pre-label { font-size: 11px; font-weight: 700; letter-spacing: .34em; text-transform: uppercase; color: rgba(255,255,255,.7); }
body.preloading { overflow: hidden; }
/* segura as animações de entrada do hero até o preloader sair */
body.preloading .nh-line > span,
body.preloading .nh-content,
body.preloading .nh-model img { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .pre-ring { animation: none; } }

/* ── COLAGEM CINEMÁTICA (montagem no scroll + parallax + hover) ── */
.clg-track { position: relative; height: 260vh; background: #0a0a0a; }
.clg-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; background: #0a0a0a; }
.clg-stage { position: absolute; inset: 0; }
.clg-base, .clg-base-real, .clg-item { position: absolute; inset: 0; background: url('../img/reel-1.png') center / cover no-repeat; }
/* base = rascunho a lápis; a foto real "colore" por cima conforme o scroll */
.clg-base { background-image: url('../img/reel-sketch.jpg'); transform: scale(calc(1.05 + var(--bz, .12))); filter: brightness(calc(1 - var(--bd, .18))); will-change: transform, filter; }
.clg-base-real { opacity: var(--br, 0); transform: scale(calc(1.05 + var(--bz, .12))); will-change: opacity, transform; }
.clg-item { clip-path: var(--poly); cursor: pointer; --lift: 0px; --sc: 1;
  transform: translate3d(calc(var(--mx, 0) * var(--d, 1) * 1px + var(--fx, 0px)), calc(var(--my, 0) * var(--d, 1) * 1px + var(--lift) + var(--fy, 0px)), 0) rotate(var(--fr, 0deg)) scale(calc(var(--sc) * var(--fs, 1)));
  transition: transform .55s cubic-bezier(.2,.7,.25,1), filter .35s ease; will-change: transform; }
.clg-item:hover { --lift: -14px; --sc: 1.035; z-index: 6; filter: brightness(1.08) drop-shadow(0 30px 44px rgba(0,0,0,.65)); }
.clg-hero:hover { --lift: -18px; --sc: 1.05; }
.reel-overlay { opacity: var(--ov, 1); transition: opacity .5s ease; }
@media (pointer: coarse) { .clg-item { transition: none; } }
@media (max-width: 640px) { .clg-track { height: 200vh; } }
@media (prefers-reduced-motion: reduce) { .clg-track { height: 100vh; } .clg-item { transition: filter .3s; transform: none !important; } .clg-base { transform: scale(1.05); filter: none; } .clg-base-real { opacity: 1; } }

/* ── REEL FULLSCREEN (slideshow Ken Burns) ── */
.reel { position: relative; width: 100%; height: 100vh; overflow: hidden; background: #0a0a0a; }
.reel-slides { position: absolute; inset: 0; }
.reel-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.06); transition: opacity 1.2s ease; will-change: transform, opacity; }
.reel-slide.is-active { opacity: 1; }
/* efeitos alternados (Ken Burns) aplicados na entrada */
.reel-slide.is-active.fx-zin  { animation: reelZin 7s ease-out forwards; }
.reel-slide.is-active.fx-zout { animation: reelZout 7s ease-out forwards; }
.reel-slide.is-active.fx-pl   { animation: reelPl 7s ease-out forwards; }
.reel-slide.is-active.fx-pr   { animation: reelPr 7s ease-out forwards; }
@keyframes reelZin  { from { transform: scale(1.02); } to { transform: scale(1.16); } }
@keyframes reelZout { from { transform: scale(1.16); } to { transform: scale(1.03); } }
@keyframes reelPl   { from { transform: scale(1.14) translateX(2.5%); } to { transform: scale(1.14) translateX(-2.5%); } }
@keyframes reelPr   { from { transform: scale(1.14) translateX(-2.5%); } to { transform: scale(1.14) translateX(2.5%); } }
.reel-scrim { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(120% 100% at 50% 40%, transparent 40%, rgba(0,0,0,.28) 100%), linear-gradient(to bottom, rgba(0,0,0,.22), transparent 22%, transparent 74%, rgba(0,0,0,.4)); }
.reel-overlay { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.reel-corner { position: absolute; font-family: var(--font); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.9); text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.reel-tl { top: 28px; left: 40px; }
.reel-tr { top: 28px; right: 40px; }
.reel-cap { bottom: 92px; left: 40px; transition: opacity .5s; }
.reel-title { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font); font-weight: 900; font-size: clamp(56px, 13vw, 200px); letter-spacing: -.02em; line-height: .9; color: #fff; text-transform: uppercase; text-shadow: 0 6px 40px rgba(0,0,0,.35); white-space: nowrap; }
/* timeline segmentada embaixo */
.reel-timeline { position: absolute; bottom: 34px; left: 40px; right: 40px; display: flex; gap: 6px; align-items: center; }
.reel-tick { position: relative; height: 3px; border-radius: 2px; background: rgba(255,255,255,.3); flex: 1; overflow: hidden; }
.reel-tick i { position: absolute; inset: 0; background: #fff; transform-origin: left; transform: scaleX(0); }
.reel-tick.done i { transform: scaleX(1); }
.reel-tick.active i { animation: reelTick 5s linear forwards; }
@keyframes reelTick { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.reel-tick-num { font-family: var(--font); font-size: 10px; font-weight: 700; color: rgba(255,255,255,.75); letter-spacing: .1em; margin: 0 4px; }
@media (max-width: 640px) {
  .reel-tl, .reel-tr { top: 18px; font-size: 10px; }
  .reel-tl, .reel-cap, .reel-timeline { left: 20px; }
  .reel-tr, .reel-timeline { right: 20px; }
  .reel-cap { bottom: 74px; }
}
@media (prefers-reduced-motion: reduce) { .reel-slide.is-active { animation: none !important; } .reel-tick.active i { animation: none; transform: scaleX(1); } }

/* ── Barra de progresso do scroll ── */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 300; transform-origin: left; transform: scaleX(0); background: linear-gradient(90deg, var(--red), #ff5a12); pointer-events: none; will-change: transform; }

/* ── EXPRESSÃO (objetos orbitando) ── */
.expr { position: relative; overflow: hidden; min-height: 112vh; display: flex; align-items: center; justify-content: center; padding: 90px 40px; text-align: center;
  background: radial-gradient(46% 58% at 50% 44%, #FBD3D8 0%, #F7E4E2 46%, #F5EEE7 100%); }
.expr-inner { position: relative; z-index: 5; max-width: 720px; margin: 0 auto; }
.expr-eyebrow { display: inline-block; font-size: clamp(14px, 1.6vw, 22px); font-weight: 800; letter-spacing: .24em; text-transform: uppercase; color: #111; margin-bottom: 6px; }
.expr-h { font-family: var(--font); font-weight: 900; letter-spacing: -.03em; line-height: .92; color: #111; text-transform: none; }
.expr-l0 { display: block; font-size: clamp(34px, 5vw, 70px); }
.expr-block { display: inline-block; background: transparent; padding: .04em .22em .1em; margin-top: .06em; border-radius: 4px; position: relative; }
.expr-block::before { content: ''; position: absolute; inset: 0; background: var(--red); border-radius: 4px; transform-origin: left; transition: transform .75s cubic-bezier(.65,.05,.2,1); }
.expr-block > span { position: relative; z-index: 1; transition: opacity .45s ease .5s, transform .6s cubic-bezier(.2,.8,.2,1) .5s; }
.expr-l0 { transition: opacity .5s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
#expressao.expr-hidden .expr-block::before { transform: scaleX(0); }
#expressao.expr-hidden .expr-block > span { opacity: 0; transform: translateY(16px); }
#expressao.expr-hidden .expr-l0 { opacity: 0; transform: translateY(24px); }
.expr-l1 { display: block; font-size: clamp(30px, 4.6vw, 64px); color: #fff; line-height: .98; }
.expr-l2 { display: block; font-size: clamp(40px, 6vw, 88px); color: #111; line-height: .96; }
.expr-em { font-size: .62em; }
.expr-p { font-size: clamp(15px, 1.6vw, 18px); color: #4b3b3d; line-height: 1.7; max-width: 560px; margin: 26px auto 0; }

/* objetos orbitando */
.expr-orbit { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.eo { --w: calc(112px * var(--s, 1)); position: absolute; top: 50%; left: 50%; width: var(--w); aspect-ratio: 1/1.7; margin: calc(var(--w) * -0.85) 0 0 calc(var(--w) / -2); will-change: transform; }
.eo img { width: 100%; height: 100%; display: block; }
/* capinhas = card limpo (sem moldura) */
.eo-case { border-radius: 20px; overflow: hidden; box-shadow: 0 16px 36px rgba(90,10,25,.20); }
.eo-case img { object-fit: cover; }
/* acessórios = recorte livre transparente */
.eo-obj { aspect-ratio: 1/1; margin-top: calc(var(--w) / -2); }
.eo-obj img { object-fit: contain; filter: drop-shadow(0 16px 26px rgba(90,10,25,.26)); }
/* cards de produto (foto em fundo preto) */
.eo-prod { overflow: hidden; border-radius: 18px; box-shadow: 0 18px 40px rgba(20,0,6,.34); }
.eo-prod img { object-fit: cover; }
.eo-prod-tall { aspect-ratio: 1/1.5; margin-top: calc(var(--w) * -0.75); }
.eo-prod-wide { aspect-ratio: 1/0.75; margin-top: calc(var(--w) * -0.375); }
@media (max-width: 900px) { .eo { --w: calc(70px * var(--s,1)); } .expr { min-height: 82vh; } }
@media (max-width: 560px) {
  .expr { min-height: 74vh; padding: 64px 20px; }
  .eo { --w: calc(46px * var(--s,1)); }
  /* menos poluído: esconde metade dos objetos no celular */
  .eo:nth-child(3), .eo:nth-child(6), .eo:nth-child(9), .eo:nth-child(11) { display: none; }
  .expr-l1 { font-size: clamp(26px, 8vw, 40px); }
}
@media (prefers-reduced-motion: reduce) { .eo { animation: none; } }

/* ── SUA HISTÓRIA VIRA CAPINHA ── */
.vira { position: relative; background: #F4F2ED url('../img/fundo-pessoas.png') center center / cover no-repeat; padding: 30px 40px 40px; overflow: hidden; }
.vira-canvas { position: relative; max-width: 1300px; margin: 0 auto; aspect-ratio: 1353 / 837; }

.vira-copy { position: absolute; left: 2%; top: 7%; width: 42%; z-index: 6; }
.vira-h { font-family: var(--font); font-size: clamp(30px, 5.6vw, 82px); font-weight: 900; line-height: .9; letter-spacing: -.03em; text-transform: uppercase; color: var(--black); }
.vira-serif { font-family: var(--font); font-weight: 900; font-style: normal; text-transform: uppercase; letter-spacing: -.03em; color: var(--red); }
.vira-p { font-size: clamp(12px, 1.35vw, 17px); color: #55535a; line-height: 1.65; margin: clamp(14px, 2vw, 28px) 0 clamp(16px, 2vw, 28px); max-width: 92%; }
.vira-p b { color: var(--black); font-weight: 800; }
.vira-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--red); color: #fff; font-size: clamp(11px, 1.1vw, 14px); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: clamp(11px,1.2vw,16px) clamp(18px,1.9vw,28px); border-radius: 10px; transition: transform .2s, box-shadow .25s, background .2s; position: relative; overflow: hidden; }
.vira-btn::after { content: ''; position: absolute; top: 0; left: -70%; width: 45%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-20deg); transition: left .65s cubic-bezier(.3,.7,.3,1); }
.vira-btn:hover::after { left: 130%; }
.vira-btn svg { width: 18px; height: 18px; }
.vira-btn:hover { transform: translateY(-2px); background: #C30024; box-shadow: 0 16px 34px rgba(255,0,36,.3); }


.vc { position: absolute; margin: 0; overflow: hidden; border-radius: 14px; background: #ddd; box-shadow: 0 26px 54px rgba(0,0,0,.16); will-change: transform, clip-path; clip-path: inset(0 0 0 0); transition: clip-path 1s cubic-bezier(.2,.8,.2,1); }
#vira.vira-hidden .vc { clip-path: inset(100% 0 0 0); }
#vira:not(.vira-hidden) .vc-main { transition-delay: 0s; }
#vira:not(.vira-hidden) .vc-tr { transition-delay: .15s; }
#vira:not(.vira-hidden) .vc-cat { transition-delay: .25s; }
#vira:not(.vira-hidden) .vc-sit { transition-delay: .35s; }
.vc img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* posições exatas do grid de referência */
.vc-main { left: 43%; top: 6%; width: 37%; height: 89%; border-radius: 16px; z-index: 3; }
.vc-tr   { left: 77%; top: 4%; width: 19.5%; height: 31%; z-index: 5; }
.vc-cat  { left: 7.5%; top: 71%; width: 19%; height: 27%; z-index: 4; }
.vc-sit  { left: 29.5%; top: 60%; width: 18%; height: 26%; z-index: 4; }

@media (max-width: 820px) {
  .vira { padding: 30px 20px 44px; }
  .vira-canvas { aspect-ratio: auto; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
  .vira-copy { position: static; width: 100%; margin-bottom: 22px; }
  .vira-h { font-size: clamp(36px, 11vw, 60px); }
  .vira-p { font-size: 15px; max-width: 100%; }
  .vira-squig { display: none; }
  /* colagem vira grid 2 colunas compacto */
  .vc { position: relative !important; left: auto !important; top: auto !important; width: calc(50% - 5px) !important; height: auto !important; aspect-ratio: 3/4; transform: none !important; }
  .vc-tr { aspect-ratio: 4/3; }
}

/* ── MARQUEE BOLD ── */
.mq { background: #0a0a0a; color: #fff; padding: 40px 0; overflow: hidden; }
.mq-row { overflow: hidden; will-change: transform; }
.mq-row + .mq-row { margin-top: 6px; }
.mq-track { display: inline-flex; align-items: center; white-space: nowrap; will-change: transform; }
.mq-track span { font-size: clamp(30px, 5vw, 74px); font-weight: 900; letter-spacing: -2px; line-height: 1.32; text-transform: uppercase; padding: 0 22px; }
.mq-track .mq-out { color: transparent; -webkit-text-stroke: 1.6px rgba(255,255,255,.85); text-stroke: 1.6px rgba(255,255,255,.85); }
.mq-track .mq-jp { color: var(--red); font-size: clamp(24px, 3.6vw, 54px); font-weight: 800; letter-spacing: 0; padding: 0 16px; }
.mq-a { animation: mqL 26s linear infinite; }
.mq-b { animation: mqR 30s linear infinite; }
@keyframes mqL { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }
@keyframes mqR { from { transform: translateX(-33.333%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { .mq-a, .mq-b { animation: none; } }

/* ── LEQUE DE CAPINHAS ── */
.fan { background: #F4F2ED; padding: 72px 40px 96px; overflow: hidden; }
.fan-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.fan-eyebrow { font-size: 12.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-bottom: 34px; }
.fan-arc { position: relative; width: 100%; height: 620px; margin: 0 auto; }
.fan-case { position: absolute; bottom: 120px; left: 50%; width: 238px; aspect-ratio: 1/2.05; border-radius: 32px; overflow: hidden; background: #0d0d0d; border: 5px solid #0d0d0d; box-shadow: 0 26px 46px rgba(0,0,0,.24); transform-origin: 50% 90%; transform: translate(calc(-50% + var(--x)), var(--y)) rotate(var(--r)); transition: transform .55s cubic-bezier(.2,.85,.25,1), box-shadow .4s; will-change: transform; }
.fan-case::after { content: ''; position: absolute; top: 12px; left: 50%; width: 34px; height: 5px; margin-left: -17px; border-radius: 3px; background: rgba(255,255,255,.32); z-index: 2; }
.fan-case.fan-mid { width: 282px; z-index: 30; box-shadow: 0 46px 80px rgba(0,0,0,.36); }
/* deal-out: empilhadas no centro antes de entrar na tela */
.fan-arc.fan-stack .fan-case { transform: translate(-50%, 60px) rotate(0deg); box-shadow: 0 10px 24px rgba(0,0,0,.12); }
.fan-arc:not(.fan-stack) .fan-case:nth-child(4) { transition-delay: 0s; }
.fan-arc:not(.fan-stack) .fan-case:nth-child(3), .fan-arc:not(.fan-stack) .fan-case:nth-child(5) { transition-delay: .07s; }
.fan-arc:not(.fan-stack) .fan-case:nth-child(2), .fan-arc:not(.fan-stack) .fan-case:nth-child(6) { transition-delay: .14s; }
.fan-arc:not(.fan-stack) .fan-case:nth-child(1), .fan-arc:not(.fan-stack) .fan-case:nth-child(7) { transition-delay: .21s; }
.fan-arc .fan-case { transition: transform .9s cubic-bezier(.22,.9,.24,1.04), box-shadow .5s; }
.fan-case img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fan-case:hover { transform: translate(calc(-50% + var(--x)), calc(var(--y) - 26px)) rotate(var(--r)) scale(1.04); box-shadow: 0 42px 72px rgba(0,0,0,.34); z-index: 20; }
.fan-cap { font-size: clamp(17px, 2.1vw, 22px); color: var(--gray); line-height: 1.5; margin-top: 68px; max-width: 620px; margin-left: auto; margin-right: auto; }
.fan-cap strong { color: var(--black); font-weight: 800; }

.fan-arc-wrap { position: relative; }
@media (max-width: 1180px) {
  .fan-arc-wrap { height: 340px; overflow: hidden; }
  .fan-arc { position: absolute; left: 0; right: 0; bottom: 0; margin: 0; transform-origin: bottom center; transform: scale(.62); }
}
@media (max-width: 720px) {
  .fan { padding: 40px 10px 34px; }
  .fan-eyebrow { margin-bottom: 16px; }
  .fan-arc-wrap { height: 270px; }
  .fan-arc { transform: scale(.36); }
}
@media (max-width: 430px) {
  .fan-arc-wrap { height: 235px; }
  .fan-arc { transform: scale(.3); }
}
