/* ═══════════════════════════════════════════════════════
   SIMS TECNOLOGIA - site institucional
   Paleta extraída da logo: amora, laranja, lilás
   ═══════════════════════════════════════════════════════ */

:root {
  /* marca */
  --pink: #B4517E;
  --pink-deep: #8E3A62;
  --pink-ink: #6E2A4B;
  --orange: #FFA402;
  --orange-deep: #E08900;
  --lav: #D8D0F2;
  --lav-deep: #7C6BC4;

  /* superfícies */
  --paper: #FAF9F7;
  --paper-2: #F1EFEC;
  --card: #FFFFFF;
  --ink: #17141A;
  --ink-soft: #5B5560;
  --plum-950: #1F0718;
  --plum-900: #2B0C20;
  --plum-800: #3D1230;

  /* tipografia - Sora: bold, moderna e clean, em todo o site */
  --font-display: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Sora', 'Segoe UI', sans-serif;

  --radius: 8px;
  --radius-lg: 12px;
  --gap: 24px; /* distância padrão entre cards em todo o site */
  --shadow-soft: 0 10px 40px -12px rgba(51, 16, 40, .18);
  --shadow-pop: 0 24px 70px -20px rgba(51, 16, 40, .35);
  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--orange); color: var(--plum-950); }

img { max-width: 100%; display: block; }

/* ── Botões ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  letter-spacing: -.005em;
  padding: 15px 26px; border-radius: 6px; border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn--lg { padding: 17px 32px; font-size: 16.5px; }
.btn--primary {
  background: var(--ink); color: var(--paper);
  box-shadow: none;
}
.btn--primary:hover { background: var(--pink-ink); transform: translateY(-1px); }
.btn--primary svg { transition: transform .22s ease; }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px rgba(23, 20, 26, .2);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--pink); color: var(--pink-deep); }
.btn--light { background: var(--paper); color: var(--plum-950); box-shadow: 0 8px 30px -10px rgba(0, 0, 0, .5); }
.btn--light:hover { transform: translateY(-2px) scale(1.02); }
.btn--light svg { transition: transform .22s ease; }
.btn--light:hover svg { transform: translateX(4px); }

/* ── Nav ────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav.is-scrolled {
  background: rgba(250, 249, 247, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(23, 20, 26, .09);
}
.nav__inner {
  max-width: 1240px; margin: 0 auto; height: var(--nav-h);
  display: flex; align-items: center; gap: 32px; padding: 0 28px;
}
.nav__logo img { height: 56px; width: auto; }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
/* CTA do topo é o único laranja da dobra: acento, não decoração */
.nav__cta { background: var(--orange); color: var(--plum-950); font-size: 14px; padding: 12px 20px; }
.nav__cta:hover { background: #FFB01F; }
.nav__links a {
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: 15px;
  position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2.5px; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  border-radius: 2px; transition: width .28s cubic-bezier(.65, 0, .35, 1);
}
.nav__links a:hover::after { width: 100%; }
.nav__burger { display: none; }
.nav__mobile { display: none; }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 40px) 28px 60px;
  overflow: hidden;
}
.hero__mesh {
  position: absolute; inset: 0;
  /* grade de 88px: referência de planta de rede, não decoração genérica.
     Some nas bordas para não virar papel quadriculado. */
  background-image:
    linear-gradient(to right, rgba(23, 20, 26, .045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(23, 20, 26, .045) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(120% 90% at 60% 30%, #000 30%, transparent 78%);
  mask-image: radial-gradient(120% 90% at 60% 30%, #000 30%, transparent 78%);
}
@keyframes meshDrift {
  from { transform: translate(0, 0) rotate(0deg); }
  to { transform: translate(3%, -2%) rotate(2deg); }
}
.hero__grain {
  position: absolute; inset: 0; opacity: .5; mix-blend-mode: multiply; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.06 0 0 0 0 0.15 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 14px; letter-spacing: .04em;
  color: var(--pink-deep);
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(180, 81, 126, .25);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 164, 2, .6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 164, 2, .55); }
  70% { box-shadow: 0 0 0 10px rgba(255, 164, 2, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 164, 2, 0); }
}
.hero__title {
  text-wrap: balance;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.08; letter-spacing: -.02em;
  margin-bottom: 26px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title em {
  font-style: normal; position: relative; display: inline-block;
  color: var(--ink);
  z-index: 0;
}
.hero__title em::after {
  content: ''; position: absolute; z-index: -1;
  left: -.06em; right: -.06em; bottom: .1em; height: .34em;
  background: var(--pink); opacity: .26;
  transform: skewX(-9deg) scaleX(0);
  transform-origin: left center;
  animation: marcar .62s cubic-bezier(.22,1,.36,1) 1.15s forwards;
}
@keyframes marcar { to { transform: skewX(-9deg) scaleX(1); } }
.hero__sub { font-size: 18.5px; color: var(--ink-soft); max-width: 520px; margin-bottom: 34px; text-wrap: pretty; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(23, 20, 26, .14);
  padding-top: 22px;
}
.hero__stats > div { padding-right: 34px; margin-right: 34px; border-right: 1px solid rgba(23, 20, 26, .1); }
.hero__stats > div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero__stats dt {
  font-variant-numeric: tabular-nums;
  font-family: var(--font-display); font-weight: 800;
  font-size: 40px; letter-spacing: -.035em; color: var(--ink);
  line-height: 1;
}
.hero__stats dd {
  font-size: 11.5px; color: var(--ink-soft); margin-top: 7px;
  text-transform: uppercase; letter-spacing: .09em; font-weight: 600;
}


/* - cena 3D do hero - */
.hero__scene { position: relative; height: 660px; perspective: 1200px; perspective-origin: 50% 45%; }
.hero__stage { position: absolute; inset: 0; transform-style: preserve-3d; }
.hero-el {
  position: absolute; left: 50%; top: 50%;
  transform-style: preserve-3d; will-change: transform;
}
.hero__phone { z-index: 1; }
.hero-pix { background: #E9FBF2; color: #0B8457; }
.hero-push { background: rgba(251, 244, 235, .97); }
.hero-cine { z-index: 3; }

/* itens da home no phone do hero */
.app-head__bell { font-size: 16px; opacity: .9; }
.home-bill {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: #fff; border-radius: 14px; padding: 11px 13px;
  box-shadow: 0 3px 12px -4px rgba(51, 16, 40, .12);
}
.home-bill strong { display: block; font-size: 12px; }
.home-bill span { font-size: 10.5px; color: var(--ink-soft); }
.home-bill em {
  font-style: normal; background: var(--pink-deep); color: #fff;
  font-weight: 700; font-size: 11.5px; padding: 8px 16px; border-radius: 10px;
}

.phone {
  position: relative;
  width: 300px; height: 610px;
  background: var(--plum-950);
  border-radius: 46px;
  padding: 10px;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, .08),
    var(--shadow-pop),
    0 0 90px -30px rgba(180, 81, 126, .5);
}
/* Notch clássico do iPhone 13: encostado no topo, mais estreito e baixo que a
   Dynamic Island, com as quinas de baixo arredondadas. */
.phone__notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 116px; height: 26px; background: var(--plum-950); z-index: 5;
  border-radius: 0 0 16px 16px;
}
.phone__screen {
  width: 100%; height: 100%;
  background: #F6F1F7; border-radius: 38px; overflow: hidden;
  display: flex; flex-direction: column; position: relative;
  color: var(--ink); /* não herdar o creme das seções escuras */
}
.phone--hero {
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, .08),
    var(--shadow-pop),
    0 0 90px -30px rgba(180, 81, 126, .5);
}

/* mock: header do app */
.app-head {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  padding: 54px 16px 14px; color: #fff; flex-shrink: 0;
}
.app-head--dark { background: linear-gradient(135deg, var(--plum-800), var(--plum-950)); padding-top: 56px; }
.app-head__row { display: flex; align-items: center; justify-content: space-between; }
.app-head__brand { font-weight: 700; font-size: 15px; }
.app-head__brand span { font-weight: 400; opacity: .8; }
.app-head__avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange); color: var(--plum-950);
  display: grid; place-items: center; font-weight: 700; font-size: 13px;
}
.app-head__search {
  margin-top: 12px; background: rgba(255, 255, 255, .18);
  border-radius: 10px; padding: 8px 12px; font-size: 12px; color: rgba(255, 255, 255, .85);
}

