/* ═══════════════════════════════
   RESET + TOKENS
═══════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0A0A0A;
  --white: #F0EDE6;
  --red: #E8320A;
  --lime: #C8F135;
  --orange: #FF6B1A;
  --gray: #1A1A1A;
  --gray2: #2A2A2A;
  --muted: #666;
  --font-h: 'Barlow Condensed', sans-serif;
  --font-b: 'Barlow', sans-serif;
  --font-m: 'DM Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-b);
  overflow-x: hidden;
  cursor: none;
}

/* ═══════════════════════════════
   CURSOR
═══════════════════════════════ */
.cur {
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: difference;
}
.cur.big {
  width: 60px;
  height: 60px;
}

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  /* Removemos o mix-blend-mode daqui */
  transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.9); /* Fundo escuro quase sólido */
  backdrop-filter: blur(12px); /* Efeito de vidro fosco */
  padding: 12px 48px; /* Fica ligeiramente mais fino ao rolar */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Linha bem sutil separando */
}
.logo {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--white);
  text-decoration: none;
}
.logo em {
  color: var(--red);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, .6);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover {
  color: var(--white);
}

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

/* grain overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* hero foto bg */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0) 30%, rgba(10,10,10,.95) 100%),
    linear-gradient(to right, rgba(10,10,10,.7) 0%, rgba(10,10,10,0) 50%);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  filter: grayscale(20%);
}

/* hero content */
.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(80px, 11vw, 160px);
  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: 36px;
  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;
}

/* ═══════════════════════════════
   SECTION WRAPPER
═══════════════════════════════ */
.section {
  padding: 80px 48px;
}
.section-label {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '//';
  opacity: .4;
}
.section-h2 {
  font-family: var(--font-h);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.section-h2 em {
  font-style: normal;
  color: var(--red);
}
.section-h2 .lime {
  color: var(--lime);
}

/* ═══════════════════════════════
   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);
}

/* track */
.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;
}

/* FOTO CARD */
.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%);
}

/* card text over photo */
.photo-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px 22px 20px;
}
.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;
}

/* CTA row on card */
.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;
}

/* dots */
.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%;
}

/* Estilo flutuante das setas */
.nav-arrow {
  position: absolute;
  top: 40%; 
  transform: translateY(-50%);
  z-index: 20; 
  background: rgba(10, 10, 10, 0.15); /* Fundo quase transparente */
  backdrop-filter: blur(1px); /* Efeito de vidro embaçado */
  border: 1.5px solid var(--lime); /* Borda fina verde neon */
  color: var(--lime); /* Ícone verde neon */
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

/* Efeito ao passar o mouse: ele preenche com a cor sólida */
.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); /* Brilho neon suave */
}

/* Posicionamento nas bordas invadindo os cards */
.nav-arrow.left {
  left: 20px;
}

.nav-arrow.right {
  right: 20px;
}

/* Classe para esconder a seta quando não tiver mais cards */
.nav-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ═══════════════════════════════
   SEÇÃO "A BANCA NÃO JOGA"
═══════════════════════════════ */
.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(56px, 7vw, 100px);
  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);
}
.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); }

/* RTP visual */
.rtp-visual {
  background: var(--gray);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--gray2);
}
.rtp-label {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.rtp-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.rtp-bar-label {
  font-family: var(--font-m);
  font-size: 11px;
  color: rgba(240, 237, 230, .5);
  width: 110px;
  flex-shrink: 0;
}
.rtp-bar-track {
  flex: 1;
  height: 10px;
  background: rgba(255, 255, 255, .06);
  border-radius: 5px;
  overflow: hidden;
}
.rtp-bar-fill {
  height: 100%;
  border-radius: 5px;
  transition: width .8s cubic-bezier(.25, .46, .45, .94);
}
.rtp-bar-num {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 800;
  width: 56px;
  text-align: right;
  flex-shrink: 0;
}
.rtp-note {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray2);
  line-height: 1.6;
}
.rtp-note strong { color: var(--red); }

