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

:root {
  --verde: #006600;
  --verde-med: #1a8a1a;
  --verde-light: #2eb82e;
  --vermelho: #cc0000;
  --verm-deep: #990000;
  --verm-glow: #ff3333;
  --ouro: #d4af37;
  --ouro-light: #f0cc55;
  --ouro-pale: #fff8dc;
  --branco: #ffffff;
  --creme: #fdf6e3;
  --dark: #0a0f0a;
  --dark-card: #0d170d;
  --dark-mid: #112211;
  --text-muted: #a8c4a8;
  --border: rgba(212, 175, 55, 0.25);
  --shadow-ouro: 0 0 40px rgba(212, 175, 55, 0.3);
  --font-display: 'Cinzel Decorative', serif;
  --font-head: 'Cinzel', serif;
  --font-body: 'Crimson Pro', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--branco);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--ouro);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s,
    width 0.2s,
    height 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--ouro);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.18s ease,
    width 0.25s,
    height 0.25s;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--ouro);
  border-radius: 3px;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

.geo-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.geo-bg::before {
  content: '';
  position: absolute;
  inset: -50%;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 80px,
      rgba(212, 175, 55, 0.03) 80px,
      rgba(212, 175, 55, 0.03) 82px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 80px,
      rgba(0, 102, 0, 0.03) 80px,
      rgba(0, 102, 0, 0.03) 82px
    );
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  background: rgba(10, 15, 10, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-emblem {
  width: 46px;
  height: 46px;
  position: relative;
  flex-shrink: 0;
}
.logo-emblem svg {
  width: 100%;
  height: 100%;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-top {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--ouro);
  text-transform: uppercase;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--ouro-light), var(--ouro), #a07c1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-family: var(--font-head);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--verde-light);
  text-transform: uppercase;
  margin-top: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 4px;
  transition:
    color 0.25s,
    background 0.25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--ouro);
  transition:
    left 0.25s,
    right 0.25s;
}
.nav-link:hover {
  color: var(--ouro);
}
.nav-link:hover::after {
  left: 12px;
  right: 12px;
}

.nav-cta {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.12);
  color: var(--ouro-light);
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  transition: all 0.25s;
  margin-left: 0.5rem;
}
.nav-cta:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-1px);
}

.header-company {
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ouro-light);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  margin-left: 0.8rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ouro);
  transition: all 0.3s;
  border-radius: 2px;
}

#hero {
  min-height: 60vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 2rem 60px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse at 70% 50%,
      rgba(0, 80, 0, 0.35) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse at 30% 80%,
      rgba(180, 0, 0, 0.2) 0%,
      transparent 50%
    ),
    var(--dark);
}

#hero > .section-inner {
  grid-column: 1 / -1;
  justify-self: center;
}

.hero-content {
  max-width: 620px;
  z-index: 2;
  animation: fadeInLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ouro);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  margin-bottom: 1.8rem;
  background: rgba(212, 175, 55, 0.07);
}
.hero-badge::before {
  content: '⚜';
  font-size: 0.8rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  background: linear-gradient(
    160deg,
    #ffffff 0%,
    var(--ouro-light) 50%,
    var(--ouro) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title em {
  font-style: normal;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, var(--verde-light), var(--ouro-light));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  background: rgba(212, 175, 55, 0.14);
  color: var(--ouro-light);
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.22);
}

.btn-secondary {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.88rem 2.2rem;
  background: transparent;
  color: var(--ouro);
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  transition: all 0.3s;
  display: inline-block;
}
.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--ouro);
  box-shadow: var(--shadow-ouro);
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.casino-3d {
  position: relative;
  width: 460px;
  height: 460px;
}
.casino-3d svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 60px rgba(212, 175, 55, 0.25));
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 28px;
  height: 28px;
  border-right: 1.5px solid var(--ouro);
  border-bottom: 1.5px solid var(--ouro);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

section {
  position: relative;
  overflow: hidden;
}
.section-inner {
  width: min(100%, 1300px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.section-tag {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--verde-light);
  display: block;
  margin-bottom: 0.7rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  background: linear-gradient(135deg, var(--branco), var(--ouro-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head {
  margin-bottom: 3.5rem;
  text-align: center;
}

.divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--verde),
    var(--ouro),
    var(--vermelho)
  );
  border-radius: 2px;
  margin: 1.2rem auto;
}

#plataformas {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-mid) 100%);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  gap: 1.8rem;
}

