*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #f00000; --red-d: #c90000; --red-soft: #fff0f0;
  --text: #080808; --muted: #596174; --white: #ffffff;
  --font: 'Inter', -apple-system, sans-serif;
  --radius: 22px;
}
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: thin;
    scrollbar-color: #d4d4d4 transparent;
}
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: #d4d4d4;
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
    background-clip: content-box;
}
::-webkit-scrollbar-corner { background: transparent; }
body {
  font-family: var(--font); color: var(--text); overflow-x: hidden;
  background: #ffffff;
}
.red { color: var(--red); }
.green-dot { color: #22C55E; }

.pill-badge {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); background: var(--red-soft);
  border: 1.5px solid rgba(240,0,0,0.3); border-radius: 999px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 18px; margin-bottom: 20px;
}
.section-sub { color: var(--muted); font-size: 0.97rem; line-height: 1.65; margin-bottom: 40px; }

.btn {
  height: 48px; padding: 0 24px; border-radius: 12px; border: none;
  cursor: pointer; font-size: 15px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  transition: 0.22s ease; font-family: var(--font); text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #ff1111, #df0000); color: white;
  box-shadow: 15px 15px 20px rgba(240,0,0,0.30);
}
.btn-primary:hover { transform: translateY(-4px) scale(1.02); box-shadow: 20px 20px 30px rgba(240,0,0,0.42); }
.btn-secondary {
  background: white; color: #141414;
  border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 10px 26px rgba(0,0,0,0.07);
}
.btn-secondary:hover { transform: translateY(-4px); border-color: rgba(240,0,0,0.28); box-shadow: 0 18px 36px rgba(240,0,0,0.12); }
.btn-sm { height: 44px; font-size: 15px; padding: 0 22px; border-radius: 10px; }
.btn svg { width: 22px; height: 22px; flex-shrink: 0; }

.page {
  width: 100%;
  padding: 0 42px 28px;
  display: flex;
  flex-direction: column;
}

.hero {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  align-items: center; gap: 20px;
  max-width: 1300px; margin: 0 auto; width: 100%;
  padding: 36px 0 28px;
  position: relative;
}

.left { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }

.tag {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 22px; border: 1.6px solid rgba(240,0,0,0.35); border-radius: 999px;
  color: var(--red); font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(255,255,255,0.8); box-shadow: 0 6px 20px rgba(240,0,0,0.06);
  margin-bottom: 26px;
}

h1 {
  font-size: clamp(28px, 3.8vw, 58px); line-height: 0.97;
  letter-spacing: -2.5px; font-weight: 900; color: #050505; margin-bottom: 20px;
}
h1 span { display: block; }
h1 span:last-child { color: var(--red); }

.subtitle {
  max-width: 520px; color: var(--muted); font-size: 15px; line-height: 1.6;
  font-weight: 500; margin-bottom: 26px;
}
.subtitle strong { color: var(--red); font-weight: 900; }

.buttons {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 46px;
}

.stats { display: flex; align-items: center; gap: 20px; flex-wrap: nowrap; }
.stat {
  display: flex; align-items: center; gap: 12px;
  position: relative; padding-right: 20px; flex-shrink: 0;
}
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: 0;
  height: 36px; width: 1px; background: rgba(0,0,0,0.09);
}
.stat-icon {
  width: 46px; height: 46px; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #ffe8e8, #fff7f7);
  color: var(--red); box-shadow: 0 8px 18px rgba(240,0,0,0.12);
  flex-shrink: 0;
}
.stat-icon svg { width: 22px; height: 22px; }
.stat strong { display: block; font-size: 22px; line-height: 1; font-weight: 900; color: #050505; margin-bottom: 4px; white-space: nowrap; }
.stat span { display: block; font-size: 10px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 0.4px; white-space: nowrap; }

.right {
  position: relative;
  display: flex; align-items: center; justify-content: center; overflow: visible;
}

.pink-circle { display: none; }

.visual {
  width: min(520px, 100%); height: 100%;
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}

.hero-video-wrap {
  width: 120%;
  max-width: 780px;
  margin-left: -10%;
  position: relative;
  z-index: 2;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    -24px 32px 70px rgba(220,0,0,0.38),
    0 8px 24px rgba(0,0,0,0.18);
  pointer-events: none;
  user-select: none;
  transform: perspective(1100px) rotateY(-22deg) rotateX(6deg) scale(1.04);
  transform-origin: center center;
}
.hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.hero-video-iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.hero-video-wrap.has-video {
  pointer-events: auto;
  user-select: auto;
  transition: none;
  will-change: transform;
}

.cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; padding-top: 18px;
  max-width: 1300px; margin: 0 auto;
}
.info-card {
  min-height: 0; background: #fff;
  border: 1px solid rgba(160,0,0,0.12); border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(90,0,0,0.06); padding: 18px 20px;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 14px;
  cursor: pointer;
  transition:
    transform .35s cubic-bezier(.16, 1, .3, 1),
    box-shadow .35s ease,
    border-color .35s ease,
    background .35s ease;
}
.info-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 12% 75%, rgba(240,0,0,0.07), transparent 25%);
  pointer-events: none;
  transition: background .4s ease, transform .5s cubic-bezier(.16, 1, .3, 1);
}
.info-card::after {
  content: ""; position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(240, 0, 0, 0.10) 50%, transparent 70%);
  pointer-events: none;
  transition: left .9s cubic-bezier(.16, 1, .3, 1);
  z-index: 1;
}
.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 0, 0, 0.32);
  background: #fff;
  box-shadow:
    0 22px 48px -12px rgba(240, 0, 0, 0.22),
    0 12px 24px -10px rgba(90, 0, 0, 0.10);
}
.info-card:hover::before {
  background: radial-gradient(circle at 12% 75%, rgba(240, 0, 0, 0.16), transparent 50%);
}
.info-card:hover::after { left: 130%; }