/* mock: corpo */
.app-body { padding: 14px; flex: 1; overflow: hidden; display: flex; flex-direction: column; gap: 10px; }
.app-greet { font-weight: 700; font-size: 16px; }
.app-pills { display: flex; gap: 6px; overflow: hidden; }
.app-pill {
  flex-shrink: 0; font-size: 10.5px; font-weight: 600;
  padding: 6px 10px; border-radius: 999px;
  background: color-mix(in srgb, var(--pc) 12%, #fff);
  color: color-mix(in srgb, var(--pc) 80%, #000);
  border: 1px solid color-mix(in srgb, var(--pc) 30%, #fff);
}
.app-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); }
.app-cards { display: flex; flex-direction: column; gap: 8px; }
.app-card {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: 14px; padding: 10px;
  box-shadow: 0 3px 12px -4px rgba(51, 16, 40, .12);
}
.app-card__logo {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--bc); color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 17px; font-family: var(--font-display);
}
.app-card__txt { flex: 1; min-width: 0; }
.app-card__txt strong { display: block; font-size: 12.5px; }
.app-card__txt span { font-size: 11px; color: var(--ink-soft); }
.app-badge {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  padding: 4px 8px; border-radius: 999px; flex-shrink: 0;
}
.app-badge--orange { background: #FFEACB; color: #A36400; }
.app-badge--blue { background: #DCE9FF; color: #1D4FA8; }
.app-badge--purple { background: #E9E2FA; color: #5B41A8; }

/* mock: bottom nav */
.app-nav {
  flex-shrink: 0; display: flex; justify-content: space-around;
  background: #fff; padding: 10px 6px 16px;
  border-top: 1px solid rgba(51, 16, 40, .07);
}
.app-nav span { font-size: 15px; display: flex; flex-direction: column; align-items: center; gap: 2px; opacity: .45; filter: grayscale(.6); }
.app-nav span.on { opacity: 1; filter: none; }
.app-nav i { font-style: normal; font-size: 8.5px; font-weight: 600; color: var(--ink); }

/* - tiles de logo (caixinha branca; posição/movimento via GSAP na cena 3D) - */
.float-tile {
  background: #fff; border-radius: 16px;
  padding: 14px 20px;
  border: 1px solid rgba(51, 16, 40, .06);
  box-shadow: 0 10px 24px -14px rgba(51, 16, 40, .3);
  width: max-content;
}

.float-tile__img { height: 34px; width: auto; max-width: 130px; object-fit: contain; display: block; }

/* pseudo-logos tipográficas */
.brand { font-weight: 800; font-size: 17px; letter-spacing: -.02em; white-space: nowrap; }
.brand--cinemark { color: #E50914; font-family: var(--font-display); }
.brand--boticario { color: #743C8C; font-family: Georgia, serif; font-style: italic; }
.brand--netshoes { color: #ED8B00; text-transform: lowercase; }
.brand--kfc { color: #A6192E; font-family: var(--font-display); letter-spacing: .04em; }
.brand--decolar { color: #5A2E85; }
.brand--petz { color: #0BA6A0; text-transform: lowercase; font-family: var(--font-display); }

.hero__scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-soft); z-index: 3;
}
.hero__scroll-hint span {
  width: 22px; height: 34px; border: 1.5px solid rgba(51, 16, 40, .3); border-radius: 999px;
  position: relative;
}
.hero__scroll-hint span::after {
  content: ''; position: absolute; top: 6px; left: 50%; margin-left: -2px;
  width: 4px; height: 7px; border-radius: 4px; background: var(--pink);
  animation: scrollNudge 1.8s ease-in-out infinite;
}
@keyframes scrollNudge {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(10px); opacity: .2; }
}

/* ═══════════════════ MARQUEE ═══════════════════ */
.marquee {
  position: relative; overflow: hidden;
  padding: 26px 0 34px;
  background: #17181A;
}
.marquee__label {
  text-align: center; margin-bottom: 22px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
}
.marquee__track {
  display: flex; gap: 0; width: max-content;
  animation: marqueeScroll 42s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }
.marquee__item {
  display: flex; align-items: center; gap: 52px;
  color: rgba(255, 255, 255, .78); font-weight: 700; font-size: 21px;
  font-family: var(--font-display); white-space: nowrap; letter-spacing: .01em;
  padding-right: 52px;
}
.marquee__item i { display: none; }
.marquee__logo {
  height: 38px; width: auto; max-width: 168px; object-fit: contain;
  /* monocromático branco: zera a cor e clareia - vale p/ logo clara ou escura */
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .82;
  transition: opacity .3s ease;
}
.marquee__logo:hover { opacity: 1; }
/* logo já entregue em branco: inverter deixaria preta */
.marquee__logo--white { filter: none; }
.marquee__edge {
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee__edge--l { left: 0; background: linear-gradient(90deg, var(--plum-950), transparent); }
.marquee__edge--r { right: 0; background: linear-gradient(-90deg, var(--plum-950), transparent); }

/* ═══════════════════ SEÇÕES (base) ═══════════════════ */
.section { padding: 104px 28px; max-width: 1240px; margin: 0 auto; }
.section__head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
/* respiro variável: seções de argumento pedem pausa, catálogo pede densidade */
.pain { padding-top: 128px; padding-bottom: 96px; }
.products { padding-top: 96px; }
.svas { padding-top: 88px; padding-bottom: 96px; }
.club { padding-bottom: 88px; }
.section__kicker {
  font-weight: 700; font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 18px;
}
.section__title {
  text-wrap: balance;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(27px, 3.3vw, 44px);
  line-height: 1.14; letter-spacing: -.02em; margin-bottom: 18px;
}
.section__title em {
  font-style: normal; position: relative; display: inline-block;
  color: inherit; z-index: 0;
}
.section__title em::after {
  content: ''; position: absolute; z-index: -1;
  left: -.05em; right: -.05em; bottom: .08em; height: .3em;
  background: var(--pink); opacity: .24;
  transform: skewX(-9deg);
}
/* em fundo escuro o texto e claro e o marca-texto precisa de mais corpo */
.cinema .section__title em::after,
.pop .section__title em::after,
.story .section__title em::after { opacity: .5; }
.section__sub { font-size: 17.5px; color: var(--ink-soft); max-width: 620px; margin: 0 auto; text-wrap: pretty; }

/* ═══════════════════ BENTO ═══════════════════ */
.bento {
  display: grid; gap: var(--gap);
  grid-template-columns: repeat(4, 1fr);
}
.bento__card {
  position: relative; overflow: hidden;
  background: var(--card); border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid rgba(23, 20, 26, .1);
  box-shadow: none;
  transition: border-color .2s ease, background .2s ease;
}
.bento__card:hover {
  border-color: rgba(23, 20, 26, .26);
  transform: none;
}
.bento__card--hero {
  grid-column: span 2; grid-row: span 2;
  background: var(--paper-2);
  border-top: 3px solid var(--pink);
}
.bento__card--wide { grid-column: span 2; background: var(--paper-2); }
.bento__icon { font-size: 34px; margin-bottom: 16px; }
/* ícones de linha, uniformes (substituem emojis nos cards) */
.icn {
  width: 26px; height: 26px; margin-bottom: 16px;
  fill: none; stroke: var(--ink); stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.bento__card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  letter-spacing: -.01em; margin-bottom: 10px;
}
.bento__card--hero h3 { font-size: 26px; }
.bento__card p { color: var(--ink-soft); font-size: 15px; }
.bento__card--hero p { font-size: 17px; }
.bento__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.bento__chips span {
  font-size: 12.5px; font-weight: 600; padding: 7px 14px; border-radius: 999px;
  background: rgba(51, 16, 40, .05); border: 1px solid rgba(51, 16, 40, .1);
}
.bento__chips span:last-child { background: var(--orange); border-color: var(--orange); color: var(--plum-950); }




/* ═══════════════════ FAIXA "NÃO É WHITE LABEL" ═══════════════════ */
.custom-strip {
  margin-top: var(--gap);
  display: flex; align-items: center; gap: 34px; justify-content: space-between;
  background: linear-gradient(120deg, var(--plum-900), var(--pink-deep) 78%, var(--lav-deep));
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  position: relative; overflow: hidden;
}
.custom-strip::after {
  content: ''; position: absolute; left: -50px; bottom: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255, 164, 2, .16); filter: blur(50px);
}
.custom-strip__txt { position: relative; z-index: 1; max-width: 720px; }
.custom-strip__kicker {
  display: inline-block; font-weight: 700; font-size: 13px; letter-spacing: .05em; text-transform: uppercase;
  background: rgba(251, 244, 235, .14); border: 1px solid rgba(251, 244, 235, .25);
  border-radius: 999px; padding: 6px 14px; margin-bottom: 14px;
}
.custom-strip h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 30px); line-height: 1.2; margin-bottom: 12px;
}
.custom-strip__txt > p:last-child { font-size: 16.5px; color: rgba(251, 244, 235, .85); }
.custom-strip__txt strong { color: var(--orange); }
.custom-strip .btn { position: relative; z-index: 1; flex-shrink: 0; }

/* ═══════════════════ DOR (churn / inadimplência) ═══════════════════ */
.pain__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); align-items: stretch; }
/* Lista editorial, sem cartão: a seção da dor tem peso de texto, não de UI.
   Só um filete à esquerda separa um problema do outro. */
.pain__card {
  background: transparent; border: 0; border-radius: 0;
  border-left: 2px solid rgba(180, 81, 126, .28);
  padding: 4px 24px 6px 22px;
  box-shadow: none;
  transition: border-color .25s ease;
}
.pain__card:hover { border-left-color: var(--pink); transform: none; box-shadow: none; }
.pain__icon { font-size: 30px; display: block; margin-bottom: 14px; }
.pain__card h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 8px; letter-spacing: -.01em; }
.pain__card p { color: var(--ink-soft); font-size: 15px; }
.pain__turn {
  margin-top: var(--gap);
  background: var(--ink);
  color: var(--paper);
  border-radius: 0;
  border-left: 4px solid var(--pink);
  padding: 36px 40px;
  position: relative; overflow: hidden;
}

.pain__turn-label {
  display: inline-block; font-weight: 700; font-size: 11.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.pain__turn-text { font-size: 19px; line-height: 1.55; max-width: 900px; position: relative; z-index: 1; }
.pain__turn-text strong { color: var(--orange); }

/* ═══════════════════ CINEMA (diferencial) ═══════════════════ */
.cinema {
  position: relative; overflow: hidden;
  background: var(--plum-950); color: var(--paper);
  padding: 130px 28px;
}
.cinema__spot {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(48% 60% at 72% 40%, rgba(255, 164, 2, .14), transparent 70%),
    radial-gradient(40% 50% at 20% 70%, rgba(180, 81, 126, .2), transparent 70%),
    conic-gradient(from 200deg at 78% -10%, transparent 0 40%, rgba(251, 244, 235, .05) 47%, transparent 55%, rgba(251, 244, 235, .04) 62%, transparent 70%);
}
.cinema__inner {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center;
}
.section__kicker--orange { color: var(--orange); }
.cinema .section__title { color: var(--paper); }
.cinema__list { list-style: none; margin: 26px 0; display: flex; flex-direction: column; gap: 14px; }
.cinema__list li {
  position: relative; padding-left: 34px;
  font-size: 17px; color: rgba(251, 244, 235, .85);
}
.cinema__list li::before {
  content: '🎟️'; position: absolute; left: 0; top: 1px; font-size: 18px;
}
.cinema__list strong { color: var(--paper); }
.cinema__hook {
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
  color: var(--orange); margin-bottom: 30px; max-width: 520px;
}

/* ticket 3D */
.cinema__stage { position: relative; height: 460px; perspective: 1000px; }
.cinema__ticket {
  position: absolute; left: 50%; top: 50%; z-index: 2;
  width: 320px; margin: -190px 0 0 -160px;
  background: var(--paper); color: var(--ink);
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 40px 80px -24px rgba(0, 0, 0, .6), 0 0 100px -30px rgba(255, 164, 2, .4);
  transform: rotate(-4deg);
  will-change: transform;
}
.cinema__ticket-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #fff; padding: 20px 22px;
}
.cinema__ticket-logo { height: 26px; width: auto; }
.cinema__ticket-off { font-size: 13px; font-weight: 700; color: var(--ink-soft); text-align: right; flex-shrink: 0; }
.cinema__ticket-off em {
  display: block; font-style: normal; font-family: var(--font-display);
  font-weight: 800; font-size: 30px; color: var(--orange-deep); line-height: 1;
}
.cinema__ticket-body { padding: 18px 22px 20px; position: relative; }
.cinema__ticket-film { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; }
.cinema__ticket-code {
  font-family: 'Consolas', monospace; font-weight: 700; font-size: 21px; letter-spacing: .05em;
  background: #fff; border: 1.5px dashed rgba(224, 137, 0, .6); border-radius: 12px;
  padding: 12px 14px; text-align: center; margin-bottom: 14px;
}
.cinema__ticket-perf {
  position: absolute; left: 10px; right: 10px; top: -1px;
  border-top: 2px dashed rgba(51, 16, 40, .18);
}
.cinema__ticket-perf::before, .cinema__ticket-perf::after {
  content: ''; position: absolute; top: -12px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--plum-950);
}
.cinema__ticket-perf::before { left: -21px; }
.cinema__ticket-perf::after { right: -21px; }
.cinema__ticket-note { font-size: 12.5px; color: var(--ink-soft); text-align: center; }