@media (min-width: 901px) {
  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .platform-card {
    display: grid;
    grid-template-columns: minmax(240px, 300px) 1fr;
    align-items: stretch;
  }

  .card-header {
    padding: 1.6rem;
    border-right: 1px solid var(--border);
    border-bottom: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .card-body {
    padding: 1.5rem 1.8rem;
  }
}

.platform-card {
  background: linear-gradient(145deg, var(--dark-card), #0a1a0a);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s;
  position: relative;
}
.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--verde),
    var(--ouro),
    var(--vermelho)
  );
  opacity: 0;
  transition: opacity 0.35s;
}
.platform-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(212, 175, 55, 0.15);
}
.platform-card:hover::before {
  opacity: 1;
}

.card-header {
  padding: 1.6rem 1.6rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
}
.card-logo {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  background: var(--dark-mid);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--ouro);
  text-align: center;
  line-height: 1.2;
  padding: 6px;
  flex-shrink: 0;
  overflow: hidden;
}
.card-logo img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.card-info {
  flex: 1;
}
.card-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--branco);
  margin-bottom: 0.3rem;
}
.card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.stars {
  color: var(--ouro);
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.rating-num {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--ouro);
  font-weight: 600;
}
.card-badge {
  font-family: var(--font-head);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--ouro);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: inline-block;
  margin-top: 0.4rem;
}

.card-body {
  padding: 1.2rem 1.6rem;
}
.card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.card-bonus {
  background: linear-gradient(
    135deg,
    rgba(204, 0, 0, 0.12),
    rgba(0, 102, 0, 0.12)
  );
  border: 1px solid rgba(204, 0, 0, 0.25);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
}
.bonus-label {
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--verde-light);
  margin-bottom: 0.3rem;
}
.bonus-value {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--ouro);
  font-weight: 700;
}

.card-payments {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.pay-label {
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 100%;
  margin-bottom: 0.2rem;
}
.pay-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  font-family: var(--font-head);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.pay-badge:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--ouro);
  border-color: rgba(212, 175, 55, 0.3);
}

.card-cta {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
}
.card-cta:hover {
  background: rgba(212, 175, 55, 0.14);
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

#faq {
  padding: 100px 0;
  background: var(--dark);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--dark-card);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: rgba(212, 175, 55, 0.5);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--branco);
  gap: 1rem;
  user-select: none;
}
.faq-q:hover {
  color: var(--ouro);
}
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--ouro);
  transition:
    transform 0.35s,
    background 0.25s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(212, 175, 55, 0.15);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-a-inner {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

#porque-nos {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark-mid) 0%, var(--dark) 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3.5rem;
}
.why-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(145deg, var(--dark-card), rgba(0, 60, 0, 0.1));
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 0, 0.05),
    rgba(212, 175, 55, 0.04)
  );
  opacity: 0;
  transition: opacity 0.35s;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
}
.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  display: block;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
}
.why-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--ouro);
  margin-bottom: 0.7rem;
}
.why-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

#comparar {
  padding: 100px 0;
  background: var(--dark);
}
.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}
thead {
  background: linear-gradient(135deg, var(--verde), var(--dark-mid));
}
thead th {
  padding: 1.1rem 1.4rem;
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ouro);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
tbody tr {
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  transition: background 0.2s;
}
tbody tr:last-child {
  border-bottom: none;
}
tbody tr:hover {
  background: rgba(212, 175, 55, 0.04);
}
tbody td {
  padding: 1rem 1.4rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  vertical-align: middle;
}
tbody td:first-child {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--branco);
}
.check {
  color: var(--verde-light);
  font-size: 1.1rem;
}
.cross {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
}
.rating-cell {
  font-family: var(--font-head);
  color: var(--ouro);
  font-weight: 700;
}

#avaliacoes {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-mid) 100%);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.review-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.35s;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(212, 175, 55, 0.12);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.35);
}
.review-stars {
  color: var(--ouro);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}
