*, *::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: #E8191A;
  --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: 52px; width: auto; display: block; }
.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; white-space: nowrap; }
.nav-cta:hover { background: #c41516; }
.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(232,25,26,.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: #c41516; 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(232,25,26,.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(232,25,26,.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 ── */
#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(232,25,26,.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(232,25,26,.5), 0 0 10px 1px rgba(232,25,26,.45); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(232,25,26,0), 0 0 10px 1px rgba(232,25,26,.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, #E8191A, #FF6B35);
}
.tc-g2 { background-image: linear-gradient(to right, #b00020, #E8191A); }
.tc-g3 { background-image: linear-gradient(to right, #E8191A, #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(232,25,26,.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(232,25,26,.5); }
  70%, 100% { box-shadow: 0 0 0 7px rgba(232,25,26,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(232,25,26,.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;
}

/* ── ESTILOS / INSPIRAÇÕES (light) ── */
#estilos { background: #ECECEF; padding: 24px 40px 88px; }
.estilos-inner { max-width: 1280px; margin: 0 auto; }
.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: #c41516; border-color: #c41516; box-shadow: 0 6px 16px rgba(232,25,26,.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: #c41516; }
.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(232,25,26,.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: #c41516; }

.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(232,25,26,.55), 0 2px 8px rgba(232,25,26,.5);
  animation: maqDotPulse 1.4s ease-out infinite;
}
@keyframes maqDotPulse {
  0% { box-shadow: 0 0 0 0 rgba(232,25,26,.55), 0 2px 8px rgba(232,25,26,.5); }
  70%, 100% { box-shadow: 0 0 0 12px rgba(232,25,26,0), 0 2px 8px rgba(232,25,26,.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(232,25,26,.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(232,25,26,.55); } 70%, 100% { box-shadow: 0 0 0 7px rgba(232,25,26,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(232,25,26,.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(232,25,26,.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(232,25,26,.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(232,25,26,.1); letter-spacing: -2px; }
.onde-fic { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 13px; background: rgba(232,25,26,.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, #E8191A, #b3110f); 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 { overflow: hidden; }
.tec-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.tec-content { padding: 84px 64px 84px 60px; align-self: center; }
.tec-kicker { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px; }
.tec-title { font-size: clamp(26px,2.6vw,38px); font-weight: 800; letter-spacing: -1.4px; line-height: 1.15; color: var(--black); margin-bottom: 18px; max-width: 480px; }
.tec-desc { font-size: 14.5px; color: var(--gray); line-height: 1.7; max-width: 460px; margin-bottom: 28px; }
.tec-feats-label { font-size: 11px; font-weight: 700; color: var(--black); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; }
.tec-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 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(232,25,26,.5), transparent 62%);
}
.cta-scan {
  position: absolute; left: 0; right: 0; bottom: 0; height: 150px;
  background: linear-gradient(to top, rgba(232,25,26,.4), rgba(232,25,26,.06) 45%, transparent);
  border-top: 2px solid rgba(255,70,70,.9);
  box-shadow: 0 0 26px 5px rgba(232,25,26,.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; }
}
.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: #c41516; }
.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(232,25,26,.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(232,25,26,.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(232,25,26,.55), transparent); box-shadow: 0 0 22px 5px rgba(232,25,26,.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: #c41516; 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: #c41516; 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: #c41516; }

.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(232,25,26,.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(232,25,26,.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(232,25,26,.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(232,25,26,.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(232,25,26,.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; }
}