.cinema__poster {
  position: absolute; z-index: 1; width: 130px; height: 190px; border-radius: 14px;
  display: grid; place-items: end center; padding-bottom: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .08em;
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, .6);
  will-change: transform;
}
.cinema__poster span { background: rgba(0, 0, 0, .45); padding: 5px 10px; border-radius: 999px; color: #fff; }
.cinema__poster--1 {
  right: 4%; top: 2%; transform: rotate(7deg);
  background: linear-gradient(160deg, #E5344E, #7A1B5E 60%, #2B0C20);
}
.cinema__poster--2 {
  left: 2%; bottom: 4%; transform: rotate(-8deg);
  background: linear-gradient(160deg, #2C6BD8, #12275E 60%, #0A1330);
}

/* ═══════════════════ POP 3D (peças reais do app) ═══════════════════ */
.pop {
  position: relative; overflow: hidden;
  background: var(--plum-950);
  padding: 120px 28px 40px;
}
.pop__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(46% 40% at 50% 62%, rgba(180, 81, 126, .3), transparent 70%),
    radial-gradient(30% 26% at 22% 30%, rgba(255, 164, 2, .12), transparent 70%),
    radial-gradient(30% 26% at 80% 28%, rgba(124, 107, 196, .18), transparent 70%);
}
.section__head--center { position: relative; z-index: 2; text-align: center; margin: 0 auto 30px; max-width: 780px; }
.section__head--center .section__sub { margin: 0 auto; }

.pop__scene {
  position: relative; z-index: 2;
  height: 780px;
  perspective: 1300px;
  perspective-origin: 50% 42%;
}
.pop__stage {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
}
.pop-el {
  position: absolute; left: 50%; top: 50%;
  transform-style: preserve-3d;
  will-change: transform;
}
.pop__phone { z-index: 1; }
.phone--pop { box-shadow: inset 0 0 0 2px rgba(255,255,255,.08), 0 40px 90px -30px rgba(0,0,0,.7), 0 0 120px -30px rgba(180,81,126,.55); }
@media (max-width: 920px) {
  .pop__scene { height: 660px; }
  .pop { padding-top: 90px; }
}
@media (max-width: 720px) {
  /* menos peças no ar em telas estreitas - evita sobreposição
     (.pop/.hero no seletor: vence as definições base que vêm depois na folha) */
  .pop .pop-card--support, .pop .pop-card--wifi, .pop .pop-chip--push { display: none; }
  .pop .pop-card { max-width: 240px; padding: 14px 16px; }
  .pop .pop__scene, .pop__scene { height: 560px; }
  .hero .hero-push, .hero .hero-kfc { display: none; }
  .hero__scene { height: 540px; }
  .cinema__stage { height: 380px; }
  .cinema__poster { width: 104px; height: 152px; }
  .cinema { padding: 90px 20px; }
}

/* cartões (base) */
.pop-card {
  background: #fff; border-radius: 16px; padding: 17px 19px;
  box-shadow: 0 14px 30px -16px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .06);
  font-family: var(--font-body); color: var(--ink);
  width: max-content; max-width: 300px;
}

/* plano (azul no app real → gradiente da marca) */
.pop-card--plan { background: linear-gradient(135deg, var(--pink-deep), var(--plum-800)); color: #fff; }
.pop-plan__label { font-size: 11.5px; opacity: .75; font-weight: 600; }
.pop-plan__name { font-family: var(--font-display); font-weight: 700; font-size: 21px; margin: 2px 0 4px; }
.pop-plan__addr { font-size: 12px; opacity: .75; margin-bottom: 10px; }
.pop-plan__pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255, 255, 255, .16); border-radius: 999px;
  padding: 6px 12px; font-size: 12px; font-weight: 600;
}
.pop-plan__pill i { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 8px #4ADE80; }

/* fatura */
.pop-card--bill { min-width: 290px; }
.pop-bill__row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.pop-bill__label { font-size: 12px; color: var(--ink-soft); font-weight: 600; }
.pop-bill__value { font-family: var(--font-display); font-weight: 800; font-size: 26px; }
.pop-bill__due { font-size: 11.5px; color: var(--ink-soft); }
.pop-bill__due em { font-style: normal; color: var(--orange-deep); font-weight: 700; }
.pop-bill__pay {
  border: none; cursor: pointer; font-family: var(--font-body);
  background: var(--pink-deep); color: #fff; font-weight: 700; font-size: 14px;
  padding: 11px 22px; border-radius: 12px;
}
.pop-bill__actions { display: flex; gap: 8px; margin-top: 12px; }
.pop-bill__pix {
  flex: 1; background: #32BCAD; color: #fff; font-weight: 700; font-size: 12.5px;
  padding: 9px 12px; border-radius: 10px; text-align: center;
}
.pop-bill__alt {
  background: var(--paper-2); border-radius: 10px; padding: 9px 12px;
  font-size: 12.5px; font-weight: 700; color: var(--pink-ink);
}

/* pontos */
.pop-card--points { background: linear-gradient(150deg, var(--plum-800), var(--plum-950)); color: #fff; min-width: 240px; }
.pop-points__label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; opacity: .7; font-weight: 700; }
.pop-points__value { font-family: var(--font-display); font-weight: 800; font-size: 40px; line-height: 1.1; color: var(--orange); }
.pop-points__sub { font-size: 12.5px; opacity: .8; margin-bottom: 12px; }
.pop-points__tabs { display: flex; gap: 6px; }
.pop-points__tabs span { font-size: 11.5px; font-weight: 700; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.1); }
.pop-points__tabs span.on { background: var(--paper); color: var(--plum-950); }