/* ═══════════════════════════════
   SEÇÕES LOW-FI (AJUDA ETC.)
═══════════════════════════════ */
.lf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.lf-card {
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-radius: 16px;
  padding: 24px;
  transition: border-color .2s, transform .2s;
}
.lf-card:hover {
  border-color: rgba(240, 237, 230, .2);
  transform: translateY(-3px);
}
.lf-card-icon { font-size: 32px; margin-bottom: 14px; }
.lf-card h3 {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.lf-card p {
  font-size: 13px;
  color: rgba(240, 237, 230, .5);
  line-height: 1.6;
  margin-bottom: 14px;
}
.lf-link {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--lime);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lf-link:hover { text-decoration: underline; }

/* ═══════════════════════════════
   BETBLOCK
═══════════════════════════════ */
.betblock-box {
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.betblock-left {
  background: linear-gradient(135deg, #0a1a0a, #0d2010);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  border-right: 1px solid var(--gray2);
}
.betblock-icon { font-size: 64px; line-height: 1; }
.betblock-left h3 {
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--lime);
  line-height: 1;
}
.betblock-left p {
  font-size: 14px;
  color: rgba(240, 237, 230, .6);
  line-height: 1.7;
}
.install-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--lime);
  color: var(--black);
  padding: 13px 20px;
  border-radius: 12px;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: none;
  width: 100%;
  transition: transform .15s;
}
.install-btn:hover { transform: scale(1.02); }
.install-btn.ghost {
  background: rgba(240, 237, 230, .06);
  color: rgba(240, 237, 230, .7);
  border: 1px solid rgba(240, 237, 230, .12);
}
.betblock-right { padding: 40px; }
.betblock-right h3 {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.betblock-right p {
  font-size: 14px;
  color: rgba(240, 237, 230, .6);
  line-height: 1.7;
  margin-bottom: 20px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  font-size: 13px;
  color: rgba(240, 237, 230, .6);
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--lime);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ═══════════════════════════════
   SIMULADOR
═══════════════════════════════ */
.sim-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
  align-items: start;
}
.sim-form {
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-radius: 18px;
  padding: 28px;
}
.sim-form h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 16px; }
.form-label {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--gray2);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-b);
  font-size: 15px;
  cursor: none;
  transition: border-color .2s;
}
.form-input:focus {
  outline: none;
  border-color: rgba(240, 237, 230, .3);
}
.sim-cta {
  width: 100%;
  background: var(--red);
  color: var(--white);
  padding: 14px;
  border-radius: 12px;
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  border: none;
  cursor: none;
  transition: transform .15s, background .2s;
  margin-top: 8px;
}
.sim-cta:hover {
  background: #c42808;
  transform: translateY(-2px);
}
.sim-result {
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-radius: 18px;
  padding: 28px;
}
.sim-result h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.result-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 100px;
  margin-bottom: 20px;
}
.result-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
}
.result-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.result-metric {
  background: rgba(255, 255, 255, .04);
  border-radius: 10px;
  padding: 12px;
}
.result-metric-val {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}
.result-metric-label {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.cofrinho {
  margin-top: 14px;
  background: rgba(200, 241, 53, .08);
  border: 1px solid rgba(200, 241, 53, .2);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cofrinho-icon { font-size: 28px; }
.cofrinho-text {
  font-size: 12px;
  color: var(--lime);
  line-height: 1.5;
}
.cofrinho-text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
  font-family: var(--font-h);
  font-weight: 800;
  text-transform: uppercase;
}

/* ═══════════════════════════════
   FORUM
═══════════════════════════════ */
.forum-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}
.post-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.post {
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color .2s;
}
.post:hover { border-color: rgba(240, 237, 230, .2); }
.post-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.post-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.post-name { font-size: 13px; font-weight: 600; }
.post-time {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--muted);
  margin-left: auto;
}
.post-text {
  font-size: 13px;
  color: rgba(240, 237, 230, .6);
  line-height: 1.6;
}
.post-footer {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}
.post-react {
  font-family: var(--font-m);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--gray2);
  color: var(--muted);
  background: none;
  cursor: none;
}
.forum-form {
  background: linear-gradient(135deg, #111, #1a1a1a);
  border: 1px solid var(--gray2);
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 80px;
}
.forum-form h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.forum-form p {
  font-size: 13px;
  color: rgba(240, 237, 230, .5);
  margin-bottom: 18px;
  line-height: 1.5;
}
.forum-ta {
  width: 100%;
  height: 100px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--gray2);
  border-radius: 10px;
  padding: 12px;
  color: var(--white);
  font-family: var(--font-b);
  font-size: 13px;
  resize: none;
  cursor: none;
  margin-bottom: 12px;
}
.forum-ta:focus {
  outline: none;
  border-color: rgba(240, 237, 230, .3);
}
.forum-submit {
  width: 100%;
  background: var(--lime);
  color: var(--black);
  padding: 13px;
  border-radius: 10px;
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  border: none;
  cursor: none;
  transition: transform .15s;
}
.forum-submit:hover { transform: translateY(-2px); }
.anon-note {
  font-family: var(--font-m);
  font-size: 10px;
  color: rgba(240, 237, 230, .25);
  text-align: center;
  margin-top: 8px;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: #050505;
  border-top: 1px solid var(--gray2);
  padding: 60px 48px 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-brand h2 {
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.footer-brand h2 em {
  color: var(--red);
  font-style: normal;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(240, 237, 230, .4);
  max-width: 280px;
  line-height: 1.6;
}
.footer-links h4 {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, .3);
  margin-bottom: 14px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(240, 237, 230, .6);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid var(--gray2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: var(--font-m);
  font-size: 11px;
  color: rgba(240, 237, 230, .2);
}

/* ═══════════════════════════════
   SOBRE NÓS — ABOUT PAGE
═══════════════════════════════ */

/* Nav active link */
.nav-links a.active {
  color: var(--lime);
}

/* About Hero */
.about-hero .hero-h1 .line-lime {
  display: inline-block;
  background: var(--lime);
  color: var(--black);
  padding: 4px 20px 12px;
  border-radius: 8px;
}

/* About Project Grid */
.about-project-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-project-text p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(240, 237, 230, .65);
  margin-bottom: 20px;
}

.about-project-text p strong {
  color: var(--white);
}

.about-project-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-highlight-card {
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-radius: 16px;
  padding: 24px;
  transition: border-color .2s, transform .2s;
}

.about-highlight-card:hover {
  border-color: rgba(240, 237, 230, .2);
  transform: translateY(-3px);
}

.about-hl-num {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--lime);
  margin-bottom: 6px;
}