.info-card .number {
  position: absolute;
  top: 14px;
  right: 16px;
  width: auto; height: auto;
  background: transparent; color: rgba(240, 0, 0, 0.55);
  font-weight: 900; font-size: 11px;
  letter-spacing: 1.4px;
  z-index: 3;
  font-variant-numeric: tabular-nums;
  transition: color .3s ease, transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.info-card:hover .number {
  color: var(--red);
}

.big-icon {
  width: 48px; height: 48px; border-radius: 14px; border: 0;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, #ff3030, #c80000);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    0 10px 22px -6px rgba(240, 0, 0, 0.45);
  margin-top: 0;
  position: relative; z-index: 2;
  flex-shrink: 0;
  transition:
    background .35s ease,
    box-shadow .35s ease,
    transform .45s cubic-bezier(.34, 1.56, .64, 1);
}
.big-icon svg {
  width: 22px; height: 22px;
  transition: transform .5s cubic-bezier(.34, 1.56, .64, 1);
}
.info-card:hover .big-icon {
  background: linear-gradient(135deg, #ff4444, #a00000);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 14px 30px -6px rgba(240, 0, 0, 0.55);
  transform: scale(1.05) rotate(-4deg);
}
.info-card:hover .big-icon svg { transform: scale(1.06) rotate(4deg); }

.info-content { position: relative; z-index: 2; padding-top: 0; min-width: 0; }
.info-content h3 {
  font-size: 15px; font-weight: 900; margin-bottom: 4px; letter-spacing: -0.3px;
  color: #111;
  transition: color .3s ease;
}
.info-content p { color: var(--muted); font-size: 12.5px; line-height: 1.45; font-weight: 500; margin: 0; }
.info-card:hover .info-content h3 { color: var(--red); }

.games-section {
  width: 100%; min-height: 100vh; position: relative; padding: 24px 36px 56px;
  overflow: hidden; font-family: var(--font);
  background: transparent;
  display: flex; flex-direction: column; justify-content: center;
}

.gs-content { position: relative; z-index: 3; width: min(1160px, 100%); margin: 0 auto; text-align: center; align-self: center; }
.gs-badge { display: inline-flex; align-items: center; justify-content: center; gap: 11px; height: 40px; padding: 0 28px; border-radius: 999px; background: rgba(255,255,255,0.96); border: 1px solid rgba(239,0,0,0.19); color: #ef0000; font-size: 13px; font-weight: 900; letter-spacing: 1.4px; text-transform: uppercase; box-shadow: 0 10px 28px rgba(239,0,0,0.16); margin-bottom: 16px; }
.gs-badge-icon { width: 22px; height: 22px; display: block; }
.gs-title { font-size: clamp(42px, 5vw, 70px); line-height: 0.94; letter-spacing: -3.4px; font-weight: 900; color: #050505; margin-bottom: 14px; }
.gs-title span { display: block; }
.gs-title span:last-child { color: #ef0000; }
.gs-subtitle { color: #6c7280; font-size: 19px; font-weight: 600; margin-bottom: 22px; }

.games-box { width: 100%; background: rgba(255,255,255,0.96); border: 1px solid rgba(239,0,0,0.14); border-radius: 24px; box-shadow: 0 18px 45px rgba(239,0,0,0.14); padding: 28px 24px 30px; position: relative; }

.box-title { display: flex; justify-content: center; align-items: center; gap: 28px; margin-bottom: 28px; }
.box-title::before, .box-title::after { content: ""; width: 160px; height: 2px; border-radius: 999px; }
.box-title::before { background: linear-gradient(90deg, transparent, rgba(239,0,0,0.65)); }
.box-title::after  { background: linear-gradient(90deg, rgba(239,0,0,0.65), transparent); }
.box-title-inner { display: flex; align-items: center; gap: 13px; font-size: 24px; font-weight: 900; color: #111; white-space: nowrap; }
.box-title-icon { width: 56px; height: 56px; border-radius: 15px; background: #fff; display: grid; place-items: center; box-shadow: 0 10px 27px rgba(239,0,0,0.18); border: 1px solid rgba(239,0,0,0.10); }
.box-title-icon img { width: 33px; height: 33px; object-fit: contain; }

.games-row { display: none; }

.box-title { position: relative; }
.auto-scroll-badge {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px 6px 11px;
  background: rgba(239, 0, 0, 0.08);
  border: 1px solid rgba(239, 0, 0, 0.20);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  color: #ef0000;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.auto-scroll-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ef0000;
  box-shadow: 0 0 0 0 rgba(239, 0, 0, 0.55);
  animation: auto-scroll-pulse 1.8s cubic-bezier(.16, 1, .3, 1) infinite;
}
@keyframes auto-scroll-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 0, 0, 0.55); }
  70%      { box-shadow: 0 0 0 6px rgba(239, 0, 0, 0); }
}

.games-marquee {
  position: relative;
  overflow: hidden;
  padding: 4px 0 6px;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
@keyframes games-marquee-scroll {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
.games-marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: games-marquee-scroll 42s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}
.games-marquee:hover .games-marquee-track { animation-play-state: paused; }
.games-marquee .mob-mcard {
  width: 232px;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(239, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(239, 0, 0, 0.10);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s ease;
}
.games-marquee .mob-mcard:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 36px -10px rgba(239, 0, 0, 0.30);
}
.games-marquee .mob-card-img {
  position: relative; height: 200px; overflow: hidden;
  background: linear-gradient(135deg, rgba(239, 0, 0, 0.95), rgba(255, 80, 80, 0.8));
}
.games-marquee .mob-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.games-marquee .mob-card-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  height: 24px; padding: 0 10px; border-radius: 999px;
  background: linear-gradient(135deg, #ff2929, #ce0000);
  color: #fff; font-size: 9.5px; font-weight: 900;
  display: inline-flex; align-items: center; text-transform: uppercase; letter-spacing: .8px;
  box-shadow: 0 6px 16px rgba(239, 0, 0, 0.30);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.games-marquee .mob-card-foot {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px; background: #fff;
}
.games-marquee .mob-card-icon { width: 26px; height: 26px; flex-shrink: 0; }
.games-marquee .mob-card-name { font-size: 14px; font-weight: 900; color: #111; }
.game-card { border-radius: 18px; overflow: hidden; background: #fff; box-shadow: 0 8px 24px rgba(239,0,0,0.10); border: 1px solid rgba(239,0,0,0.08); min-height: 320px; position: relative; transition: 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.game-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 20px 44px rgba(239,0,0,0.20); }
.game-image-wrap { height: 252px; position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(239,0,0,0.95), rgba(255,80,80,0.8)); }
.game-image { width: 100%; height: 100%; object-fit: cover; display: block; transition: 0.35s ease; }
.game-card:hover .game-image { transform: scale(1.06); }
.game-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.12), transparent 35%, rgba(0,0,0,0.10)), radial-gradient(circle at 50% 10%, rgba(255,255,255,0.16), transparent 34%); pointer-events: none; }
.game-image-wrap .tag { position: absolute; top: 13px; left: 13px; z-index: 2; height: 26px; padding: 0 11px; border-radius: 999px; background: linear-gradient(135deg, #ff2929, #ce0000); color: #fff; font-size: 10px; font-weight: 900; display: inline-flex; align-items: center; justify-content: center; text-transform: uppercase; box-shadow: 0 8px 20px rgba(239,0,0,0.32); border: 1px solid rgba(255,255,255,0.25); margin-bottom: 0; }

.live-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 26px;
  padding: 0 11px 0 9px;
  border-radius: 999px;
  background: rgba(15, 15, 18, 0.62);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 6px 16px rgba(0, 0, 0, 0.30);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-family: var(--font);
  line-height: 1;
  white-space: nowrap;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow:
    0 0 0 0 rgba(34, 197, 94, 0.65),
    0 0 8px rgba(34, 197, 94, 0.55);
  animation: live-dot-pulse 1.6s cubic-bezier(.16, 1, .3, 1) infinite;
}
@keyframes live-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.65), 0 0 8px rgba(34, 197, 94, 0.55); }
  70%      { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0),    0 0 8px rgba(34, 197, 94, 0.55); }
}
.live-count {
  font-weight: 900;
  font-size: 11.5px;
  letter-spacing: -.2px;
  text-transform: none;
  font-variant-numeric: tabular-nums;
  color: #fff;
}
.live-label {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}
@media (max-width: 760px) {
  .live-chip {
    height: 24px;
    padding: 0 10px 0 8px;
    gap: 6px;
    font-size: 9px;
  }
  .live-count { font-size: 10.5px; }
  .live-dot { width: 6px; height: 6px; }
}
.game-footer { height: 68px; display: flex; align-items: center; gap: 13px; padding: 0 18px; background: #fff; }
.game-icon { width: 26px; height: 26px; flex: 0 0 auto; display: block; }
.game-name { color: #111; font-size: 14px; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.see-all { margin: 22px auto 0; height: 58px; padding: 0 25px 0 14px; border-radius: 999px; background: #fff; color: #121212; display: inline-flex; align-items: center; justify-content: center; gap: 16px; font-size: 15px; font-weight: 800; box-shadow: 0 12px 30px rgba(239,0,0,0.17); border: 1px solid rgba(239,0,0,0.13); cursor: pointer; transition: 0.25s ease; font-family: var(--font); }
.see-all:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(239,0,0,0.22); }
.see-icon { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #ff2222, #d80000); display: grid; place-items: center; box-shadow: 0 8px 18px rgba(239,0,0,0.22); }
.see-icon svg { width: 22px; height: 22px; display: block; }
.see-arrow { color: #ef0000; font-size: 32px; font-weight: 400; line-height: 1; }

@media (max-width: 1080px) { .games-row { grid-template-columns: repeat(3, 1fr); } }

.vagas.jobs-page {
  width: 100%; min-height: 100vh; position: relative;
  padding: 36px 28px 28px; overflow: hidden; font-family: var(--font);
  background: transparent;
  display: flex; flex-direction: column; justify-content: center;
}

.brand-cube {
    position: absolute;
    width: 104px;
    height: 104px;
    border-radius: 23px;
    z-index: 4;
    display: grid;
    place-items: center;
    background: transparent;
    pointer-events: none;
    will-change: transform;
    animation: brand-cube-float 6.5s cubic-bezier(.45, .05, .55, .95) infinite;
    animation-delay: var(--cube-delay, 0ms);
}
.brand-cube img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    border-radius: 22px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .22));
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}
@keyframes brand-cube-float {
    0%, 100% { transform: var(--cube-rot, rotate(0deg)) translateY(0); }
    50%      { transform: var(--cube-rot, rotate(0deg)) translateY(-10px); }
}
.cube-youtube   { top: 70px;  left: max(180px, 16%);  --cube-rot: rotate(-10deg); transform: rotate(-10deg); }
.cube-twitch    { top: 220px; left: max(150px, 13%);  --cube-rot: rotate(7deg);   transform: rotate(7deg); }
.cube-tiktok    { top: 400px; left: max(170px, 15%);  --cube-rot: rotate(-12deg); transform: rotate(-12deg); }
.cube-instagram { top: 80px;  right: max(180px, 16%); --cube-rot: rotate(10deg);  transform: rotate(10deg); }
.cube-kick      { top: 260px; right: max(150px, 13%); --cube-rot: rotate(12deg);  transform: rotate(12deg); }
.cube-multi     { top: 410px; right: max(170px, 15%); --cube-rot: rotate(-8deg);  transform: rotate(-8deg); }

.main-content { position: relative; z-index: 3; max-width: 1200px; margin: 0 auto; text-align: center; }
.top-badge { display: inline-flex; align-items: center; justify-content: center; height: 36px; padding: 0 22px; border-radius: 999px; background: #fff; border: 1px solid rgba(239,0,0,0.25); color: #ef0000; font-size: 13px; font-weight: 900; letter-spacing: 1.6px; text-transform: uppercase; box-shadow: 0 8px 24px rgba(239,0,0,0.12); margin-bottom: 16px; }
.hero-title { font-size: clamp(43px, 5.2vw, 72px); line-height: 0.94; letter-spacing: -3.5px; font-weight: 900; color: #050505; max-width: 760px; margin: 0 auto 14px; }
.hero-title span {
    display: block;
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    color: inherit;
}
.hero-title span:last-child { color: #ef0000; }
.hero-subtitle { color: #6b7284; font-size: 19px; line-height: 1.35; font-weight: 600; max-width: 540px; margin: 0 auto 22px; }

.vagas-cta-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.vagas-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s ease, background .2s ease, border-color .2s ease, color .2s ease;
  border: 1.5px solid transparent;
}
.vagas-cta svg { flex-shrink: 0; }
.vagas-cta-primary {
  background: linear-gradient(135deg, #ff2020, #d80000);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 14px 28px -8px rgba(239, 0, 0, 0.45);
}
.vagas-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    0 20px 38px -10px rgba(239, 0, 0, 0.60);
}
.vagas-cta-secondary {
    background: #fff;
    color: #1a1a1a;
    border-color: rgba(15, 15, 15, 0.14);
    box-shadow: 0 10px 24px -12px rgba(15, 15, 15, 0.18);
}
.vagas-cta-secondary .cta-arrow {
    transition: transform .25s cubic-bezier(.16, 1, .3, 1);
    margin-left: -2px;
    opacity: .75;
}
.vagas-cta-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(239, 0, 0, 0.35);
    color: #ef0000;
    box-shadow: 0 18px 36px -12px rgba(239, 0, 0, 0.30);
}
.vagas-cta-secondary:hover .cta-arrow {
    transform: translateX(4px);
    opacity: 1;
}

.platform-box { width: min(1080px, 100%); margin: 0 auto; background: rgba(255,255,255,0.96); border: 1px solid rgba(15, 15, 15, 0.08); border-radius: 22px; padding: 22px 24px 18px; box-shadow: 0 18px 42px rgba(15, 15, 15, 0.10), 0 2px 6px rgba(15, 15, 15, 0.04); text-align: left; }
.platform-head { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.head-left { display: flex; align-items: center; gap: 13px; white-space: nowrap; }
.head-icon { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, #ff2020, #d90000); color: #fff; box-shadow: 0 10px 20px rgba(239,0,0,0.20); font-size: 16px; }
.head-left strong { font-size: 20px; font-weight: 900; color: #111; }
.head-divider { width: 1px; height: 28px; background: rgba(239,0,0,0.19); }
.platform-head p { color: #747b8c; font-size: 13px; font-weight: 600; }
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.platform-card {
    min-height: 112px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(239, 0, 0, 0.10);
    box-shadow: 0 8px 22px rgba(239, 0, 0, 0.06);
    padding: 16px 52px 16px 16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    overflow: hidden;
    transition:
        transform .3s cubic-bezier(.34, 1.56, .64, 1),
        box-shadow .3s ease,
        border-color .3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px);
    filter: blur(6px);
}
.platform-card.pc-reveal-in {
    animation: platform-card-in .9s cubic-bezier(.16, 1, .3, 1) forwards;
    animation-delay: var(--enter-delay, 0ms);
}
@keyframes platform-card-in {
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.platform-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 18px 36px rgba(239, 0, 0, 0.14);
    border-color: rgba(239, 0, 0, 0.22);
}
.platform-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 20%, rgba(239, 0, 0, 0.09), transparent 28%);
    opacity: 0.8;
    pointer-events: none;
    transition: opacity .3s ease;
}
.platform-card:hover::before { opacity: 1; }
.platform-logo {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: transparent;
    border: none;
    position: relative;
    z-index: 2;
    overflow: visible;
    align-self: center;
    flex-shrink: 0;
}
.platform-logo img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
    transition: transform .3s cubic-bezier(.16, 1, .3, 1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .12));
}
.platform-card:hover .platform-logo img {
    transform: scale(1.06) rotate(-4deg);
}
.platform-text { position: relative; z-index: 2; min-width: 0; }
.platform-text h3 { font-size: 15px; font-weight: 900; color: #111; margin-bottom: 5px; }
.platform-text p { color: #596174; font-size: 11.5px; line-height: 1.28; font-weight: 600; max-width: 150px; }
.status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 10px;
    border-radius: 7px;
    background: #ffe8e8;
    color: #ef0000;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .3px;
    margin-top: 10px;
    text-transform: capitalize;
}
.status-principal    { background: #ffe5e5; color: #d50000; }
.status-alta         { background: #efe6ff; color: #6c2bd7; }
.status-crescimento  { background: #fff3da; color: #b35d00; }
.status-popular      { background: #ffe1ec; color: #c8195c; }
.status-expansao     { background: #def8e0; color: #1e8a32; }
.status-estrategico  { background: #ffe5e5; color: #d50000; }

.arrow-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #ffe8e8;
    color: #ef0000;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    border: none;
    z-index: 2;
    cursor: pointer;
    transition: background .22s ease, color .22s ease, transform .25s cubic-bezier(.16, 1, .3, 1);
}
.platform-card:hover .arrow-btn {
    background: #ef0000;
    color: #fff;
    transform: translateY(-50%) translateX(2px) scale(1.1);
    box-shadow: 0 8px 18px rgba(239, 0, 0, .35);
}

.vj-benefits { width: min(1200px, 100%); margin: 18px auto 0; background: rgba(255,255,255,0.96); border: 1px solid rgba(15, 15, 15, 0.08); border-radius: 20px; box-shadow: 0 18px 42px rgba(15, 15, 15, 0.08), 0 2px 6px rgba(15, 15, 15, 0.04); display: grid; grid-template-columns: repeat(4, 1fr); padding: 22px; text-align: left; position: relative; z-index: 3; }
.vj-benefit { display: grid; grid-template-columns: 58px 1fr; gap: 14px; align-items: center; padding: 0 20px; position: relative; }
.vj-benefit:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 10px; height: 54px; width: 1px; background: rgba(239,0,0,0.16); }
.vj-benefit-extra { display: none; }
.vj-benefit .benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff2f2 0%, #ffe2e2 100%);
    border: 1px solid rgba(239, 0, 0, 0.12);
    display: grid;
    place-items: center;
    color: #ef0000;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 6px 14px -6px rgba(239, 0, 0, 0.20);
    transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s ease, border-color .2s ease;
}
.vj-benefit .benefit-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}
.vj-benefit:hover .benefit-icon {
    transform: translateY(-2px) rotate(-3deg);
    border-color: rgba(239, 0, 0, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 10px 22px -8px rgba(239, 0, 0, 0.32);
}
.vj-benefit h4 { font-size: 14px; font-weight: 900; color: #171717; margin-bottom: 6px; }
.vj-benefit p { color: #687083; font-size: 12.2px; line-height: 1.36; font-weight: 600; }

@media (max-width: 900px) { .platform-grid { grid-template-columns: 1fr 1fr; } .brand-cube { display: none; } }

.culture-section { width: 100%; min-height: 100vh; padding: 90px 42px 50px; position: relative; overflow: hidden; background: transparent; display: flex; align-items: center; }

.culture-container { width: min(1180px, 100%); margin: 0 auto; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto 1fr; gap: 0 60px; align-items: start; }
.culture-container .visual-area { grid-column: 1; grid-row: 1 / 3; }
.culture-container .text-area { grid-column: 2; grid-row: 1; }
.cultura-bottom { grid-column: 2; grid-row: 2; max-width: 510px; position: relative; z-index: 5; }

.visual-area { position: relative; }
.cultura-stage {
    --orbit-radius: 215px;
    --orbit-size: 100px;
    --orbit-duration: 24s;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    isolation: isolate;
}
.cultura-stage::before {
    content: "";
    position: absolute;
    inset: 22% 22%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(239, 0, 0, .14) 0%, rgba(239, 0, 0, .04) 38%, transparent 70%);
    filter: blur(28px);
    z-index: 0;
    pointer-events: none;
    animation: cultura-glow-pulse 7s cubic-bezier(.45, .05, .55, .95) infinite;
}
.cultura-stage::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(var(--orbit-radius) * 2);
    height: calc(var(--orbit-radius) * 2);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(239, 0, 0, .18);
    z-index: 0;
    pointer-events: none;
}
@keyframes cultura-glow-pulse {
    0%, 100% { opacity: .85; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.06); }
}

.cultura-orbit-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    z-index: 3;
    pointer-events: none;
    will-change: transform;
    animation: cultura-icon-orbit var(--orbit-duration) linear infinite;
    animation-delay: calc(var(--angle-frac, 0) * var(--orbit-duration) * -1);
}
.orbit-slot {
    position: absolute;
    top: calc(var(--orbit-size) / -2);
    left: calc(var(--orbit-radius) - var(--orbit-size) / 2);
    width: var(--orbit-size);
    height: var(--orbit-size);
    animation: cultura-icon-counter var(--orbit-duration) linear infinite;
    animation-delay: calc(var(--angle-frac, 0) * var(--orbit-duration) * -1);
}
.orbit-slot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .22));
}
@keyframes cultura-icon-orbit {
    to { transform: rotate(360deg); }
}
@keyframes cultura-icon-counter {
    to { transform: rotate(-360deg); }
}

.orbit-graficos    { --orbit-size: 112px; }
.orbit-altofalante { --orbit-size: 100px; }
.orbit-pessoas     { --orbit-size: 100px; }
.orbit-presente    { --orbit-size: 112px; }
.orbit-cupom       { --orbit-size: 106px; }
.orbit-formulario  { --orbit-size: 100px; }

.cultura-logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(150px, 42%, 220px);
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    z-index: 2;
    pointer-events: none;
    animation: cultura-logo-breathe 6s cubic-bezier(.45, .05, .55, .95) infinite;
}
.cultura-logo-center img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .18));
}
@keyframes cultura-logo-breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1);    }
    50%      { transform: translate(-50%, -50%) scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
    .cultura-orbit-icon,
    .orbit-slot,
    .cultura-stage::before,
    .cultura-logo-center { animation: none; }
}
.stats-bar { width: 100%; height: 88px; margin-top: 20px; border-radius: 18px; background: rgba(255,255,255,0.96); border: 1px solid rgba(239,0,0,0.12); box-shadow: 0 12px 30px rgba(239,0,0,0.11); display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; padding: 0 16px; }
.stats-bar .stat { display: flex; align-items: center; gap: 13px; height: 54px; padding: 0 14px; position: relative; }
.stats-bar .stat:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 8px; height: 38px; width: 1px; background: rgba(239,0,0,0.14); }
.stats-bar .stat-icon { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: #ffe8e8; color: #ef0000; font-size: 25px; }
.stats-bar .stat strong { display: block; font-size: 24px; line-height: 1; font-weight: 900; color: #111; }
.stats-bar .stat span { display: block; margin-top: 5px; font-size: 10px; color: #5e6677; font-weight: 800; text-transform: uppercase; }

.text-area { max-width: 510px; position: relative; z-index: 5; }
.badge { display: inline-flex; align-items: center; gap: 11px; height: 40px; padding: 0 20px; border-radius: 999px; background: #fff; border: 1px solid rgba(239,0,0,0.24); box-shadow: 0 10px 28px rgba(239,0,0,0.14); color: #ef0000; font-size: 13px; font-weight: 900; letter-spacing: 1.3px; text-transform: uppercase; margin-bottom: 18px; }
.badge-icon { width: 24px; height: 24px; border-radius: 50%; background: #ef0000; color: #fff; display: grid; place-items: center; font-size: 13px; }
.text-area h1 { font-size: clamp(42px, 4.8vw, 68px); line-height: 0.92; letter-spacing: -3.2px; font-weight: 900; color: #050505; margin-bottom: 22px; }
.text-area h1 span { display: block; }
.text-area h1 span:last-child { color: #ef0000; }
.text-area p { color: #5d6576; font-size: 16px; line-height: 1.45; font-weight: 600; margin-bottom: 17px; }
.benefit-list { display: grid; gap: 11px; margin-top: 17px; }
.benefit-card { min-height: 72px; border-radius: 13px; background: rgba(255,255,255,0.97); border: 1px solid rgba(239,0,0,0.14); box-shadow: 0 9px 24px rgba(239,0,0,0.08); display: flex; align-items: center; padding: 14px 20px 14px 16px; gap: 14px; }
.benefit-card > div:nth-of-type(3) { flex: 1; min-width: 0; }
.benefit-card .number { position: static; width: auto; height: auto; background: none; border-radius: 0; color: #ef0000; font-size: 15px; font-weight: 900; min-width: 28px; flex-shrink: 0; }
.benefit-card .benefit-icon { width: 46px; height: 46px; border-radius: 50%; background: #ffe7e7; display: grid; place-items: center; flex-shrink: 0; }
.benefit-card .benefit-icon svg { width: 24px; height: 24px; }
.benefit-card strong { display: block; font-size: 15px; font-weight: 900; color: #111; margin-bottom: 4px; }
.benefit-card span { display: block; color: #6b7280; font-size: 11.5px; font-weight: 600; }
.cta { width: 100%; height: 76px; margin-top: 19px; border: none; border-radius: 14px; background: linear-gradient(135deg, #ff1212, #d80000); box-shadow: 0 18px 34px rgba(239,0,0,0.29), inset 0 1px 0 rgba(255,255,255,0.25); color: #fff; display: flex; align-items: center; justify-content: space-between; padding: 0 32px; cursor: pointer; transition: 0.25s ease; font-family: var(--font); text-decoration: none; }
.cta:hover { transform: translateY(-4px); box-shadow: 0 24px 44px rgba(239,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.25); }
.cta-left { display: flex; align-items: center; gap: 20px; font-size: 22px; font-weight: 900; }
.sparkle { display: flex; align-items: center; filter: drop-shadow(0 0 6px rgba(255,255,255,0.6)); }
.cta-arrow { font-size: 42px; line-height: 1; font-weight: 300; }
.small-note { display: flex; gap: 14px; margin-top: 20px; align-items: flex-start; color: #6b7280; font-size: 12.5px; line-height: 1.35; font-weight: 600; }
.small-note .curve { display: flex; align-items: center; flex-shrink: 0; margin-top: 2px; }
.small-note strong { display: block; color: #ef0000; font-weight: 900; margin-top: 3px; }

html, body { max-width: 100vw; overflow-x: hidden; }
.page, .vagas.jobs-page, .culture-section, .games-section, .footer { max-width: 100%; }

@media (max-width: 720px) {
    .vagas.jobs-page,
    .culture-section,
    .games-section { overflow-x: clip; }
    .platform-card,
    .vj-benefit,
    .benefit-card,
    .info-card { max-width: 100%; }
}

.footer { background: #FAFAFA; border-top: 1px solid #EDEDED; padding: 20px 42px; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: #9E9E9E; }
.logo-footer { display: inline-flex; align-items: center; }
.logo-footer img { height: 26px; width: auto; display: block; }

.mob-carousel-container { display: none; }
.vj-arr,
.benefit-arr {
    display: inline-block;
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffe5e5;
    color: #ef0000;
    flex-shrink: 0;
    margin-left: auto;
    transition: background .22s cubic-bezier(.16, 1, .3, 1), color .22s ease, transform .22s cubic-bezier(.16, 1, .3, 1), box-shadow .22s ease;
    box-shadow: 0 4px 10px -4px rgba(239, 0, 0, .35);
    padding: 0;
    font-size: 0;
}
.vj-arr svg,
.benefit-arr svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%);
    display: block;
}
.vj-benefit:hover .vj-arr,
.benefit-card:hover .benefit-arr {
    background: #ef0000;
    color: #fff;
    transform: translateX(3px);
    box-shadow: 0 8px 18px -4px rgba(239, 0, 0, .55);
}
[data-theme="dark"] .vj-arr,
[data-theme="dark"] .benefit-arr { background: rgba(255, 87, 87, .15); color: #e54848; }
[data-theme="dark"] .vj-benefit:hover .vj-arr,
[data-theme="dark"] .benefit-card:hover .benefit-arr { background: #ef0000; color: #fff; }

@media (max-width: 1180px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 30px; }
  .right { height: 480px; }
  .cards { grid-template-columns: 1fr; }
}

@media (max-width: 1050px) {
  .culture-container { grid-template-columns: 1fr; grid-template-rows: auto; gap: 24px; }
  .culture-container .visual-area { grid-column: 1; grid-row: 2; max-width: 100%; }
  .culture-container .text-area   { grid-column: 1; grid-row: 1; max-width: 100%; }
  .cultura-bottom                 { grid-column: 1; grid-row: 3; max-width: 100%; }
  .cultura-stage { max-width: 480px; margin: 0 auto; aspect-ratio: 1 / 1; }
}
@media (max-width: 720px) {
  .cultura-stage {
    --orbit-radius: 135px;
    --orbit-size: 70px;
    max-width: 360px;
  }
  .orbit-graficos    { --orbit-size: 78px; }
  .orbit-altofalante { --orbit-size: 70px; }
  .orbit-pessoas     { --orbit-size: 70px; }
  .orbit-presente    { --orbit-size: 78px; }
  .orbit-cupom       { --orbit-size: 74px; }
  .orbit-formulario  { --orbit-size: 70px; }
}
@media (max-width: 480px) {
  .cultura-stage {
    --orbit-radius: 100px;
    --orbit-size: 54px;
    max-width: 280px;
  }
  .orbit-graficos    { --orbit-size: 62px; }
  .orbit-altofalante { --orbit-size: 54px; }
  .orbit-pessoas     { --orbit-size: 54px; }
  .orbit-presente    { --orbit-size: 62px; }
  .orbit-cupom       { --orbit-size: 58px; }
  .orbit-formulario  { --orbit-size: 54px; }
}

@media (max-width: 720px) {
  .page { padding: 0 18px 32px; }
  .hero { grid-template-columns: 1fr; padding: 20px 0 16px; gap: 0; }
  h1 { font-size: 34px; letter-spacing: -1.8px; line-height: 1.02; }
  .subtitle { font-size: 14px; max-width: 100%; }
  .buttons { flex-direction: column; gap: 12px; margin-bottom: 28px; width: 100%; align-self: stretch; }
  .btn { width: 100%; height: 62px; font-size: 17px; border-radius: 14px; }
  .btn svg { width: 24px; height: 24px; }
  .left {
    align-self: stretch;
    align-items: center;
    text-align: center;
  }
  .stats {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    width: 100%;
  }
  .stat {
    width: 100%;
    max-width: 240px;
    padding-right: 0;
    justify-content: flex-start;
    gap: 14px;
  }
  .stat:not(:last-child)::after { display: none; }
  .stat > div:last-child { flex: 1; min-width: 0; text-align: left; }
  .right { height: auto; padding: 20px 0 0; }
  .pink-circle { width: 260px; height: 260px; }
  .hero-video-wrap {
    width: 100%; max-width: 100%; margin-left: 0; transform: none;
    aspect-ratio: 16/9; border-radius: 14px;
    box-shadow: 0 8px 28px rgba(220,0,0,0.20);
  }

  .cards { grid-template-columns: 1fr; padding-top: 16px; gap: 10px; }
  .info-card {
    display: flex; align-items: center;
    gap: 14px; min-height: auto; padding: 18px 16px;
  }
  .info-card .number {
    position: static; width: 34px; height: 34px;
    border-radius: 9px; font-size: 12px; flex-shrink: 0;
    background: var(--red-soft); color: var(--red);
    font-weight: 900; display: grid; place-items: center;
  }
  .big-icon { width: 54px; height: 54px; margin-top: 0; flex-shrink: 0; }
  .big-icon svg { width: 28px; height: 28px; }
  .info-content { padding-top: 0; flex: 1; }
  .info-content h3 { font-size: 15px; margin-bottom: 5px; letter-spacing: -0.3px; }
  .info-content p { font-size: 13px; line-height: 1.4; }

  .games-section { padding: 40px 18px 36px; min-height: auto; }
  .gs-title { font-size: 32px; letter-spacing: -1.8px; }
  .gs-subtitle { font-size: 14px; margin-bottom: 16px; }
  .games-box { display: none; }
  .see-all { display: none; }

  .mob-carousel-container {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 16px 0 22px;
    mask-image: linear-gradient(to right,
      transparent 0%,
      rgba(0, 0, 0, 0.4) 5%,
      black 16%,
      black 84%,
      rgba(0, 0, 0, 0.4) 95%,
      transparent 100%);
    -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      rgba(0, 0, 0, 0.4) 5%,
      black 16%,
      black 84%,
      rgba(0, 0, 0, 0.4) 95%,
      transparent 100%);
  }
  .mob-carousel-container::before,
  .mob-carousel-container::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
  }
  .mob-carousel-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), transparent);
  }
  .mob-carousel-container::after {
    right: 0;
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0.9), transparent);
  }
  @keyframes mob-marquee {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
  }
  .mob-marquee-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: mob-marquee 32s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
  }
  .mob-marquee-track:hover { animation-play-state: paused; }

  .mob-mcard {
    width: 220px;
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(239, 0, 0, 0.10);
    box-shadow:
      0 10px 26px -8px rgba(239, 0, 0, 0.22),
      0 22px 48px -16px rgba(239, 0, 0, 0.14),
      0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s ease;
  }
  .mob-mcard:hover,
  .mob-mcard:active {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
      0 16px 36px -10px rgba(239, 0, 0, 0.32),
      0 28px 60px -18px rgba(239, 0, 0, 0.20);
  }
  .mob-card-img {
    position: relative; height: 160px; overflow: hidden;
    background: linear-gradient(135deg, #cc0000, #ff6666);
  }
  .mob-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .mob-card-tag {
    position: absolute; top: 10px; left: 10px; z-index: 2;
    height: 22px; padding: 0 9px; border-radius: 999px;
    background: linear-gradient(135deg, #ff2929, #ce0000);
    color: #fff; font-size: 9px; font-weight: 900;
    display: inline-flex; align-items: center; text-transform: uppercase; letter-spacing: 0.6px;
  }
  .mob-card-foot { display: flex; align-items: center; gap: 10px; padding: 12px 13px; }
  .mob-card-icon { width: 24px; height: 24px; flex-shrink: 0; }
  .mob-card-name { font-size: 13px; font-weight: 900; color: #111; margin-bottom: 2px; }

  .vagas.jobs-page { padding: 40px 18px 32px; min-height: auto; }
  .hero-title { font-size: 34px; letter-spacing: -2px; }
  .hero-subtitle { font-size: 14px; }
  .platform-box { padding: 16px; }
  .platform-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .head-divider { display: none; }
  .platform-grid { grid-template-columns: 1fr; gap: 12px; }
  .platform-card { padding: 16px 56px 16px 16px; gap: 14px; min-height: 88px; align-items: center; }
  .platform-logo { width: 52px; height: 52px; }
  .platform-logo img { width: 52px; height: 52px; }
  .platform-text h3 { font-size: 15px; margin-bottom: 4px; }
  .platform-text p { font-size: 12px; max-width: 100%; line-height: 1.4; }
  .status { font-size: 10px; padding: 0 9px; min-height: 20px; margin-top: 8px; }
  .arrow-btn { width: 34px; height: 34px; font-size: 22px; right: 12px; }
  .vj-benefits {
    display: flex; flex-direction: column;
    gap: 8px; padding: 0; margin-top: 14px;
    background: transparent; border: none; box-shadow: none; width: 100%;
  }
  .vj-benefit-extra { display: flex; }
  .vj-benefit { display: flex; align-items: center; gap: 12px; padding: 13px 14px; background: #fff; border: 1px solid rgba(239,0,0,0.10); border-radius: 13px; }
  .vj-benefit:not(:last-child)::after { display: none; }
  .vj-benefit h4 { font-size: 13px; margin-bottom: 2px; }
  .vj-benefit p { font-size: 11px; }
  .vj-arr { width: 34px; height: 34px; }
  .vj-arr svg { width: 15px; height: 15px; }

  .culture-section { padding: 40px 18px 36px; min-height: auto; }
  .culture-container { grid-template-columns: 1fr; grid-template-rows: auto; gap: 18px; }
  .culture-container .text-area   {
    grid-column: 1; grid-row: 1; max-width: 100%;
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
  }
  .culture-container .visual-area { grid-column: 1; grid-row: 2; }
  .cultura-bottom { grid-column: 1; grid-row: 3; max-width: 100%; }
  .small-note { justify-content: center; }
  .text-area h1 { font-size: 34px; letter-spacing: -1.8px; }
  .text-area p { font-size: 14px; }
  .stats-bar { grid-template-columns: repeat(3, minmax(0, 1fr)); height: auto; padding: 10px 6px; overflow: hidden; gap: 4px; max-width: 100%; }
  .stats-bar .stat { padding: 6px 4px; gap: 6px; height: auto; min-width: 0; }
  .stats-bar .stat > div { min-width: 0; overflow: hidden; }
  .stats-bar .stat-icon { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; }
  .stats-bar .stat-icon svg { width: 14px; height: 14px; }
  .stats-bar .stat strong { font-size: 13.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
  .stats-bar .stat span { font-size: 7px; letter-spacing: .2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
  .stats-bar .stat:not(:last-child)::after { right: -2px; }
  .benefit-list { gap: 8px; margin-top: 14px; }
  .benefit-card { padding: 12px 13px; gap: 10px; min-height: auto; }
  .benefit-card strong { font-size: 13px; }
  .benefit-card span { font-size: 11px; }
  .benefit-arr { width: 34px; height: 34px; }
  .benefit-arr svg { width: 15px; height: 15px; }
  .cta { height: 58px; padding: 0 18px; margin-top: 14px; }
  .cta-left { font-size: 15px; gap: 10px; }
  .cta-arrow { font-size: 26px; }
  .small-note { font-size: 11px; margin-top: 12px; gap: 10px; }

  .footer { padding: 16px 18px; }
  .footer-inner { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 520px) {
  .platform-card { padding: 12px 38px 12px 10px; gap: 8px; }
  .platform-logo { width: 40px; height: 40px; }
  .platform-logo img { width: 40px; height: 40px; }
  .platform-text h3 { font-size: 12px; }
  .platform-text p { font-size: 10px; }
  .platform-text p { display: none; }
}

.flow-section {
    width: 100%;
    padding: 64px 28px 40px;
    background: transparent;
}
.flow-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.flow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: #fff;
    border: 1.5px solid rgba(239, 0, 0, .28);
    border-radius: 999px;
    color: #ef0000;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 10px 24px -10px rgba(239, 0, 0, .35);
    margin-bottom: 18px;
}
.flow-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -1.4px;
    line-height: 1.05;
    color: #0a0a0a;
    margin: 0 0 12px;
}
.flow-title em {
    font-style: normal;
    color: #ef0000;
}
.flow-title strong { color: #ef0000; }
.flow-subtitle {
    color: #6b7284;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 auto 36px;
    max-width: 560px;
}
.flow-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: left;
}
.flow-step {
    position: relative;
    background: #fff;
    border: 1px solid rgba(15, 15, 15, .08);
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 12px 28px -16px rgba(15, 15, 15, .25);
    transition:
        border-color .4s cubic-bezier(.16, 1, .3, 1),
        transform .45s cubic-bezier(.16, 1, .3, 1),
        box-shadow .45s cubic-bezier(.16, 1, .3, 1),
        background .45s cubic-bezier(.16, 1, .3, 1);
    opacity: 0;
    transform: translateY(16px);
    filter: blur(6px);
    overflow: hidden;
    isolation: isolate;
}
.flow-step.pc-reveal-in {
    animation: flow-step-in .9s cubic-bezier(.16, 1, .3, 1) forwards;
    animation-delay: var(--enter-delay, 0ms);
}
@keyframes flow-step-in {
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.flow-step::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(239, 0, 0, .12), transparent 60%);
    opacity: 0;
    transition: opacity .45s cubic-bezier(.16, 1, .3, 1);
    pointer-events: none;
    z-index: 0;
}
.flow-step::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 35%, rgba(239, 0, 0, .12) 50%, transparent 65%);
    transform: translateX(-100%);
    transition: transform .8s cubic-bezier(.16, 1, .3, 1);
    pointer-events: none;
    z-index: 0;
}
.flow-step > * { position: relative; z-index: 1; }
.flow-step:hover {
    border-color: rgba(239, 0, 0, .45);
    transform: translateY(-6px);
    box-shadow: 0 26px 44px -18px rgba(239, 0, 0, .35), 0 8px 16px -10px rgba(15, 15, 15, .18);
}
.flow-step:hover::before { opacity: 1; }
.flow-step:hover::after { transform: translateX(100%); }
.flow-step .flow-step-num {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 11px;
    font-weight: 900;
    color: rgba(239, 0, 0, .55);
    letter-spacing: 1.4px;
    z-index: 3;
    font-variant-numeric: tabular-nums;
    transition: color .3s ease, transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.flow-step:hover .flow-step-num {
    color: #ef0000;
}
.flow-step-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff2929, #d80000);
    color: #fff;
    box-shadow: 0 12px 22px -10px rgba(239, 0, 0, .55);
    margin-bottom: 14px;
    transition:
        transform .55s cubic-bezier(.34, 1.56, .64, 1),
        box-shadow .45s cubic-bezier(.16, 1, .3, 1),
        border-radius .45s cubic-bezier(.16, 1, .3, 1);
}
.flow-step-icon svg { transition: transform .55s cubic-bezier(.34, 1.56, .64, 1); }
.flow-step:hover .flow-step-icon {
    transform: scale(1.08) rotate(-6deg);
    border-radius: 16px;
    box-shadow: 0 18px 32px -10px rgba(239, 0, 0, .7);
}
.flow-step:hover .flow-step-icon svg { transform: scale(1.1) rotate(6deg); }
.flow-step h3 {
    font-size: 16px;
    font-weight: 900;
    color: #0a0a0a;
    letter-spacing: -.3px;
    margin: 0 0 6px;
    transition: color .35s ease;
}
.flow-step:hover h3 { color: #ef0000; }
.flow-step p {
    color: #6b7284;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
}

.calc-section {
    width: 100%;
    padding: 32px 28px 80px;
}
.calc-container {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(15, 15, 15, .08);
    border-radius: 22px;
    box-shadow: 0 24px 56px -22px rgba(15, 15, 15, .22);
    padding: 36px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}
.calc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(239, 0, 0, .08);
    border-radius: 999px;
    color: #ef0000;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.calc-title {
    font-size: clamp(26px, 3.6vw, 38px);
    font-weight: 900;
    letter-spacing: -1.2px;
    line-height: 1.05;
    color: #0a0a0a;
    margin: 0 0 10px;
}
.calc-title em { font-style: normal; color: #ef0000; }
.calc-subtitle {
    color: #6b7284;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    margin: 0 0 24px;
}
.calc-field { margin-bottom: 18px; }
.calc-label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 8px;
}
.calc-label span {
    font-size: 12px;
    font-weight: 800;
    color: #6b7284;
    text-transform: uppercase;
    letter-spacing: .6px;
}
.calc-label strong {
    font-size: 22px;
    font-weight: 900;
    color: #ef0000;
    line-height: 1;
}
.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ef0000 0%, #ef0000 var(--pf, 33%), rgba(15, 15, 15, .08) var(--pf, 33%));
    outline: none;
    cursor: pointer;
    transition: background .3s ease;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #ef0000;
    cursor: grab;
    box-shadow: 0 8px 16px -6px rgba(239, 0, 0, .55);
    transition: transform .2s cubic-bezier(.16, 1, .3, 1);
}
.calc-slider::-webkit-slider-thumb:active { transform: scale(1.15); cursor: grabbing; }
.calc-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #ef0000;
    cursor: grab;
    box-shadow: 0 8px 16px -6px rgba(239, 0, 0, .55);
}
.calc-marks {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: #9aa0ad;
    font-size: 10px;
    font-weight: 700;
}
.calc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 13px 22px;
    background: linear-gradient(135deg, #ff2929, #d80000);
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 32px -12px rgba(239, 0, 0, .55);
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s ease;
}
.calc-cta:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -12px rgba(239, 0, 0, .7); }
.calc-cta svg { transition: transform .3s cubic-bezier(.16, 1, .3, 1); }
.calc-cta:hover svg { transform: translateX(4px); }
.calc-right {
    background: linear-gradient(135deg, #fff5f5, #fff);
    border: 1px solid rgba(239, 0, 0, .14);
    border-radius: 16px;
    padding: 28px 24px;
}
.calc-card { text-align: center; margin-bottom: 18px; }
.calc-card-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #ef0000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.calc-card-value {
    display: inline-block;
    font-size: 42px;
    font-weight: 900;
    color: #0a0a0a;
    letter-spacing: -1.4px;
    line-height: 1;
    transition: color .35s cubic-bezier(.16, 1, .3, 1);
    position: relative;
}
.calc-card-value.is-up {
    animation: calc-up .6s cubic-bezier(.16, 1, .3, 1);
}
.calc-card-value.is-down {
    animation: calc-down .6s cubic-bezier(.16, 1, .3, 1);
}
@keyframes calc-up {
    0%   { transform: translateY(18px) scale(.92); opacity: 0; color: #22c55e; text-shadow: 0 0 0 rgba(34, 197, 94, 0); }
    35%  { transform: translateY(-6px) scale(1.06); opacity: 1; color: #22c55e; text-shadow: 0 8px 22px rgba(34, 197, 94, .45); }
    70%  { transform: translateY(0) scale(1); color: #22c55e; text-shadow: 0 4px 12px rgba(34, 197, 94, .25); }
    100% { transform: translateY(0) scale(1); color: #0a0a0a; text-shadow: 0 0 0 rgba(34, 197, 94, 0); }
}
@keyframes calc-down {
    0%   { transform: translateY(-18px) scale(.92); opacity: 0; color: #ef0000; text-shadow: 0 0 0 rgba(239, 0, 0, 0); }
    35%  { transform: translateY(6px) scale(1.02); opacity: 1; color: #ef0000; text-shadow: 0 8px 22px rgba(239, 0, 0, .45); }
    70%  { transform: translateY(0) scale(1); color: #ef0000; text-shadow: 0 4px 12px rgba(239, 0, 0, .25); }
    100% { transform: translateY(0) scale(1); color: #0a0a0a; text-shadow: 0 0 0 rgba(239, 0, 0, 0); }
}
[data-theme="dark"] .calc-card-value.is-up,
[data-theme="dark"] .calc-card-value.is-down {
    animation-name: calc-up-dark;
}
[data-theme="dark"] .calc-card-value.is-down { animation-name: calc-down-dark; }
@keyframes calc-up-dark {
    0%   { transform: translateY(18px) scale(.92); opacity: 0; color: #6ee08a; }
    35%  { transform: translateY(-6px) scale(1.06); opacity: 1; color: #6ee08a; text-shadow: 0 8px 22px rgba(110, 224, 138, .55); }
    100% { transform: translateY(0) scale(1); color: var(--text); text-shadow: 0 0 0 transparent; }
}
@keyframes calc-down-dark {
    0%   { transform: translateY(-18px) scale(.92); opacity: 0; color: #ff7a7a; }
    35%  { transform: translateY(6px) scale(1.02); opacity: 1; color: #ff7a7a; text-shadow: 0 8px 22px rgba(255, 122, 122, .55); }
    100% { transform: translateY(0) scale(1); color: var(--text); text-shadow: 0 0 0 transparent; }
}
.calc-card-range {
    display: block;
    font-size: 12px;
    color: #6b7284;
    font-weight: 700;
    margin-top: 8px;
}
.calc-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.calc-perks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: #2a2f3a;
}
.calc-perks svg {
    flex-shrink: 0;
    color: #fff;
    background: #ef0000;
    border-radius: 50%;
    padding: 3px;
    box-sizing: content-box;
}
.calc-disclaimer { font-size: 10.5px; color: #9aa0ad; line-height: 1.4; font-weight: 500; margin: 0; }

.testi-section {
    width: 100%;
    padding: 64px 28px 40px;
}
.testi-section[hidden] { display: none; }
.testi-container { max-width: 1200px; margin: 0 auto; }
.testi-head { text-align: center; margin-bottom: 36px; }
.testi-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: #fff;
    border: 1.5px solid rgba(239, 0, 0, .28);
    border-radius: 999px;
    color: #ef0000;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 10px 24px -10px rgba(239, 0, 0, .35);
    margin-bottom: 16px;
}
.testi-title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -1.4px; line-height: 1.05; color: #0a0a0a; margin: 0 0 10px; }
.testi-title em { font-style: normal; color: #ef0000; }
.testi-subtitle { color: #6b7284; font-size: 15px; font-weight: 600; max-width: 540px; margin: 0 auto; }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}
.testi-card {
    background: #fff;
    border: 1px solid rgba(15, 15, 15, .08);
    border-radius: 16px;
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s ease, border-color .35s ease;
    animation: flow-step-in .5s cubic-bezier(.16, 1, .3, 1) backwards;
    animation-delay: var(--enter-delay, 0ms);
}
.testi-card:hover {
    transform: translateY(-3px);
    border-color: rgba(239, 0, 0, .35);
    box-shadow: 0 22px 38px -18px rgba(239, 0, 0, .25);
}
.testi-card-head { display: flex; align-items: center; gap: 12px; }
.testi-card-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #ff6b6b, #d80000);
    flex-shrink: 0;
}
.testi-card-name { font-size: 14px; font-weight: 900; color: #0a0a0a; line-height: 1.2; margin: 0 0 2px; }
.testi-card-plat { font-size: 11px; font-weight: 700; color: #6b7284; }
.testi-card-quote { font-size: 13.5px; line-height: 1.55; color: #2a2f3a; font-weight: 500; margin: 0; }
.testi-card-quote::before { content: "\201C"; font-size: 22px; color: #ef0000; font-weight: 900; line-height: 0; margin-right: 2px; }
.testi-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ef0000;
    font-size: 11.5px;
    font-weight: 800;
    text-decoration: none;
    margin-top: auto;
    transition: color .25s ease;
}
.testi-card-link:hover { color: #c41a1a; text-decoration: underline; }

.faq-section { width: 100%; padding: 24px 28px 80px; }
.faq-container { max-width: 760px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 32px; }
.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: #fff;
    border: 1.5px solid rgba(239, 0, 0, .28);
    border-radius: 999px;
    color: #ef0000;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 10px 24px -10px rgba(239, 0, 0, .35);
    margin-bottom: 16px;
}
.faq-title { font-size: clamp(26px, 3.6vw, 40px); font-weight: 900; letter-spacing: -1.2px; line-height: 1.05; color: #0a0a0a; margin: 0 0 10px; }
.faq-title em { font-style: normal; color: #ef0000; }
.faq-subtitle { color: #6b7284; font-size: 14.5px; font-weight: 600; max-width: 500px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.faq-item {
    background: #fff;
    border: 1px solid rgba(15, 15, 15, .08);
    border-radius: 12px;
    transition: border-color .3s ease, box-shadow .3s ease;
    overflow: hidden;
}
.faq-item[open] {
    border-color: rgba(239, 0, 0, .35);
    box-shadow: 0 14px 28px -16px rgba(239, 0, 0, .3);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14.5px;
    font-weight: 800;
    color: #0a0a0a;
    transition: color .25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { flex: 1; }
.faq-chev {
    flex-shrink: 0;
    color: #ef0000;
    transition: transform .3s cubic-bezier(.16, 1, .3, 1);
}
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-item summary:hover { color: #ef0000; }
.faq-body {
    padding: 0 20px 18px 56px;
    color: #4a5161;
    font-size: 13.5px;
    line-height: 1.55;
    font-weight: 500;
}
.faq-body p { margin: 0; }
.faq-cta-wrap { text-align: center; }
.faq-cta-wrap p { color: #6b7284; font-size: 13px; font-weight: 600; margin: 0 0 12px; }
.faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: linear-gradient(135deg, #ff2929, #d80000);
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 32px -12px rgba(239, 0, 0, .55);
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s ease;
}
.faq-cta:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -12px rgba(239, 0, 0, .7); }
.faq-cta svg { transition: transform .3s cubic-bezier(.16, 1, .3, 1); }
.faq-cta:hover svg { transform: translateX(4px); }

.pc-float-cta {
    position: fixed;
    left: 18px;
    right: auto;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #ff2929, #d80000);
    color: #fff;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 36px -10px rgba(239, 0, 0, .55), 0 4px 10px rgba(0, 0, 0, .15);
    opacity: 0;
    transform: translateY(20px) scale(.95);
    pointer-events: none;
    transition:
        opacity .45s cubic-bezier(.16, 1, .3, 1),
        transform .45s cubic-bezier(.16, 1, .3, 1),
        box-shadow .3s ease;
    z-index: 90;
}
.pc-float-cta.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.pc-float-cta:hover { box-shadow: 0 22px 44px -10px rgba(239, 0, 0, .7), 0 6px 14px rgba(0, 0, 0, .2); }
.pc-float-cta-icon {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
}

.hero-video-wrap.has-facade { cursor: pointer; position: relative; overflow: hidden; }
.hero-video-facade {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: inherit;
}
.hero-video-facade::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0) 50%, rgba(15, 15, 15, .55) 100%);
}
.hero-video-facade::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 50px;
    background: rgba(239, 0, 0, .92);
    border-radius: 14px;
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 36px -8px rgba(239, 0, 0, .55);
    transition: transform .25s cubic-bezier(.16, 1, .3, 1), background .25s ease;
}
.hero-video-facade-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
    pointer-events: none;
}
.hero-video-wrap.has-facade:hover .hero-video-facade::after { transform: translate(-50%, -50%) scale(1.08); }

[data-theme="dark"] .cultura-main-img { filter: brightness(.92) saturate(.95); }

[data-theme="dark"] .flow-badge,
[data-theme="dark"] .testi-badge,
[data-theme="dark"] .faq-badge {
    background: var(--surface);
    border-color: rgba(229, 72, 72, .35);
    color: #e54848;
    box-shadow: 0 10px 24px -10px rgba(0, 0, 0, .55);
}
[data-theme="dark"] .flow-title,
[data-theme="dark"] .calc-title,
[data-theme="dark"] .testi-title,
[data-theme="dark"] .faq-title { color: var(--text); }
[data-theme="dark"] .flow-title em,
[data-theme="dark"] .flow-title strong,
[data-theme="dark"] .calc-title em,
[data-theme="dark"] .testi-title em,
[data-theme="dark"] .faq-title em { color: #e54848; }
[data-theme="dark"] .flow-subtitle,
[data-theme="dark"] .calc-subtitle,
[data-theme="dark"] .testi-subtitle,
[data-theme="dark"] .faq-subtitle,
[data-theme="dark"] .faq-cta-wrap p { color: var(--text-3); }
[data-theme="dark"] .flow-step,
[data-theme="dark"] .calc-container,
[data-theme="dark"] .testi-card,
[data-theme="dark"] .faq-item {
    background: var(--surface);
    border-color: var(--border-soft);
    box-shadow: 0 14px 32px -16px rgba(0, 0, 0, .55);
}
[data-theme="dark"] .flow-step h3,
[data-theme="dark"] .flow-step:hover h3,
[data-theme="dark"] .testi-card-name,
[data-theme="dark"] .faq-item summary { color: var(--text); }
[data-theme="dark"] .flow-step p,
[data-theme="dark"] .testi-card-quote,
[data-theme="dark"] .calc-perks li { color: var(--text-2); }
[data-theme="dark"] .testi-card-plat,
[data-theme="dark"] .calc-label span,
[data-theme="dark"] .faq-body { color: var(--text-3); }
[data-theme="dark"] .calc-card-label { color: #e54848; }
[data-theme="dark"] .calc-card-value { color: var(--text); }
[data-theme="dark"] .calc-card-range,
[data-theme="dark"] .calc-marks,
[data-theme="dark"] .calc-disclaimer { color: var(--text-faint); }
[data-theme="dark"] .calc-right {
    background: linear-gradient(135deg, rgba(229, 72, 72, .08), var(--surface-2));
    border-color: rgba(229, 72, 72, .25);
}
[data-theme="dark"] .calc-slider {
    background: linear-gradient(90deg, #ef0000 0%, #ef0000 var(--pf, 33%), rgba(255, 255, 255, .12) var(--pf, 33%));
}
[data-theme="dark"] .calc-label strong { color: #e54848; }

@media (max-width: 900px) {
    .flow-steps { grid-template-columns: 1fr 1fr; gap: 14px; }
    .calc-container { grid-template-columns: 1fr; padding: 26px 22px; gap: 24px; }
    .testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .flow-section, .testi-section { padding: 44px 18px 28px; }
    .calc-section { padding: 22px 18px 56px; }
    .faq-section { padding: 18px 18px 56px; }
    .flow-steps { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .faq-body { padding-left: 20px; }
    .calc-card-value { font-size: 36px; }
    .pc-float-cta { left: 14px; right: auto; bottom: 14px; padding: 11px 16px; font-size: 12.5px; }
}

.info-card,
.calc-left,
.calc-right,
.games-box,
.vj-benefit,
.benefit-card,
.faq-item {
    opacity: 0;
    transform: translateY(36px);
    filter: blur(7px);
    transition:
        opacity 1.05s cubic-bezier(.16, 1, .3, 1),
        transform 1.05s cubic-bezier(.16, 1, .3, 1),
        filter 1.05s cubic-bezier(.16, 1, .3, 1);
    will-change: opacity, transform, filter;
}
.info-card.pc-reveal-in,
.calc-left.pc-reveal-in,
.calc-right.pc-reveal-in,
.games-box.pc-reveal-in,
.vj-benefit.pc-reveal-in,
.benefit-card.pc-reveal-in,
.faq-item.pc-reveal-in {
    opacity: 1;
    transform: none;
    filter: none;
}

.pc-scroll-cue {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 95;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ef0000;
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(239, 0, 0, .22);
    box-shadow: 0 10px 26px -10px rgba(239, 0, 0, .4), 0 2px 6px rgba(0, 0, 0, .07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
    opacity: 1;
    transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}
.pc-scroll-cue.is-hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(28px);
}
.pc-cue-chev {
    animation: pc-cue-bounce 2.4s cubic-bezier(.45, .05, .55, .95) infinite;
}
@keyframes pc-cue-bounce {
    0%, 100% { transform: translateY(-2px); }
    50%      { transform: translateY(3px); }
}
[data-theme="dark"] .pc-scroll-cue {
    color: #ff5757;
    background: rgba(24, 24, 24, .72);
    border-color: rgba(255, 87, 87, .32);
    box-shadow: 0 10px 26px -10px rgba(0, 0, 0, .55), 0 2px 6px rgba(0, 0, 0, .3);
}

.pc-fade-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 132px;
    z-index: 80;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 58%, rgba(255, 255, 255, .82) 100%);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 52%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 52%);
    opacity: 1;
    transition: opacity .55s cubic-bezier(.16, 1, .3, 1);
}
.pc-fade-bottom.is-hidden { opacity: 0; }
[data-theme="dark"] .pc-fade-bottom {
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, .5) 58%, rgba(15, 15, 15, .82) 100%);
}
@media (max-width: 768px) {
    .pc-fade-bottom { height: 104px; }
}

@media (max-width: 768px) {
    .pc-scroll-cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .info-card,
    .calc-left,
    .calc-right,
    .games-box,
    .vj-benefit,
    .benefit-card,
    .faq-item,
    .platform-card,
    .flow-step {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        animation: none !important;
        transition: none !important;
    }
    .pc-cue-chev { animation: none; }
}