/* cinemark */
.pop-card--cine { display: flex; align-items: center; gap: 14px; }
.pop-cine__brand { height: 20px; width: auto; display: block; margin-bottom: 7px; }
.pop-cine__txt span { font-size: 13px; color: var(--ink-soft); white-space: nowrap; }
.pop-cine__txt em { font-style: normal; color: var(--orange-deep); font-weight: 800; }

/* suporte */
.pop-card--support { background: linear-gradient(135deg, var(--lav), #fff 70%); }
.pop-support__title { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; margin-bottom: 10px; }
.pop-support__btns { display: flex; gap: 8px; }
.pop-support__btns span {
  background: var(--plum-800); color: #fff; font-size: 11.5px; font-weight: 700;
  padding: 8px 12px; border-radius: 10px;
}

/* wifi */
.pop-card--wifi { display: flex; align-items: center; gap: 12px; max-width: 270px; }
.pop-wifi__icon { font-size: 26px; }
.pop-card--wifi strong { display: block; font-size: 13.5px; line-height: 1.3; }
.pop-card--wifi span { font-size: 11.5px; color: var(--ink-soft); }

/* chips (push / velocidade) */
.pop-chip {
  background: rgba(251, 244, 235, .96); border-radius: 999px;
  padding: 12px 20px; font-size: 13px; font-weight: 700; color: var(--ink);
  box-shadow: 0 20px 44px -14px rgba(0, 0, 0, .5);
  white-space: nowrap;
}
.pop-chip--speed { background: var(--orange); color: var(--plum-950); }

/* peças dentro do phone (miniaturas) */
.pop-plan--inphone { background: linear-gradient(135deg, var(--pink-deep), var(--plum-800)); color: #fff; border-radius: 14px; padding: 12px 14px; }
.pop-plan--inphone .pop-plan__name { font-size: 16px; }
.pop-plan--inphone .pop-plan__pill { font-size: 10.5px; padding: 4px 10px; }
.pop-quick--inphone { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.pop-quick--inphone span {
  background: #fff; border-radius: 12px; padding: 9px 4px;
  display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 16px;
  box-shadow: 0 2px 8px -3px rgba(51, 16, 40, .12);
}
.pop-quick--inphone i { font-style: normal; font-size: 9px; font-weight: 700; color: var(--ink); }
.pop-clube--inphone {
  display: flex; align-items: center; gap: 10px; font-size: 20px;
  background: linear-gradient(135deg, var(--orange), #FFB937); border-radius: 14px; padding: 12px 14px;
}
.pop-clube--inphone strong { display: block; font-size: 12.5px; color: var(--plum-950); }
.pop-clube--inphone span { font-size: 10.5px; color: rgba(31, 7, 24, .75); }

/* ═══════════════════ STORY (scrollytelling) ═══════════════════ */
.story { position: relative; background: var(--plum-950); color: var(--paper); }
.story__bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  background:
    radial-gradient(42% 50% at 85% 20%, rgba(180, 81, 126, .22), transparent 70%),
    radial-gradient(38% 44% at 10% 80%, rgba(124, 107, 196, .18), transparent 70%);
}
/* sem pin de scroll (as telas passam sozinhas), mas mantém a altura de tela
   cheia: é o que dá respiro à seção e alinha o mockup com o texto */
.story__pin { min-height: 100svh; display: flex; align-items: center; }
.story__inner {
  max-width: 1240px; margin: 0 auto; width: 100%;
  padding: 80px 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.story__kicker {
  font-weight: 600; font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--lav); margin-bottom: 30px;
}
.story__steps { position: relative; min-height: 320px; }
.story__step {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(30px);
  /* saída rápida (.18s) para dois textos não ficarem sobrepostos na troca;
     a entrada é mais lenta e com atraso, então um sai antes do outro chegar */
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}
.story__step.is-active {
  opacity: 1; transform: translateY(0); pointer-events: auto;
  transition: opacity .42s ease .14s, transform .42s ease .14s;
}
.story__step h3 {
  text-wrap: balance;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(24px, 2.7vw, 36px); line-height: 1.18; letter-spacing: -.02em;
  margin-bottom: 18px;
}
.story__step em { font-style: normal; color: var(--orange); }
.story__step p { font-size: 17.5px; color: rgba(251, 244, 235, .75); max-width: 460px; }
.story__tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.story__tabs button {
  font-family: var(--font-body); font-weight: 700; font-size: 13.5px;
  padding: 10px 16px; border-radius: 999px; cursor: pointer;
  background: transparent; color: rgba(251, 244, 235, .75);
  border: 1.5px solid rgba(251, 244, 235, .22);
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s cubic-bezier(.34, 1.56, .64, 1);
  min-height: 40px;
}
.story__tabs button:hover { border-color: rgba(251, 244, 235, .55); transform: translateY(-2px); }
.story__tabs button.is-active { background: var(--orange); border-color: var(--orange); color: var(--plum-950); }
.story__hint { margin-top: 12px; font-size: 12.5px; color: rgba(251, 244, 235, .45); }
/* dica + mockup: um item só do grid */
.story__device { display: flex; flex-direction: column; }
/* dica logo acima do mockup */
.story__tap {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin-bottom: 14px;
  font-size: 13px; font-weight: 600; color: rgba(251, 244, 235, .62);
}
.story__tap svg { width: 17px; height: 17px; flex-shrink: 0; }

.story__stage { position: relative; display: flex; justify-content: center; cursor: pointer; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.phone--story { z-index: 2; }
.phone--story .phone__screen { background: #F6F1F7; }
/* o notch do mockup fica sobre a barra de status já gravada no vídeo:
   sem faixa artificial, cada app mantém a própria cor de topo */
/* nas telas reais o notch cobre a barra de status gravada */
.phone--story .phone__notch { background: var(--plum-950); }
.story__halo { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 1; }
.story__halo--1 { width: 380px; height: 380px; background: rgba(255, 164, 2, .16); top: -8%; right: 4%; }
.story__halo--2 { width: 320px; height: 320px; background: rgba(180, 81, 126, .3); bottom: -6%; left: 6%; }

/* telas do story (imagens reais do app)
   SEM transition CSS: o GSAP é o único dono de transform/opacity aqui -
   os dois juntos disputavam a mesma propriedade e travavam a troca */
.screen {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}
.screen.is-active { opacity: 1; pointer-events: auto; }
.screen__vid {
  /* formato original preservado (contain, sem corte nem stretch);
     a barra de status gravada fica atrás do notch do mockup */
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: top center;
  background: #F6F1F7;
}
/* fill (≈2% de compressão vertical, imperceptível): faz os overlays em %
   mapearem 1:1 com as frações da imagem e evita cortar o menu inferior */
.screen__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: fill; }
.screen__brandbar {
  position: absolute; left: 0; right: 0;
  background: #fff;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 16px;
}
.screen__brandbar--tall {
  justify-content: space-evenly; padding: 4px 16px;
  background: linear-gradient(#fff 44%, #F2F3F5 44%);
}
.screen__brandname { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--pink-deep); }
.screen__brandname span { font-weight: 500; color: var(--ink-soft); font-family: var(--font-body); }
.screen__brandtitle { font-weight: 800; font-size: 20px; color: #16181D; font-family: var(--font-body); }
.screen__brandsub { font-size: 11.5px; color: #8A8F98; }
.screen__patch {
  position: absolute;
  background: #F7F8FA;
  display: flex; align-items: center;
  font-size: 11.5px; font-weight: 600; color: #6B7280;
  border-radius: 6px; padding-left: 2px;
}
.screen__patch--gold {
  background: #FFF8E6; border: 1px solid #F5E3B3; border-radius: 12px;
  color: #A36400; font-size: 11px; padding: 0 12px;
}
.screen__patch--navy {
  background: #0C3A52; border-radius: 8px;
  flex-direction: column; align-items: flex-start; justify-content: center; gap: 2px;
  padding: 0 10px;
}
.screen__patch--navy strong { color: #fff; font-size: 14.5px; font-weight: 800; }
.screen__patch--navy span { color: rgba(255, 255, 255, .75); font-size: 10.5px; }
.screen__patch--banner {
  background: linear-gradient(120deg, #14425C, #2E6B8C);
  border-radius: 14px;
  flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px;
  padding: 0 16px 0 52px;
}
.screen__patch--banner::before {
  content: '👥'; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-size: 20px;
}
.screen__patch--banner strong { color: #fff; font-size: 13px; font-weight: 800; }
.screen__patch--banner span { color: rgba(255, 255, 255, .85); font-size: 10.5px; line-height: 1.35; }

/* tela clube: ticket */
.ticket {
  background: linear-gradient(135deg, #FFF6E4, #FFEACB);
  border: 1.5px dashed rgba(224, 137, 0, .5);
  border-radius: 16px; padding: 14px;
}
.ticket__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.ticket__brand { font-weight: 800; font-family: var(--font-display); font-size: 16px; color: var(--bc); }
.ticket__deal { font-size: 13px; margin-bottom: 10px; }
.ticket__deal strong { color: var(--orange-deep); }
.ticket__code {
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; border-radius: 10px; padding: 9px 12px;
  font-family: 'Consolas', monospace; font-size: 12.5px; font-weight: 700; letter-spacing: .04em;
}
.ticket__code em { font-style: normal; font-size: 10.5px; font-weight: 700; color: var(--pink); text-transform: uppercase; }

/* tela fatura */
.bill { background: #fff; border-radius: 16px; padding: 16px; box-shadow: 0 3px 12px -4px rgba(51, 16, 40, .12); }
.bill--paid { opacity: .65; }
.bill__month { font-size: 11.5px; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .05em; }
.bill__value { font-family: var(--font-display); font-weight: 700; font-size: 28px; margin: 4px 0 10px; }
.bill__value--ok { color: #0B8457; font-size: 22px; margin-bottom: 0; }
.bill__pix { display: flex; gap: 12px; align-items: center; }
.bill__qr {
  width: 62px; height: 62px; flex-shrink: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
  padding: 6px; background: #F6F1F7; border-radius: 10px;
}
.bill__qr i { background: var(--plum-950); border-radius: 2px; }
.bill__qr i:nth-child(2n) { border-radius: 50%; background: var(--pink-deep); }
.bill__btn {
  flex: 1; border: none; cursor: pointer;
  background: #32BCAD; color: #fff; font-weight: 700; font-size: 13.5px;
  padding: 12px; border-radius: 10px; font-family: var(--font-body);
}
.bill__alt { margin-top: 10px; font-size: 11px; color: var(--ink-soft); }

/* tela telemedicina */
.med-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.med-grid span {
  background: #fff; border-radius: 12px; padding: 10px 6px;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 18px; box-shadow: 0 2px 8px -3px rgba(51, 16, 40, .1);
}
.med-grid i { font-style: normal; font-size: 9.5px; font-weight: 700; color: var(--ink); }
.med-chat { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.med-chat__msg {
  background: var(--pink); color: #fff;
  align-self: flex-end; max-width: 85%;
  padding: 9px 12px; border-radius: 14px 14px 4px 14px; font-size: 12px;
}
.med-chat__msg--dr {
  background: #fff; color: var(--ink);
  align-self: flex-start; border-radius: 14px 14px 14px 4px;
  box-shadow: 0 2px 8px -3px rgba(51, 16, 40, .12);
}
.med-chat__video {
  margin-top: 4px; text-align: center;
  background: var(--lav-deep); color: #fff; font-weight: 700; font-size: 13px;
  padding: 11px; border-radius: 10px;
}

/* tela pontos */
.points {
  background: linear-gradient(135deg, var(--plum-800), var(--plum-950));
  color: #fff; border-radius: 16px; padding: 16px;
}
.points__label { font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; opacity: .7; }
.points__value { font-family: var(--font-display); font-weight: 700; font-size: 34px; }
.points__value span { font-size: 15px; color: var(--orange); }
.points__bar { height: 7px; background: rgba(255, 255, 255, .15); border-radius: 99px; margin: 10px 0 8px; overflow: hidden; }
.points__bar i { display: block; height: 100%; width: 81%; border-radius: 99px; background: linear-gradient(90deg, var(--orange), var(--pink)); }
.points__next { font-size: 11.5px; opacity: .85; }
.refer {
  background: #FFF0D6; border: 1px solid rgba(224, 137, 0, .35);
  border-radius: 12px; padding: 11px 14px; font-size: 12.5px;
}
.books { display: flex; gap: 10px; }
.book {
  width: 52px; height: 72px; border-radius: 6px 10px 10px 6px;
  background: linear-gradient(115deg, var(--bk), color-mix(in srgb, var(--bk) 60%, #000));
  box-shadow: inset 4px 0 0 rgba(255, 255, 255, .3), 0 4px 10px -3px rgba(51, 16, 40, .3);
}

/* ═══════════════════ SVAs ═══════════════════ */
.svas__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.svas__card {
  background: transparent; border-radius: var(--radius);
  border: 1px solid rgba(23, 20, 26, .1);
  padding: 22px 20px;
  box-shadow: none;
  transition: border-color .2s ease, background .2s ease;
}
.svas__card:hover { background: #fff; border-color: rgba(23, 20, 26, .26); }
.svas__card span { font-size: 28px; display: block; margin-bottom: 12px; }
.svas__card h3 { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; margin-bottom: 6px; }
.svas__card p { font-size: 14px; color: var(--ink-soft); }
.svas__note { margin-top: var(--gap); font-size: 16.5px; color: var(--ink-soft); }
.svas__note strong { color: var(--pink-deep); }

/* ═══════════════════ INTEGRAÇÕES ERP ═══════════════════ */
.erps { padding-top: 60px; }
.erps__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.erps__chip {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: 16px;
  border: 1px solid rgba(51, 16, 40, .08);
  padding: 18px 24px;
  box-shadow: 0 2px 10px -4px rgba(51, 16, 40, .08);
}
.erps__mark {
  font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: .01em;
  color: var(--pink-deep); line-height: 1;
}
.erps__name { font-size: 11.5px; font-weight: 600; color: var(--ink-soft); max-width: 92px; line-height: 1.25; text-transform: uppercase; letter-spacing: .03em; }
.erps__more { text-align: center; margin-top: var(--gap); font-size: 16.5px; color: var(--ink-soft); }
.erps__more strong { color: var(--pink-deep); }
.erps__st {
  display: inline-flex; align-items: center; gap: 6px;
  background: #E9FBF2; color: #0B8457;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  border-radius: 999px; padding: 6px 12px;
}
.erps__st i { width: 7px; height: 7px; border-radius: 50%; background: #0B8457; }

/* ═══════════════════ CLUB WALL ═══════════════════ */
.club { position: relative; }
.club__cats {
  display: flex; flex-wrap: nowrap; gap: 10px; margin-bottom: 44px;
  overflow-x: auto; padding-bottom: 6px;
  scrollbar-width: none;
}
.club__cats::-webkit-scrollbar { display: none; }
.club__cats span { white-space: nowrap; flex-shrink: 0; }
.club__cats span {
  font-size: 14px; font-weight: 600; padding: 9px 18px; border-radius: 999px;
  background: color-mix(in srgb, var(--cc) 10%, #fff);
  border: 1.5px solid color-mix(in srgb, var(--cc) 35%, #fff);
  color: color-mix(in srgb, var(--cc) 72%, #000);
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s ease;
  cursor: default;
}
.club__cats span:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--cc) 60%, transparent); }

.club__wall {
  display: grid; gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}
.club__tile {
  /* altura fixa: aspect-ratio é ignorado quando o grid estica o item,
     e imagens altas (Hopi Hari etc.) desalinhavam as linhas */
  height: 148px; border-radius: 18px;
  display: grid; place-items: center; text-align: center;
  background: var(--tbg, #fff); border: 1px solid rgba(51, 16, 40, .07);
  box-shadow: 0 2px 10px -4px rgba(51, 16, 40, .1);
  padding: 12px;
  transition: transform .3s cubic-bezier(.34, 1.5, .64, 1), box-shadow .3s ease;
}
.club__tile:hover { transform: translateY(-5px) rotate(-1.5deg) scale(1.04); box-shadow: var(--shadow-pop); z-index: 2; }
.club__tile { min-width: 0; }
.club__tile span { font-weight: 800; font-size: clamp(15px, 1.7vw, 23px); letter-spacing: -.02em; color: var(--tc, var(--ink)); font-family: var(--tf, var(--font-body)); line-height: 1.15; }
.club__tile-img {
  /* absoluto: % de altura resolve contra o tile (altura fixa) - em item de
     grid com track auto, height % colapsa p/ auto e imagens altas vazavam */
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  max-width: 76%; max-height: 62%; width: auto; height: auto;
}
.club__tile { position: relative; overflow: hidden; }
.club__more { margin-top: 40px; font-size: 16.5px; color: var(--ink-soft); }
.club__more a { color: var(--pink-deep); font-weight: 600; text-decoration: none; }
.club__more a:hover { text-decoration: underline; }

/* ═══════════════════ HOW ═══════════════════ */
.how { background: #F1ECFA; max-width: none; }
.how > * { max-width: 1240px; margin-left: auto; margin-right: auto; }
.how__steps {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap);
  counter-reset: step;
}
.how__step {
  position: relative;
  background: #fff; border-radius: var(--radius);
  padding: 76px 30px 34px;
  border: 1px solid rgba(51, 16, 40, .08);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.34, 1.4, .64, 1), box-shadow .3s ease;
}
.how__step:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); }
.how__num {
  position: absolute; top: -10px; right: 12px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 82px; line-height: 1; letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(180, 81, 126, .35);
}
.how__step h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin-bottom: 10px; letter-spacing: -.01em; }
.how__step p { color: var(--ink-soft); font-size: 15.5px; }

/* ═══════════════════ CTA ═══════════════════ */
.cta {
  position: relative; overflow: hidden;
  background: var(--plum-950); color: var(--paper);
  padding: 130px 28px;
  text-align: center;
}
.cta__mesh {
  position: absolute; inset: -30%;
  background:
    radial-gradient(34% 40% at 30% 30%, rgba(255, 164, 2, .12), transparent 70%),
    radial-gradient(38% 44% at 74% 66%, rgba(180, 81, 126, .42), transparent 70%),
    radial-gradient(30% 36% at 80% 20%, rgba(124, 107, 196, .32), transparent 70%);
  animation: meshDrift 18s ease-in-out infinite alternate;
}
.cta__inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.cta__title {
  text-wrap: balance;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 3.6vw, 50px); line-height: 1.14; letter-spacing: -.02em;
  margin-bottom: 20px;
}
.cta__title em { font-style: normal; color: var(--orange); }
.cta__sub { font-size: 18px; color: rgba(251, 244, 235, .72); margin-bottom: 38px; }

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--plum-950) 0%, #180413 100%);
  color: rgba(251, 244, 235, .72);
  padding: 84px 28px 0;
  border-top: 1px solid rgba(251, 244, 235, .08);
}
.footer__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(42% 60% at 12% 0%, rgba(180, 81, 126, .3), transparent 70%),
    radial-gradient(36% 54% at 88% 8%, rgba(124, 107, 196, .22), transparent 70%),
    radial-gradient(28% 44% at 62% 100%, rgba(255, 164, 2, .1), transparent 70%);
}
.footer__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.045 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.footer__inner {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 236px 1fr 250px; gap: 36px;
  padding-bottom: 56px;
}

/* marca + redes */
.footer__logo { height: 62px; width: auto; margin-bottom: 20px; }
.footer__tag { font-size: 15px; line-height: 1.55; max-width: 280px; margin-bottom: 24px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center;
  color: rgba(251, 244, 235, .8);
  background: rgba(251, 244, 235, .06);
  border: 1px solid rgba(251, 244, 235, .12);
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), background .25s ease, border-color .25s ease, color .25s ease;
}
.footer__social a:hover {
  transform: translateY(-3px);
  background: var(--orange); border-color: var(--orange); color: var(--plum-950);
}
.footer__social svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; }

/* colunas de links */
.footer__cols { display: grid; grid-template-columns: .72fr .72fr 1.56fr; gap: 24px; }
.footer__col h4 {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: var(--paper); margin-bottom: 18px;
  letter-spacing: .11em; text-transform: uppercase;
}
.footer__col a {
  display: block; color: rgba(251, 244, 235, .62); text-decoration: none;
  font-size: 14.5px; padding: 6px 0; transition: color .2s ease, transform .2s ease;
}
.footer__col a:hover { color: var(--orange); transform: translateX(3px); }
.footer__ln {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; line-height: 1.5; color: rgba(251, 244, 235, .62);
  padding: 7px 0; text-decoration: none; overflow-wrap: anywhere;
}
.footer__ln:hover { color: var(--orange); }
.footer__ln--addr { color: rgba(251, 244, 235, .55); }
.footer__ic {
  width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px;
  fill: currentColor; color: var(--pink);
}
.footer__ic--line { fill: none; stroke: var(--pink); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* card de CTA */
.footer__cta {
  background: linear-gradient(150deg, rgba(251, 244, 235, .09), rgba(251, 244, 235, .03));
  border: 1px solid rgba(251, 244, 235, .14);
  border-radius: var(--radius); padding: 26px 24px;
  align-self: start;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.footer__cta-title {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  color: var(--paper); letter-spacing: -.01em; margin-bottom: 6px; line-height: 1.25;
}
.footer__cta-sub { font-size: 13.5px; color: rgba(251, 244, 235, .62); margin-bottom: 18px; }
/* botão do card: não estica à força - largura pelo conteúdo, com folga
   nas laterais para o texto não encostar na borda arredondada */
.footer__cta .btn {
  width: auto; justify-content: center;
  font-size: 14px; padding: 14px 24px; gap: 8px;
  text-align: center; line-height: 1.25;
}
.footer__cta .btn svg { flex-shrink: 0; }

/* barra inferior */
.footer__bottom {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  /* espaço à direita p/ o botão flutuante do WhatsApp não cobrir os links */
  padding: 24px 96px 30px 0; border-top: 1px solid rgba(251, 244, 235, .1);
  font-size: 13px; color: rgba(251, 244, 235, .42);
}
.footer__bottom-links { display: flex; align-items: center; gap: 10px; }
.footer__bottom-links a { color: rgba(251, 244, 235, .42); text-decoration: none; transition: color .2s ease; }
.footer__bottom-links a:hover { color: var(--orange); }

/* ═══════════════════ RESPONSIVO ═══════════════════ */
@media (max-width: 1080px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__card--hero { grid-column: span 2; grid-row: auto; }
  .bento__card--wide { grid-column: span 2; }
  .club__wall { grid-template-columns: repeat(4, 1fr); }
  .svas__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__scene { height: 580px; }
  .phone { width: 270px; height: 550px; }
  .pain__grid { grid-template-columns: 1fr; }
  .pain__turn { padding: 28px 24px; }
  .pain__turn-text { font-size: 17px; }
  .cinema__inner { grid-template-columns: 1fr; gap: 50px; }
  .cinema__stage { height: 420px; }
  .story__inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 28px; }
  .story__steps { min-height: 380px; }
  .how__steps { grid-template-columns: 1fr; max-width: 560px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cta { max-width: 420px; }
}

@media (max-width: 760px) {
  /* no mobile a navegação vai para o menu do burger */
  .nav__links, .nav__cta { display: none; }
  .nav__burger {
    display: flex; flex-direction: column; gap: 5px; margin-left: auto;
    background: none; border: none; cursor: pointer; padding: 8px;
  }
  .nav__burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav__mobile {
    /* absolute: fora do fluxo do nav - senão o nav fixo (translúcido + blur)
       ganha a altura do menu oculto e vira um "quadrado opaco" sobre a página */
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    display: flex; flex-direction: column; gap: 4px;
    background: var(--paper); padding: 10px 28px 26px;
    box-shadow: 0 20px 30px -20px rgba(51, 16, 40, .25);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
  }
  .nav__mobile.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__mobile a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 17px; padding: 12px 0; }
  .nav__mobile .btn { justify-content: center; margin-top: 10px; }

  .section { padding: 84px 20px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .hero__grain { display: none; } /* mix-blend-mode rende um "quadrado opaco" em GPUs mobile */
  .nav__logo img { height: 46px; }
  /* story vira carrossel interativo (sem pin) no mobile */
  .story__pin { min-height: 0; }
  .story__inner { padding: 56px 20px 64px; gap: 0; }
  /* Ordem no mobile: TÍTULO → MOCKUP → ABAS. Antes as abas ficavam entre o
     texto e o celular, então ao tocar na tela o título saía de vista.
     `display: contents` dissolve o wrapper para os filhos entrarem no grid. */
  .story__copy { display: contents; }
  .story__kicker { order: 1; margin-bottom: 14px; }
  .story__steps { order: 2; min-height: 190px; }
  .story__device { order: 3; margin-bottom: 22px; }
  .story__tap { margin-bottom: 10px; }
  .story__tabs { order: 4; justify-content: center; margin-top: 0; }
  .story__hint { order: 5; text-align: center; margin-top: 12px; }
  .story__step p { font-size: 15.5px; }
  .story__progress { order: 4; margin-top: 16px; }
  .phone--story { width: 250px; height: 512px; }
  .phone--story .phone__screen { border-radius: 32px; }
  .custom-strip { flex-direction: column; align-items: flex-start; padding: 30px 24px; gap: 22px; }
  .custom-strip .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: 22px; }
  .hero__stats dt { font-size: 20px; }
  .float-tile { padding: 11px 15px; }
  .brand { font-size: 14px; }
  .club__wall { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .club__tile { border-radius: 14px; height: 96px; }
  .marquee { transform: rotate(0) scale(1); }
  .cta { padding: 90px 20px; }
  /* rodapé no mobile */
  .footer { padding: 60px 20px 0; }
  .footer__logo { height: 52px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 26px; }
  .footer__col--contact { grid-column: span 2; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; padding-bottom: 34px; }
}

/* ═══════════════════ ANIMAÇÃO: estados iniciais p/ GSAP ═══════════════════ */
/* Estados iniciais da animação de entrada. A classe `.js` é marcada por um
   script minúsculo no <head> (antes da 1ª pintura) - se ficasse no main.js,
   que tem defer, o texto apareceria e sumiria, causando um piscar. */
.js .reveal-load { opacity: 0; }
.js .hero__title .line { opacity: 0; }
/* rede de segurança: se o GSAP falhar/demorar, o conteúdo aparece sozinho */
@keyframes failsafeIn { to { opacity: 1; } }
.js .reveal-load, .js .hero__title .line { animation: failsafeIn 0s linear 2.5s forwards; }

/* Reduced motion: desliga tudo */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal-load, .js .hero__title .line { opacity: 1; }
}

/* Lista de reforço no card grande do bento: ele ocupa 2 linhas do grid e
   sobrava vazio embaixo. Conteúdo real em vez de espaço morto. */
.bento__list {
  list-style: none; margin: 22px 0 0; padding: 18px 0 0;
  border-top: 1px solid rgba(51, 16, 40, .09);
  display: flex; flex-direction: column; gap: 9px;
}
.bento__list li {
  position: relative; padding-left: 20px;
  font-size: 14.5px; color: var(--ink-soft);
}
.bento__list li::before {
  content: ''; position: absolute; left: 2px; top: 8px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--orange);
}
@media (max-width: 1080px) { .bento__list { display: none; } }

/* ═══════════════════ FOCO VISÍVEL ═══════════════════
   O CSS não tinha nenhuma regra de foco: quem navega por teclado dependia
   do outline padrão do Chrome, que é preto e some nos fundos escuros
   (abas do story, CTA, rodapé). Anel próprio, com cor por contexto. */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 6px;
}
/* sobre fundo escuro o rosa some: usa o creme da marca */
:where(.story, .cta, .footer, .marquee, .cinema, .pop)
  :where(a, button, input, [tabindex]):focus-visible {
  outline-color: var(--paper);
}
/* alvos de toque: mata o atraso de 300ms e o zoom por duplo toque */
:where(.btn, .chip, .story__tabs button, .nav__links a, .nav__burger,
       .club__cats span, .live__chips button) {
  touch-action: manipulation;
}

/* ═══════════════════ PROVEDORES COM APP NO AR ═══════════════════
   Prova social de verdade: as marcas dos clientes que já publicaram.
   Trilho rolando devagar, pausando no hover e no foco por teclado. */
.isps { padding: 96px 0 104px; overflow: hidden; }
.isps__inner { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

.isps__rail {
  position: relative; margin-top: 44px;
  /* as pontas somem no fundo, em vez de cortar seco */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.isps__track { display: flex; width: max-content; animation: ispsRoll 62s linear infinite; }
.isps__half { display: flex; gap: 18px; padding-right: 18px; }
@keyframes ispsRoll { to { transform: translateX(-50%); } }
/* pausa quando o visitante quer olhar (mouse ou teclado) */
.isps__rail:hover .isps__track,
.isps__rail:focus-within .isps__track { animation-play-state: paused; }

.isps__item {
  flex-shrink: 0; width: 186px; margin: 0;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 24px 18px 20px;
  /* nem branco puro (some logo clara) nem escuro: um cinza quente que
     sustenta tanto marca clara quanto marca escura */
  background: #fff; border: 1px solid rgba(23, 20, 26, .1);
  border-radius: 16px;
  transition: border-color .25s ease;
}
.isps__item:hover { border-color: rgba(180, 81, 126, .32); }
.isps__item img {
  width: auto; height: 46px; max-width: 138px;
  object-fit: contain;
}
.isps__item figcaption {
  font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  text-align: center; line-height: 1.25;
}

.isps__note {
  max-width: 1240px; margin: 40px auto 0; padding: 0 28px;
  text-align: center; font-size: 16px; color: var(--ink-soft);
}
.isps__note strong { color: var(--pink-deep); font-weight: 700; }
.isps__note a { color: var(--pink-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.isps__note a:hover { color: var(--orange-deep); }

@media (max-width: 760px) {
  .isps { padding: 72px 0 80px; }
  .isps__inner, .isps__note { padding: 0 20px; }
  .isps__item { width: 152px; padding: 20px 14px 16px; }
  .isps__item img { height: 38px; max-width: 112px; }
}
/* quem pediu menos movimento vê um trilho parado e rolável na mão */
@media (prefers-reduced-motion: reduce) {
  .isps__track { animation: none; }
  .isps__rail { overflow-x: auto; }
}
/* Algumas marcas têm parte do desenho em branco (feitas p/ fundo escuro):
   no card claro esse trecho desaparece. Card escuro para essas. */
.isps__item--dark { background: var(--plum-900); border-color: rgba(251, 244, 235, .14); }
.isps__item--dark figcaption { color: rgba(251, 244, 235, .72); }
.isps__item--dark:hover { border-color: rgba(255, 164, 2, .45); }
