    /* ---------- HERO ---------- */
    .hero {
      position: relative;
      background: var(--green);
      color: #fff;
      overflow: hidden
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .1;
      background-image: repeating-linear-gradient(45deg, #fff 0 2px, transparent 2px 26px)
    }

    .hero-in {
      position: relative;
      max-width: 1180px;
      margin: 0 auto;
      padding: 52px 20px 70px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      align-items: center
    }

    @media(min-width:760px) {
      .hero-in {
        padding: 74px 20px 96px
      }
    }

    @media(min-width:860px) {
      .hero-in {
        grid-template-columns: 1fr 1fr
      }
    }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      width: 100%;
      max-width: 360px;
      min-width: 0;
      margin: 0 auto
    }

    @media(min-width:860px) {
      .hero-visual {
        max-width: 560px
      }
    }

    .hero-card {
      --hc-accent: #9bea22;
      position: relative;
      width: 100%;
      max-width: 360px;
      display: flex;
      flex-direction: column;
      color: #fff;
      background:
        radial-gradient(circle at center, rgba(47, 143, 92, .35) 0%, rgba(18, 60, 39, 0) 55%),
        linear-gradient(135deg, #1f6e43, #123c27);
      border: 2px solid rgba(255, 255, 255, .14);
      border-radius: 20px;
      padding: 22px 20px 18px;
      overflow: hidden;
      box-shadow: inset 0 0 30px rgba(0, 0, 0, .14), 0 10px 22px rgba(0, 0, 0, .16)
    }

    @media(min-width:860px) {
      .hero-card {
        max-width: 560px;
        border-radius: 24px;
        padding: 30px 32px 24px
      }
    }

    .hero-card-head {
      position: relative;
      z-index: 1
    }

    .hero-card-head span {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      font-size: 13px;
      color: var(--hc-accent)
    }

    @media(min-width:860px) {
      .hero-card-head span {
        font-size: 16px
      }
    }

    .hero-card-head-bar {
      display: block;
      width: 44px;
      height: 3px;
      margin-top: 10px;
      background: var(--hc-accent);
      border-radius: 999px
    }

    .hero-card-match-row {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 22px
    }

    @media(min-width:860px) {
      .hero-card-match-row {
        gap: 14px;
        margin-top: 30px
      }
    }

    .hero-track {
      flex: 1;
      min-width: 0;
      min-height: 190px;
      display: flex;
      flex-direction: column;
      justify-content: center
    }

    @media(min-width:860px) {
      .hero-track {
        min-height: 260px
      }
    }

    .hero-slide {
      display: none;
      flex-direction: column;
      justify-content: center
    }

    .hero-slide.active {
      display: flex;
      animation: hero-fade .35s ease
    }

    @keyframes hero-fade {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    .hero-card-match {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px
    }

    @media(min-width:860px) {
      .hero-card-match {
        gap: 18px
      }
    }

    .hero-card-team {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px
    }

    .hero-card-team .crest {
      width: 44px;
      height: 44px
    }

    @media(min-width:860px) {
      .hero-card-team .crest {
        width: 66px;
        height: 66px
      }
    }

    .hero-card-team span {
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 100%
    }

    @media(min-width:860px) {
      .hero-card-team span {
        font-size: 16px
      }
    }

    .hero-card-vs {
      position: relative;
      flex: none;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px
    }

    @media(min-width:860px) {
      .hero-card-vs {
        width: 58px;
        height: 58px
      }
    }

    .hero-card-vs .live-badge {
      position: absolute;
      z-index: 2;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
      margin: 0 0 8px;
      white-space: nowrap
    }

    .hero-card-vs::before {
      content: "";
      position: absolute;
      width: 100px;
      height: 100px;
      opacity: .35;
      background-image: radial-gradient(circle, rgba(155, 234, 34, .5) 1.2px, transparent 1.2px);
      background-size: 10px 10px;
      border-radius: 50%;
      mask-image: radial-gradient(circle, #000 20%, transparent 72%);
      -webkit-mask-image: radial-gradient(circle, #000 20%, transparent 72%)
    }

    @media(min-width:860px) {
      .hero-card-vs::before {
        width: 150px;
        height: 150px
      }
    }

    .hero-card-x {
      position: relative;
      z-index: 1;
      display: grid;
      place-items: center;
      width: 100%;
      height: 100%;
      color: var(--hc-accent);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px;
      border: 2px solid var(--hc-accent);
      border-radius: 50%;
      background: #123c27
    }

    @media(min-width:860px) {
      .hero-card-x {
        font-size: 32px
      }
    }

    .hero-arrow {
      display: grid;
      place-items: center;
      flex: none;
      width: 30px;
      height: 30px;
      color: var(--hc-accent);
      font-size: 18px;
      line-height: 1;
      cursor: pointer;
      border: 1.5px solid rgba(255, 255, 255, .2);
      border-radius: 50%;
      background: rgba(0, 0, 0, .1);
      transition: background .15s, border-color .15s
    }

    .hero-arrow:hover {
      border-color: var(--hc-accent);
      background: rgba(155, 234, 34, .12)
    }

    @media(min-width:860px) {
      .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 22px
      }
    }

    .hero-card-info {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
      margin-top: 22px;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, .16)
    }

    @media(min-width:860px) {
      .hero-card-info {
        grid-template-columns: 1fr 1px 1fr;
        gap: 22px;
        margin-top: 28px;
        padding-top: 18px
      }
    }

    .hero-card-info-item {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .hero-card-info-icon {
      flex: none;
      width: 26px;
      height: 26px;
      color: var(--hc-accent)
    }

    .hero-card-info-icon svg {
      width: 100%;
      height: 100%
    }

    .hero-card-info-item > div {
      min-width: 0
    }

    .hero-card-info-label {
      display: block;
      margin-bottom: 3px;
      color: rgba(255, 255, 255, .65);
      font-size: 10.5px;
      font-weight: 800;
      letter-spacing: .05em;
      text-transform: uppercase
    }

    .hero-card-info-item strong {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 100%
    }

    @media(min-width:860px) {
      .hero-card-info-item strong {
        font-size: 16px
      }
    }

    .hero-card-divider {
      width: 100%;
      height: 1px;
      background: rgba(255, 255, 255, .18)
    }

    @media(min-width:860px) {
      .hero-card-divider {
        width: 1px;
        height: 44px
      }
    }

    .hero-dots {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
      gap: 7px;
      margin-top: 18px
    }

    .hero-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .3);
      border: none;
      padding: 0;
      cursor: pointer;
      transition: width .2s, background .2s
    }

    .hero-dot.active {
      background: var(--hc-accent);
      width: 20px;
      border-radius: 999px
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .14);
      border: 1.5px solid rgba(255, 255, 255, .4);
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 22px;
      transform: rotate(-1deg)
    }

    .hero-badge span {
      font-family: 'Barlow Condensed', sans-serif;
      color: #fff;
      font-size: 12.5px;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase
    }

    .eyebrow {
      color: var(--green);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: .09em;
      text-transform: uppercase;
      margin: 0
    }

    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-weight: 400;
      font-size: clamp(38px, 8vw, 66px);
      line-height: .98;
      letter-spacing: .01em;
      margin: 0 0 18px;
      max-width: 14ch
    }

    .hero p.lead {
      color: rgba(255, 255, 255, .88);
      font-size: clamp(15px, 2.2vw, 18px);
      line-height: 1.5;
      margin: 0 0 30px;
      max-width: 38ch
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 13px
    }

    .hero-edge {
      position: absolute;
      left: 0;
      bottom: -1px;
      width: 100%;
      height: 24px;
      display: block
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: 'Bebas Neue', sans-serif;
      font-weight: 400;
      font-size: 16px;
      letter-spacing: .02em;
      padding: 13px 22px;
      border-radius: 10px;
      border: 2px solid var(--dark);
      transition: .15s
    }

    .btn svg {
      width: 17px;
      height: 17px
    }

    .btn.green {
      background: var(--green);
      color: #fff;
      border-color: var(--dark)
    }

    .btn.green:hover {
      background: var(--green-l)
    }

    .btn.white {
      background: #fff;
      color: var(--green)
    }

    .btn.white:hover {
      background: #f2f2f2
    }

    .btn.ghost {
      background: transparent;
      color: #fff;
      border-color: rgba(255, 255, 255, .6)
    }

    .btn.ghost:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, .1)
    }

    .btn.outline {
      background: var(--card);
      color: var(--ink);
      border-color: var(--line)
    }

    .btn.outline:hover {
      border-color: #c8bb99;
      background: var(--soft)
    }

    /* ---------- FEATURES ---------- */
    .features {
      background: var(--bg);
      padding: 46px 20px
    }

    .features-in {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      gap: 30px 26px;
      grid-template-columns: 1fr 1fr
    }

    @media(min-width:820px) {
      .features-in {
        grid-template-columns: repeat(4, 1fr)
      }
    }

    .feat .fi {
      color: var(--green);
      width: 28px;
      height: 28px
    }

    .feat h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
      margin: 12px 0 6px
    }

    .feat p {
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.5;
      margin: 0
    }

    /* ---------- HUB DE CAMPEONATOS (landing) ---------- */
    .hub {
      max-width: 1180px;
      margin: 0 auto;
      padding: 12px 20px 66px
    }

    .sec-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--green);
      margin: 0 0 6px
    }

    .sec-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(26px, 3.4vw, 34px);
      letter-spacing: .01em;
      margin: 0 0 24px
    }

    /* Máximo 2 colunas, de propósito — a lista de campeonatos muda ao longo
       da temporada (alguns encerram, outros entram); com `1fr 1fr` genérico
       (não um grid fixo 2x2), 5 cards viram 2+2+1 sozinhos, sem precisar
       tocar aqui de novo quando o número mudar. */
    .hub-grid {
      display: grid;
      gap: 20px;
      grid-template-columns: 1fr
    }

    @media(min-width:680px) {
      .hub-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    .hub-card {
      position: relative;
      display: flex;
      flex-direction: column;
      width: 100%;
      text-align: left;
      background: var(--ac, var(--green));
      color: #fff;
      border: 0;
      border-radius: 12px;
      padding: 20px 20px 18px;
      cursor: pointer;
      box-shadow: var(--stamp-shadow);
      overflow: hidden
    }

    /* Alternado (par/ímpar), não mais de 3 em 3 — o grid é 2 colunas agora. */
    .hub-grid .hub-card:nth-child(odd) {
      transform: rotate(-1.2deg)
    }

    .hub-grid .hub-card:nth-child(even) {
      transform: rotate(.8deg)
    }

    .hub-stamp {
      position: absolute;
      top: 50%;
      right: -20px;
      transform: translateY(-50%);
      width: 140px;
      height: 140px;
      opacity: .2;
      z-index: 0;
      display: grid;
      place-items: center;
      font-size: 78px;
      pointer-events: none
    }

    /* Card mais largo com 2 colunas (a partir daqui o grid nunca mais ganha
       uma 3ª coluna) — o emblema (tamanho fixo, não estica: object-fit:
       contain preserva a proporção de cada logo, mesmo com proporções
       diferentes entre os campeonatos) fica pequeno demais parado no canto
       de um card bem mais largo. Aumenta e afasta um pouco da borda pra
       ocupar melhor o espaço extra, sem chegar perto do texto (que fica à
       esquerda, .hub-name tem padding-right de sobra pra isso). */
    @media(min-width:1000px) {
      .hub-stamp {
        width: 170px;
        height: 170px;
        right: -8px
      }
    }

    .hub-stamp img {
      width: 100%;
      height: 100%;
      object-fit: contain
    }

    .hub-cat {
      position: relative;
      z-index: 1;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 10.5px;
      color: rgba(255, 255, 255, .78);
      text-transform: uppercase;
      letter-spacing: .09em
    }

    .hub-name {
      position: relative;
      z-index: 1;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px;
      letter-spacing: .01em;
      margin: 2px 0 18px;
      line-height: 1.05;
      padding-right: 30px
    }

    .hub-foot {
      position: relative;
      z-index: 1;
      margin-top: auto;
      border-top: 1px dashed rgba(255, 255, 255, .35);
      padding-top: 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px
    }

    .hub-foot .st-txt {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 12.5px;
      color: rgba(255, 255, 255, .82);
      text-transform: uppercase;
      letter-spacing: .05em
    }

    .hub-foot .st-txt .pip {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #fff;
      flex: none
    }

    .hub-foot .st-txt .pip.live {
      animation: pulse 1.5s infinite
    }

    .hub-foot .go {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 14px;
      letter-spacing: .02em
    }

    .hub-card.off {
      opacity: .55;
      cursor: default
    }
