:root{
  --bg:#0a0908;
  --bg2:#171311;
  --card: rgba(255,255,255,.05);
  --card2: rgba(255,255,255,.08);
  --text:#f3efe8;
  --muted:#c9bcae;
  --line: rgba(216,138,28,.22);
  --accent:#d88a1c;
  --accent2:#8a5a13;
  --gray:#6f6a63;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1000px 500px at 20% 0%, rgba(216,138,28,.16), transparent 55%),
    radial-gradient(900px 700px at 90% 10%, rgba(111,106,99,.14), transparent 55%),
    linear-gradient(180deg, #050404 0%, var(--bg) 100%);
  color:var(--text);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }
code{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
img{ max-width:100%; }

.container{ width:min(1140px, calc(100% - 40px)); margin:0 auto; }

.skip{
  position:absolute;
  left:-999px;
  top:8px;
  padding:10px 12px;
  background: var(--card2);
  border:1px solid var(--line);
  border-radius:12px;
}
.skip:focus{ left:12px; z-index:9999; }

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(10,9,8,.86);
  border-bottom:1px solid var(--line);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}

.brand__logo{
  width:72px;
  height:72px;
  object-fit:contain;
  border-radius:16px;
  background:#120f0d;
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
  border:1px solid rgba(216,138,28,.24);
  padding:6px;
}

.brand__logo--sm{
  width:54px;
  height:54px;
}

.brand__text strong{
  display:block;
  font-weight:900;
  letter-spacing:.2px;
}

.brand__text span{
  display:block;
  font-size:12.5px;
  color:var(--muted);
}

.nav{
  display:flex;
  align-items:center;
  gap:16px;
}

.nav a{
  color:var(--muted);
  font-weight:700;
  font-size:14px;
}

.nav a:hover{ color:var(--text); }

.menu{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}

.menu span{
  display:block;
  height:2px;
  margin:6px 10px;
  background: rgba(255,255,255,.78);
  border-radius:2px;
}

.menuMobile{
  border-top:1px solid var(--line);
  background: rgba(10,9,8,.96);
}

.menuMobile__inner{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:14px 0 18px;
}

.menuMobile__link{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid transparent;
  color:var(--muted);
  font-weight:800;
}

.menuMobile__link:hover{
  border-color:var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  background: linear-gradient(135deg, var(--accent) 0%, #f2a52f 55%, var(--accent2) 100%);
  color:#130d07;
  font-weight:900;
  border:0;
  cursor:pointer;
  box-shadow: var(--shadow);
}

.btn--ghost{
  background: rgba(255,255,255,.04);
  color: var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}

.btn--small{
  padding:10px 14px;
  border-radius:14px;
  font-size:14px;
}

.btn--wide{
  padding:14px 20px;
  border-radius:18px;
}

.hero{
  position:relative;
  padding:56px 0 34px;
  overflow:hidden;
}

.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(10,9,8,.35) 0%, rgba(10,9,8,.84) 68%, rgba(10,9,8,1) 100%),
    url("assets/hero-real-opt.jpg");
  background-size:cover;
  background-position:center;
  transform:scale(1.03);
  filter:saturate(0.95) contrast(1.05);
}

.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:start;
}

.kicker{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.pill{
  display:inline-block;
  padding:8px 12px;
  background: rgba(216,138,28,.18);
  border:1px solid rgba(216,138,28,.28);
  color:var(--text);
  border-radius:999px;
  font-weight:900;
  font-size:13px;
}

.dot{
  color: rgba(255,255,255,.35);
  font-weight:900;
}

.muted{
  color: var(--muted);
  font-weight:800;
  font-size:13px;
}

.hero h1{
  margin:12px 0 10px;
  font-size: clamp(36px, 4.8vw, 68px);
  line-height:1;
  letter-spacing:-1px;
  font-weight:900;
  text-transform:uppercase;
}

.hero__lead{
  color:var(--muted);
  font-size:16.5px;
  max-width:58ch;
  margin:0 0 18px;
}

.hero__cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:16px;
}

.stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top:10px;
}

.stat{
  padding:12px;
  border-radius:16px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
}

.stat__k{
  color:var(--muted);
  font-weight:800;
  font-size:12.5px;
}

.stat__v{
  font-weight:900;
  font-size:16px;
  margin-top:4px;
}

.hero__side .panel,
.card,
.cat,
.cta__inner,
.sponsorCard,
.sponsorText{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero__side .panel{
  padding:18px;
  border-radius:var(--radius);
}

.panel h2{
  margin:0 0 10px;
  font-size:18px;
  font-weight:900;
}

.list{
  margin:0;
  padding-left:16px;
  color:var(--muted);
}

.list li{ margin:8px 0; }

.panel__actions{ margin-top:14px; }

.small{
  font-size:13px;
  color:var(--muted);
  margin:10px 0 0;
}

.section{ padding:46px 0; }

.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}

.section__head h2,
.pageTitle{
  margin:0;
  font-size:28px;
  font-weight:900;
}

.section__head p{
  margin:0;
  color:var(--muted);
  max-width:70ch;
}

.grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:16px;
}