.about-hl-label {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, .5);
  line-height: 1.4;
}

/* Team Grid — New Card Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}

.team-card {
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: border-color .2s, transform .2s;
}

.team-card:hover {
  border-color: rgba(240, 237, 230, .2);
  transform: translateY(-4px);
}

/* Photo placeholder — circular, ready for real photos */
.team-photo {
  flex-shrink: 0;
}

.team-photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}

.team-card:hover .team-photo-placeholder {
  transform: scale(1.05);
}

.team-info {
  flex: 1;
  min-width: 0;
}

.team-name {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.team-role-badge {
  display: inline-block;
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--black);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.team-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(240, 237, 230, .55);
  margin-bottom: 12px;
}

/* Tags / badges de tecnologia */
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.team-tag {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: .04em;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(200, 241, 53, .1);
  color: var(--lime);
  border: 1px solid rgba(200, 241, 53, .2);
}

/* Tech Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.tech-card {
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}

.tech-card:hover {
  border-color: rgba(240, 237, 230, .2);
  transform: translateY(-3px);
}

.tech-icon {
  color: var(--lime);
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}

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

.tech-card p {
  font-size: 12px;
  color: rgba(240, 237, 230, .5);
  line-height: 1.5;
}

/* Missão, Visão, Valores */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.mv-card {
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-radius: 16px;
  padding: 28px;
  transition: border-color .2s, transform .2s;
}

.mv-card:hover {
  border-color: rgba(240, 237, 230, .2);
  transform: translateY(-3px);
}

.mv-icon {
  color: var(--lime);
  margin-bottom: 16px;
}

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

.mv-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(240, 237, 230, .6);
}

.mv-card.valores ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mv-card.valores li {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(240, 237, 230, .6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mv-card.valores li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--lime);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

.mv-card.valores li strong {
  color: var(--white);
}

.missao-cta {
  text-align: center;
  padding: 40px;
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-radius: 20px;
}

.missao-cta p {
  font-family: var(--font-h);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 24px;
  color: rgba(240, 237, 230, .8);
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  z-index: 101;
}

@media (max-width: 768px) {
  nav,
  .hero,
  .hero-content,
  .hero-bottom,
  .section,
  .about-section,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-section,
  .betblock-box,
  .sim-grid,
  .forum-grid {
    grid-template-columns: 1fr;
  }
  .carousel-wrap {
    margin: 0 -20px;
    padding: 0 20px 32px;
  }

  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    padding-top: 100px;
    align-items: center;
    gap: 40px;
    transition: right 0.3s ease;
    z-index: 100;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 20px;
  }

  /* About page responsive */
  .about-project-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-project-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-project-highlights {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }
}