.review-text {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--verde), var(--verde-med));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--branco);
  border: 2px solid rgba(212, 175, 55, 0.3);
}
.author-info {
  line-height: 1.3;
}
.author-name {
  font-family: var(--font-head);
  font-size: 0.88rem;
  color: var(--branco);
}
.author-city {
  font-size: 0.8rem;
  color: var(--text-muted);
}

#reguladores {
  padding: 80px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.regulators-label {
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.regulators-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.reg-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  opacity: 0.6;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.reg-link:hover {
  opacity: 1;
  transform: translateY(-4px);
}
.reg-badge {
  width: 110px;
  height: 60px;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.75rem;
  color: var(--branco);
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.3;
  transition: all 0.3s;
  overflow: hidden;
}
.reg-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.reg-link:hover .reg-badge {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--ouro);
}
.reg-name {
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

#jogo-responsavel {
  padding: 70px 0;
  background: linear-gradient(135deg, #1a0000 0%, #001a00 50%, #1a0000 100%);
  position: relative;
}
#jogo-responsavel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(204, 0, 0, 0.03) 20px,
    rgba(204, 0, 0, 0.03) 21px
  );
}
#jogo-responsavel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 2px solid rgba(204, 0, 0, 0.5);
  border-bottom: 2px solid rgba(204, 0, 0, 0.5);
  pointer-events: none;
}
.resp-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}
.resp-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.resp-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--verm-glow);
  text-shadow: 0 0 40px rgba(255, 51, 51, 0.4);
  margin-bottom: 1rem;
}
.resp-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.resp-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.resp-link {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: 40px;
  border: 1px solid rgba(204, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  background: rgba(204, 0, 0, 0.1);
  transition: all 0.25s;
}
.resp-link:hover {
  background: rgba(204, 0, 0, 0.25);
  color: var(--branco);
  border-color: var(--verm-glow);
}

footer {
  background: #050a05;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-brand .logo {
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--ouro);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}
.footer-18 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
}

.flag-stripe {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--verde) 40%,
    var(--ouro) 40%,
    var(--ouro) 45%,
    var(--vermelho) 45%
  );
  margin-bottom: 0;
}

.legal-page {
  background: linear-gradient(180deg, #060b06 0%, #0b140b 100%);
  min-height: 100vh;
}

.legal-hero {
  padding: 150px 0 70px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 80% 30%, rgba(0, 102, 0, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 20%, rgba(204, 0, 0, 0.16) 0%, transparent 45%);
}

.legal-badge {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ouro);
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 0.9rem;
  background: linear-gradient(135deg, var(--branco), var(--ouro-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-subtitle {
  max-width: 760px;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-content {
  padding: 60px 0 90px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 100px;
  border: 1px solid var(--border);
  background: rgba(9, 16, 9, 0.9);
  border-radius: 14px;
  padding: 1.1rem;
}

.legal-toc-title {
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 0.9rem;
}

.legal-toc a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  line-height: 1.35;
}

.legal-toc a:hover {
  color: var(--ouro);
}

.legal-article {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(8, 14, 8, 0.92);
  padding: 2rem;
}

.legal-article section + section {
  margin-top: 2.1rem;
  padding-top: 2.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-article h2 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--ouro-light);
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
}

.legal-article p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.85;
  font-size: 0.97rem;
  margin-bottom: 0.9rem;
}

.legal-article ul {
  margin: 0.2rem 0 1rem 1.1rem;
}

.legal-article li {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
  margin-bottom: 0.45rem;
}

.legal-note {
  border-left: 3px solid var(--ouro);
  background: rgba(212, 175, 55, 0.08);
  padding: 0.85rem 1rem;
  border-radius: 0 8px 8px 0;
  margin-top: 1rem;
}

@media (max-width: 1000px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 5, 0.97);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav .nav-link {
  font-size: 1.2rem;
  color: var(--ouro);
  letter-spacing: 0.2em;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  nav {
    display: none;
  }
  .header-company {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .platforms-grid {
    grid-template-columns: 1fr;
  }
  body {
    cursor: auto;
  }
  .cursor,
  .cursor-ring {
    display: none;
  }
}