.gridCategorias{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}

.card{
  padding:18px;
  border-radius:var(--radius);
}

.card h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:900;
}

.cat{
  padding:16px;
  border-radius:var(--radius);
  min-height:140px;
  transition: transform .18s ease, border-color .18s ease;
}

.cat:hover{
  transform: translateY(-2px);
  border-color: rgba(216,138,28,.45);
}

.cat h3{
  margin:0 0 8px;
  font-size:18px;
  font-weight:900;
}

.cat p{
  margin:0;
  color:var(--muted);
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}

.cardMedia{
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(216,138,28,.22);
  background: rgba(255,255,255,.03);
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
  transition: transform .18s ease, border-color .18s ease;
}

.cardMedia:hover{
  transform: translateY(-3px);
  border-color: rgba(216,138,28,.45);
}

.cardMedia img{
  width:100%;
  display:block;
  aspect-ratio:16/10;
  object-fit:cover;
  object-position:center;
}

.imgFocusDown{
  object-position:center 88%;
}

.cardMedia__body{
  padding:14px 14px 16px;
  background: linear-gradient(180deg, rgba(7,7,7,.72), rgba(20,15,12,.86));
}

.cardMedia__body h3{
  margin:0 0 6px;
  font-size:18px;
  font-weight:900;
}

.cardMedia__body p{
  margin:0;
  color:var(--text);
}

.dl{
  margin:0;
  display:grid;
  gap:10px;
}

.dl div{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(216,138,28,.16);
}

.dl dt{
  color:var(--muted);
  font-weight:900;
}

.dl dd{
  margin:0;
  font-weight:900;
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.mapBox{
  padding:16px;
  border-radius:var(--radius);
  border:1px dashed rgba(216,138,28,.28);
  background: rgba(255,255,255,.03);
}

.mapLink{
  display:inline-flex;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-weight:900;
}

.note{
  margin-top:12px;
  padding:12px;
  background: rgba(216,138,28,.10);
  border:1px solid rgba(216,138,28,.20);
  border-radius:16px;
  color:var(--text);
}

.subhead{
  margin:14px 0 10px;
  font-size:14px;
  font-weight:900;
  color:var(--text);
}

.tableWrap{
  overflow:auto;
  border-radius:16px;
  border:1px solid rgba(216,138,28,.20);
  background: rgba(255,255,255,.02);
}

.table{
  width:100%;
  border-collapse: collapse;
  min-width:520px;
}

.table th,
.table td{
  padding:12px;
  border-bottom:1px solid rgba(216,138,28,.12);
  text-align:left;
}

.table th{
  font-size:12.5px;
  color:var(--muted);
  font-weight:900;
  letter-spacing:.2px;
}

.table td{
  color:var(--text);
  font-weight:800;
}

.table tbody tr:hover td{
  background: rgba(216,138,28,.08);
}

.premiacaoGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:10px;
}

.premioCard{
  padding:14px;
  border-radius:16px;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(216,138,28,.18);
}

.premioCard h5{
  margin:0 0 10px;
  font-size:16px;
  font-weight:900;
  color:var(--accent);
}

.premioCard ul{
  margin:0;
  padding-left:18px;
  color:var(--text);
}

.premioCard li{
  margin:6px 0;
}

.bestTrickBox{
  margin-top:14px;
  padding:14px 16px;
  border-radius:16px;
  background: rgba(216,138,28,.10);
  border:1px solid rgba(216,138,28,.28);
  color:var(--text);
  font-weight:900;
}

.cta{
  padding:30px 0 54px;
}

.cta__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px;
  border-radius:22px;
}

.cta__inner h2{
  margin:0;
  font-weight:900;
}

.cta__inner p{
  margin:6px 0 0;
  color:var(--muted);
}

.footer{
  border-top:1px solid var(--line);
  background: rgba(10,9,8,.88);
  padding:22px 0;
}

.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.footer__right{
  display:flex;
  gap:14px;
  color:var(--muted);
  font-weight:800;
}

.footer__right a:hover{ color:var(--text); }

/* patrocinadores */
.sponsorBlock{ margin-top:30px; }

.sponsorBlock h2{
  margin:0 0 14px;
  font-size:22px;
  font-weight:900;
}

.sponsorGrid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:14px;
}

.sponsorCard{
  min-height:150px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}

.sponsorCard img{
  max-width:100%;
  max-height:90px;
  object-fit:contain;
}

.sponsorText{
  margin-top:28px;
}

.pageTitle{
  font-size:36px;
}

@media (max-width: 980px){
  .hero__inner{ grid-template-columns:1fr; }
  .cards{ grid-template-columns:1fr; }
  .gridCategorias{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .premiacaoGrid{ grid-template-columns:1fr; }
  .sponsorGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 720px){
  .nav{ display:none; }
  .menu{ display:block; }
  .grid2{ grid-template-columns:1fr; }
  .gridCategorias{ grid-template-columns:1fr; }
  .footer__inner{ flex-direction:column; align-items:flex-start; }
  .stats{ grid-template-columns:1fr; }
  .sponsorGrid{ grid-template-columns:1fr; }
}