/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0 48px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0A0A0A;
  overflow: hidden;
}

.hero-bg img,
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center; 
  transform: translateX(15%);
  opacity: .90;
  filter: grayscale(10%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0) 30%, rgba(10,10,10,.95) 100%),
    linear-gradient(to right, #0A0A0A 0%, #0A0A0A 15%, rgba(10,10,10,.8) 35%, rgba(10,10,10,0) 75%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  padding-top: 120px;
}

.hero-kicker {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-kicker::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--red);
}

.hero-h1 {
  font-family: var(--font-h);
  font-size: clamp(60px, 8vw, 120px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-h1 .line-inv {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 4px 20px 12px;
  border-radius: 8px;
}
.hero-h1 .line-lime {
  display: inline-block;
  background: var(--lime);
  color: var(--black);
  padding: 4px 20px 12px;
  border-radius: 8px;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 48px;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(240, 237, 230, .6);
  max-width: 400px;
}
.hero-desc strong {
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 32px;
}
.hero-stat-val {
  font-family: var(--font-h);
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--lime);
}
.hero-stat-label {
  font-family: var(--font-m);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgb(196, 196, 196);
  margin-top: 3px;
}

.hero-scroll {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: center;
}
.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--muted);
}

/* ═══════════════════════════════
   MARQUEE
═══════════════════════════════ */
.marquee {
  background: var(--red);
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.marquee-track {
  display: flex;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
  gap: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}
.marquee-item .sep {
  color: var(--lime);
  font-size: 10px;
}

/* ═══════════════════════════════
   CARDS CARROSSEL
═══════════════════════════════ */
.cards-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.cards-intro-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.filter-btn {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(240, 237, 230, .15);
  background: transparent;
  color: rgba(240, 237, 230, .5);
  cursor: none;
  transition: all .2s;
}
.filter-btn.on,
.filter-btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.carousel-hint {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.carousel-hint::after {
  content: '→';
  color: var(--red);
}
.carousel-wrap {
  overflow: hidden;
  margin: 0 -48px;
  padding: 0 48px 40px;
  cursor: grab;
}
.carousel-wrap:active {
  cursor: grabbing;
}
.carousel-track {
  display: flex;
  gap: 14px;
  transition: transform .4s cubic-bezier(.25, .46, .45, .94);
  user-select: none;
}
.photo-card {
  flex-shrink: 0;
  width: 320px;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: none;
  border: 1px solid rgba(255, 255, 255, .06);
  
}
.photo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10,10,10,.92) 0%, rgba(10,10,10,.4) 50%, rgba(10,10,10,0) 100%);
  transition: opacity .3s;
}
.photo-card:hover::before {
  background: linear-gradient(to top, rgba(10,10,10,.96) 0%, rgba(10,10,10,.6) 60%, rgba(10,10,10,.1) 100%);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25, .46, .45, .94), filter .3s;
  filter: grayscale(15%);
}
.photo-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.photo-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px 22px 20px;
  width: 90%; 
  max-width: 1100px;
}
.photo-card-cat {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, .5);
  margin-bottom: 10px;
}
.photo-card-stat {
  font-family: var(--font-h);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.photo-card-stat small {
  font-size: 24px;
}
.photo-card-hl {
  display: inline-block;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 10px 5px;
  border-radius: 5px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.photo-card-hl.red {
  background: var(--red);
  color: var(--white);
}
.photo-card-hl.orange {
  background: var(--orange);
  color: var(--white);
}
.photo-card-desc {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(240, 237, 230, .6);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .3s;
  opacity: 0;
}
.photo-card:hover .photo-card-desc {
  max-height: 80px;
  opacity: 1;
}
.photo-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.photo-card-more {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s .1s, transform .3s .1s;
}
.photo-card:hover .photo-card-more {
  opacity: 1;
  transform: translateY(0);
}
.photo-card-more::after {
  content: '→';
}
.photo-card-share {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  border: none;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s .15s, transform .2s, background .2s;
}
.photo-card:hover .photo-card-share {
  opacity: 1;
}
.photo-card-share:hover {
  background: var(--lime);
  transform: scale(1.1);
}
.photo-card-share svg {
  width: 14px;
  height: 14px;
}
.photo-card-share:hover path {
  stroke: #0A0A0A;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(240, 237, 230, .2);
  cursor: none;
  transition: all .3s;
}
.dot.on {
  width: 36px;
  border-radius: 6px;
  background: var(--white);
}
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.carousel-container {
  position: relative;
  width: 100%;
}
.nav-arrow {
  position: absolute;
  top: 40%; 
  transform: translateY(-50%);
  z-index: 20; 
  background: rgba(10, 10, 10, 0.15); 
  backdrop-filter: blur(1px); 
  border: 1.5px solid var(--lime); 
  color: var(--lime); 
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.nav-arrow:hover {
  background: var(--lime); 
  color: var(--black);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 16px rgba(200, 241, 53, 0.4); 
}
.nav-arrow.left { left: 20px; }
.nav-arrow.right { right: 20px; }
.nav-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ═══════════════════════════════
   SEÇÃO: SOBRE AS BETS E COLAGEM 3D
═══════════════════════════════ */
.hl-red  { color: var(--red); }
.hl-lime { color: var(--lime); }

.section-truque {
  padding: 120px 48px;
  background: #0A0A0A;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.truque-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Textos da seção */
.truque-text h2 {
  font-family: var(--font-h);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900; 
  line-height: .9;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.truque-text p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(240, 237, 230, .7);
  margin-bottom: 40px;
  max-width: 450px;
}

/* --- ESTRUTURA DA COLAGEM 3D --- */
.truque-visual-collage {
  position: relative;
  height: 500px;
  width: 100%;
  perspective: 1200px;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cp-item {
  position: absolute;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}

/* --- ELEMENTOS DE FUNDO --- */
.cp-base {
  width: 90%;
  height: 100%;
  object-fit: contain;
  transform: translateZ(0);
  z-index: 1;
}

.cp-grid {
  width: 32%;
  height: 50%;
  left: 18%;
  top: 15%;
  background-color: rgba(240, 237, 230, 0.95);
  background-size: 20px 20px;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
  border-radius: 4px;
  transform: translateZ(10px) rotate(-4deg);
  z-index: 2;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.3);
}

.cp-math {
  width: 25%;
  height: 38%;
  top: 25%;
  right: 12%;
  z-index: 2;
  background-color: #EAE6DF;
  border-radius: 2px;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.4);
  transform: translateZ(15px) rotate(8deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: clamp(10px, 1.5vw, 14px);
  color: #333;
  opacity: 0.85;
}
.cp-math .red-ink {
  color: var(--red);
  font-weight: 700;
  border: 1px solid var(--red);
  padding: 2px 6px;
  transform: rotate(-5deg);
}

/* --- ELEMENTOS MENORES (SVGs) --- */
.cp-block {
  width: 50px;
  height: 50px;
  top: 13%;
  left: 25%;
  z-index: 5;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  transform: translateZ(45px) rotate(15deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cp-block svg { width: 60%; height: 60%; }

.cp-clip {
  width: 60px;
  height: 60px;
  bottom: 18%;
  right: 8%;
  z-index: 6;
  transform: translateZ(80px) rotate(20deg);
  filter: drop-shadow(0 6px 8px rgba(0,0,0,0.6));
}

/* --- IMAGENS FLUTUANTES (Agrupadas) --- */
.cp-slot {
  width: 36%;
  z-index: 4;
  transform: translateZ(30px);
}

.cp-chips {
  width: 44%;
  bottom: 0%; 
  left: 6%;   
  z-index: 5;
  transform: rotate(-10deg) translateZ(50px);
}

.cp-plane {
  width: 38%;
  top: 10%;    
  left: 6%;   
  z-index: 6;
  transform: rotate(-15deg) translateZ(60px);
}

.cp-dice {
  width: 34%;
  top: 2%;     
  right: 8%;  
  transform: rotate(10deg) translateZ(70px);
  z-index: 10 !important;
}

.cp-chess {
  width: 26%;
  bottom: 0%; 
  right: 12%;  
  z-index: 5 !important;
  transform: rotate(10deg) translateZ(65px);
}

/* --- TÍTULO DO RECORTE --- */
.cp-title-box {
  position: absolute;
  bottom: 16%;
  z-index: 6;
  background: #EAE6DF;
  color: #111;
  font-family: var(--font-h);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  padding: 6px 20px 10px;
  border-radius: 4px;
  transform: translateZ(80px) rotate(-3deg);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 20px rgba(0,0,0,0.6);
}

/* --- EFEITO HOVER (A EXPLOSÃO 3D) --- */
.truque-visual-collage:hover .cp-slot { transform: translateZ(60px) scale(1.05); }
.truque-visual-collage:hover .cp-chips { transform: rotate(-20deg) translateZ(70px) translateX(-5px) translateY(5px); }
.truque-visual-collage:hover .cp-plane { transform: rotate(-40deg) translateZ(80px) translateX(-10px) translateY(-10px); }
.truque-visual-collage:hover .cp-dice { transform: rotate(25deg) translateZ(70px) translateX(10px) translateY(-5px); }
.truque-visual-collage:hover .cp-chess { transform: rotate(12deg) translateZ(90px) translateX(5px) translateY(5px); }
.truque-visual-collage:hover .cp-block { transform: translateZ(80px) rotate(25deg) scale(1.1); }
.truque-visual-collage:hover .cp-clip { transform: translateZ(90px) rotate(30deg); }
.truque-visual-collage:hover .cp-title-box { transform: translateZ(120px) rotate(0deg) scale(1.05); }

/* --- RESPONSIVIDADE MOBILE DA COLAGEM --- */
@media (max-width: 768px) {
  .truque-visual-collage { height: 380px; } 
  .cp-slot { width: 30%; } 
  .cp-chips { width: 38%; bottom: 5%; left: 2%; } 
  .cp-plane { width: 32%; top: 8%; left: 10%; } 
  .cp-dice { width: 26%; right: 2%; top: 2%; } 
  .cp-chess { width: 20%; right: 6%; bottom: 6%; } 
  .cp-math { width: 35%; top: 15%; font-size: 9px; right: 5%; }
  .cp-block { width: 35px; height: 35px; top: 10%; left: 20%; }
  .cp-clip { width: 45px; height: 45px; right: 5%; bottom: 25%; }
  .cp-title-box { font-size: 24px; bottom: 12%; padding: 6px 16px; }
}

/* ═══════════════════════════════
   SEÇÃO: A BANCA NÃO JOGA (CTA SIMULADOR)
═══════════════════════════════ */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 48px;
  border-top: 1px solid var(--gray2);
}
.about-big {
  font-family: var(--font-h);
  font-size: clamp(50px, 7vw, 80px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.about-big .hl-red  { color: var(--red); }
.about-big .hl-lime { color: var(--lime); }
.about-body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(240, 237, 230, .65);
  margin: 24px 0 32px;
}
.about-body strong {
  color: var(--white);
}

/* ═══════════════════════════════
   TEASER ANIMADO SIMULADOR (FRUFRU)
═══════════════════════════════ */
.sim-teaser-box {
  background: #0A0A0A;
  border: 1px solid var(--gray2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
  font-family: var(--font-m);
  transform: rotate(2deg); /* Mantive aquele tilt charmoso */
  transition: transform 0.3s ease;
}

.sim-teaser-box:hover {
  transform: rotate(0deg);
}

.st-header {
  background: #111;
  padding: 12px 20px;
  border-bottom: 1px solid var(--gray2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.st-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

/* Animação do Ponto Vermelho Piscando (Gravação) */
.st-dot.pulse {
  animation: redPulse 1.5s infinite;
}

@keyframes redPulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 50, 10, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(232, 50, 10, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 50, 10, 0); }
}

.st-title {
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.1em;
  font-weight: 700;
}

.st-body {
  padding: 30px 24px;
  position: relative;
}

.st-label {
  font-size: 12px;
  color: rgba(240, 237, 230, .5);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.st-value {
  font-family: var(--font-h);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(232, 50, 10, 0.4);
}

.st-graph {
  width: 100%;
  height: 80px;
}

.st-graph svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Anima a linha do gráfico correndo para baixo */
.graph-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 3.5s linear infinite;
}

@keyframes drawLine {
  0% { stroke-dashoffset: 200; }
  40% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}

.st-footer {
  background: #151515;
  padding: 12px 24px;
  border-top: 1px solid var(--gray2);
  font-size: 11px;
  color: var(--lime);
}

/* ═══════════════════════════════
   SEÇÃO: CTA CASOS REAIS
═══════════════════════════════ */
.cases-cta {
  padding: 80px 48px;
  background: var(--black);
  border-top: 1px solid var(--gray2);
}

.cases-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cases-video-frame {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray2);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cases-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  display: block;
}

.cases-cta-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}

.cases-cta-text p {
  margin-bottom: 32px; 
  max-width: 450px;
}

/* ═══════════════════════════════
   SEÇÃO: CTA FÓRUM
═══════════════════════════════ */
.cta-forum-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-forum-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; 
  border: 1px solid var(--gray2);
  border-left: 5px solid var(--lime);
  border-radius: 20px;
  background: var(--gray);
  min-height: 480px;
  padding-right: 48px; 
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

.cta-forum-content {
  padding: 56px 0 56px 48px;
}

.forum-chat-window {
  background: #0D0D0D;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  height: 420px;
  display: flex;
  flex-direction: column;
}

.chat-header {
  background: #141414;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1f1f1f;
  flex-shrink: 0;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-icon {
  font-size: 18px;
}

.chat-title {
  font-family: var(--font-b);
  font-weight: 700;
  color: var(--white);
  font-size: 15px;
}

.chat-status {
  font-size: 11px;
  color: var(--lime);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chat-body {
  padding: 20px;
  flex: 1;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 100%);
}

.chat-msg-wrapper {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  animation: slideInUp 0.4s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.chat-msg-wrapper.user-msg {
  flex-direction: row-reverse;
}

.chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2a2a2a;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--white);
}

.chat-msg {
  background: #1a1a1a;
  padding: 12px 16px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(240,237,230,.9);
  max-width: 80%;
}

.chat-msg-wrapper.user-msg .chat-msg {
  background: #1b2614;
  border: 1px solid rgba(200,241,53,.1);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 4px;
}

.chat-msg strong { color: var(--white); }

.chat-msg.user-msg {
  background: #141d08;
  border: 1px solid rgba(200,241,53,.15);
  align-self: flex-end;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 4px;
}

.chat-meta {
  display: block;
  font-size: 11px;
  margin-bottom: 4px;
  color: rgba(240,237,230,.4);
  font-weight: 600;
}

.chat-footer {
  padding: 14px 20px;
  background: #141414;
  border-top: 1px solid #1f1f1f;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
}

.typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.typing-indicator.active { opacity: 1; }

.typing-indicator span {
  width: 5px;
  height: 5px;
  background: var(--muted);
  border-radius: 50%;
  animation: typing 1.4s infinite both;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

.typing-text {
  font-size: 12px;
  color: rgba(240,237,230,.4);
  font-style: italic;
  opacity: 0;
  transition: opacity 0.3s;
}

.typing-text.active { opacity: 1; }

@keyframes typing {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

@keyframes slideInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════
   SEÇÃO: BETBLOCK
═══════════════════════════════ */
.betblock-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.betblock-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.btn-main.ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-main.ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.betblock-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  
}

/* O Terminal flutuante */
.wl-visual {
  background: #0A0A0A;
  border: 1px solid var(--gray2);
  border-radius: 12px;
  overflow: hidden;
  font-family: var(--font-m);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transform: rotate(2deg); 
  transition: transform 0.3s ease;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  gap: 60px;
}

.wl-visual:hover {
  transform: rotate(0deg);
}

.wl-header {
  background: #151515;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--gray2);
}

.wl-header .dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.wl-title {
  margin-left: 10px;
  color: rgba(240, 237, 230, .4);
  font-size: 12px;
  letter-spacing: .05em;
}

.wl-body {
  padding: 32px 24px;
  color: rgba(240, 237, 230, .7);
  font-size: 14px;
  line-height: 2.2;
}

.wl-key { color: var(--lime); }
.wl-value { color: #A8D8FF; }

.wl-line.hl-line {
  background: rgba(232, 50, 10, 0.08);
  border-left: 2px solid var(--red);
  padding-left: 10px;
  margin-left: -12px;
}

.wl-line.indent { padding-left: 24px; }

/* Responsivo */
@media (max-width: 768px) {
  .betblock-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .betblock-visual {
    justify-content: center;
  }
}

/* ═══════════════════════════════
   BOTÕES GERAIS E COMPONENTES
═══════════════════════════════ */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--black);
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  text-decoration: none;
  border: none;
  cursor: none;
  transition: background .2s, transform .15s;
}
.btn-main:hover {
  background: var(--lime);
  transform: translateY(-2px);
}
.btn-main .arr { transition: transform .2s; }
.btn-main:hover .arr { transform: translateX(4px); }


/* ═══════════════════════════════
   SEÇÃO DE AJUDA
═══════════════════════════════ */
.help-group {
  margin: 0 auto 80px auto;
}
.help-group:last-child {
  margin-bottom: 0;
}

.help-group-title {
  font-family: var(--font-m);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.help-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray2);
}

.help-group-title span { color: var(--white); }
.help-group-title.lime span { color: var(--lime); }
.help-group-title.danger span { color: var(--red); }

.lf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.lf-card {
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.lf-card:hover {
  border-color: rgba(240, 237, 230, .2);
  transform: translateY(-5px);
  background: #1e1e1e;
}

.help-group-title.lime + .lf-grid .lf-card:hover { border-color: var(--lime); }
.help-group-title.danger + .lf-grid .lf-card:hover { border-color: var(--red); }

.lf-card-icon { font-size: 40px; margin-bottom: 20px; }

.lf-card h3 {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.lf-card p {
  font-size: 14px;
  color: rgba(240, 237, 230, .6);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.lf-link {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lime);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.lf-link:hover { color: var(--white); }

@media (max-width: 768px) {
  .help-group { margin-bottom: 50px; }
  .lf-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   RESPONSIVIDADE GERAL (MOBILE)
═══════════════════════════════ */
@media (max-width: 768px) {
  
  .hero-bg img,
  .hero-bg video {
    object-position: center !important;
    transform: translateX(0) !important;
  }

  .hero, .hero-content, .hero-bottom, 
  .section-truque, .about-section, .cases-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-h1 { font-size: clamp(40px, 10vw, 56px); }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat-val { font-size: 38px; }
  .truque-content,
  .about-section,
  .cases-cta-content,
  .cta-forum-wrapper,
  .betblock-box {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .truque-visual {
    height: 250px !important; 
    order: -1; 
  }
  
  .cases-video-frame {
    height: 280px !important; 
  }

  .carousel-wrap {
    margin: 0 -20px;
    padding: 0 20px 32px;
  }

  .cta-forum-content {
    padding: 30px 20px;
  }
  .forum-bubbles {
    height: 300px;
    border-left: none;
    border-top: 1px solid var(--gray2);
  }
  .betblock-left, .betblock-right {
    padding: 30px 20px;
  }
  
  #modal {
    grid-template-columns: 1fr !important;
    max-height: 85vh;
  }
  #modal > div:first-child {
    display: none; /* Oculta a imagem no celular para o texto caber sem bugar a tela */
  }
}