/* Racket Solutions Open - retro editorial tennis direction */
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/oswald-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Slab";
  src: url("assets/fonts/roboto-slab-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --lime: #e7f51f;
  --lime-hot: #f2ff31;
  --ink: #1d1715;
  --ink-soft: #342d29;
  --charcoal: #3d3d3d;
  --paper: #ffffff;
  --paper-soft: #f3f2ee;
  --muted: #68635f;
  --line: #d8d5ce;
  --head: "Roboto Slab", Georgia, serif;
  --condensed: "Oswald", "Arial Narrow", sans-serif;
  --body: "Inter", Arial, sans-serif;
  --content: 820px;
  --wide: 1180px;
  --header-h: 72px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body:has(.mobile-menu.is-open) {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

section {
  scroll-margin-top: var(--header-h);
}

[id],
.footer {
  scroll-margin-top: var(--header-h);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--condensed);
  font-weight: 700;
  text-transform: uppercase;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

.btn {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 27px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-family: var(--head);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .035em;
  text-align: center;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.btn--primary:hover {
  background: var(--lime-hot);
}

.btn--outline {
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
}

.btn--outline:hover {
  background: #fff;
  color: var(--ink);
}

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

.btn--dark:hover {
  background: #000;
}

.btn--outline-dark {
  border-color: var(--ink);
  color: var(--ink);
}

.btn--outline-dark:hover {
  background: var(--ink);
  color: #fff;
}

.btn--full {
  width: 100%;
}

.btn--large {
  min-height: 44px;
  padding-inline: 34px;
  font-size: 11px;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  color: #fff;
  transition: background .3s ease, height .3s ease, box-shadow .3s ease;
}

.header.is-scrolled {
  height: 58px;
  background: rgba(25, 20, 18, .96);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}

.header__inner {
  width: min(calc(100% - 38px), var(--wide));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-right: auto;
}

.header__logo-icon {
  width: 55px;
  height: 32px;
  color: var(--lime);
  transform: skewX(-16deg);
}

.header__logo-text {
  font-family: var(--head);
  font-size: 14px;
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.025em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 21px;
}

.header__nav-link {
  position: relative;
  padding: 8px 0;
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  background: var(--lime);
  transition: right .22s ease;
}

.header__nav-link:hover::after {
  right: 0;
}

.header__cta {
  padding: 9px 15px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--head);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.header__burger {
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.header__burger span {
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform .3s ease, opacity .3s ease;
}

.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  background: rgba(29, 23, 21, .98);
  transition: opacity .3s ease, visibility .3s ease;
  overflow-y: auto;
  padding: calc(var(--header-h) + 18px) 20px 28px;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.mobile-menu__link {
  min-height: 44px;
  font-family: var(--head);
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
}

.mobile-menu__cta {
  min-height: 44px;
  margin-top: 12px;
  padding: 13px 28px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--head);
  font-weight: 900;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  min-height: 458px;
  display: flex;
  align-items: center;
  padding: 86px 20px 34px;
  overflow: hidden;
  background: #171210;
  color: #fff;
}

.hero__bg,
.hero__gradient,
.hero__court-lines {
  position: absolute;
  inset: 0;
}

.hero__bg {
  background: #171210;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(.62) contrast(1.12) brightness(.78);
}

.hero__gradient {
  background:
    linear-gradient(90deg, rgba(20, 15, 13, .86) 0%, rgba(20, 15, 13, .34) 48%, rgba(20, 15, 13, .78) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .13), rgba(0, 0, 0, .03) 55%, rgba(0, 0, 0, .32)),
    radial-gradient(circle at 51% 45%, transparent 0 22%, rgba(21, 16, 14, .35) 70%);
}

.hero__court-lines {
  opacity: .11;
  background-image: linear-gradient(90deg, transparent 49.8%, #fff 50%, transparent 50.2%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-areas:
    "badge badge"
    "title info"
    "meta info"
    "actions info";
  column-gap: 46px;
  align-items: center;
}

.hero__badge {
  grid-area: badge;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px 35%;
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero__badge-year {
  color: #fff;
}

.hero__badge-divider {
  width: 28px;
  height: 2px;
  background: var(--lime);
}

.hero__badge-city {
  color: var(--lime);
}

.hero__title {
  grid-area: title;
  position: relative;
  justify-self: end;
  font-family: var(--head);
  font-size: clamp(40px, 4.35vw, 58px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.055em;
  text-align: right;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0, 0, 0, .2);
}

.hero__title::after {
  content: "]";
  position: absolute;
  top: 50%;
  left: calc(100% + 12px);
  color: var(--lime);
  font-family: Arial, sans-serif;
  font-size: 118px;
  font-weight: 400;
  line-height: .6;
  transform: translateY(-50%);
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  color: var(--lime);
}

.hero__meta {
  grid-area: meta;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
}

.hero__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--lime);
}

.hero__info {
  grid-area: info;
  min-height: 120px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, .65);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.hero__info-label {
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.hero__info-value {
  font-family: var(--head);
  font-size: 16px;
  font-weight: 900;
  color: var(--lime);
}

.hero__actions {
  grid-area: actions;
  justify-self: end;
  display: flex;
  gap: 9px;
  margin-top: 20px;
}

.hero__scroll {
  display: none;
}

/* Athlete/image strip */
.strip {
  position: relative;
  z-index: 3;
  border-top: 3px solid rgba(255, 255, 255, .6);
  background: var(--ink);
}

.strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.strip__item {
  position: relative;
  height: 156px;
  overflow: hidden;
  border-right: 1px solid #fff;
}

.strip__item:last-child {
  border-right: 0;
}

.strip__item-img {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(.85) contrast(1.05);
  transition: transform .5s var(--ease), filter .5s ease;
}

.strip__item-img img,
.presenca360__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strip__item--bw .strip__item-img {
  filter: grayscale(1) contrast(1.08);
}

.strip__item:nth-child(1) img { object-position: center 42%; }
.strip__item:nth-child(2) img { object-position: 54% 52%; }
.strip__item:nth-child(3) img { object-position: center 55%; }
.strip__item:nth-child(4) img { object-position: center 69%; }
.strip__item:nth-child(5) img { object-position: center 64%; }

.strip__item:nth-child(3) .strip__item-img,
.strip__item:nth-child(5) .strip__item-img {
  transform: scale(1.08);
}

.strip__item:hover .strip__item-img {
  transform: scale(1.05);
  filter: none;
}

.strip__item:nth-child(3):hover .strip__item-img,
.strip__item:nth-child(5):hover .strip__item-img {
  transform: scale(1.13);
}

.strip__item::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .74));
}

.strip__item-label {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 9px;
  transform: translateX(-50%);
  color: #fff;
  font-family: var(--head);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Common section widths */
.torneio__inner,
.numbers__inner,
.categorias__inner,
.experiencia__inner,
.patrocinio-hero__inner,
.porque__inner,
.presenca360__inner,
.cotas__inner,
.master-spotlight__inner,
.sponsors__inner,
.galeria__inner,
.edicoes__inner,
.local__inner,
.inscricao__inner,
.cta-final__inner,
.footer__inner {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
}

.torneio__title,
.categorias__title,
.experiencia__title,
.patrocinio-hero__title,
.porque__title,
.presenca360__title,
.cotas__title,
.master-spotlight__title,
.sponsors__title,
.galeria__title,
.edicoes__title,
.local__title,
.inscricao__title,
.cta-final__title {
  font-family: var(--head);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

/* About / tournament */
.torneio {
  position: relative;
  min-height: 460px;
  padding: 72px 0 50px;
  background: var(--paper);
  overflow: hidden;
}

.torneio__inner {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 30px;
}

.torneio__content {
  position: relative;
  z-index: 2;
  max-width: 470px;
}

.torneio__number {
  float: left;
  width: 126px;
  height: 88px;
  margin: 115px 18px 7px 0;
  border-left: 5px double var(--ink);
  font-family: var(--head);
  font-size: 86px;
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.08em;
}

.torneio__number::before {
  content: "▦";
  display: inline-block;
  margin-right: 5px;
  font-size: 48px;
  vertical-align: 15px;
}

.torneio__title {
  margin-bottom: 30px;
  font-size: clamp(32px, 4vw, 47px);
}

.torneio__text {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.torneio__image {
  position: relative;
  align-self: end;
  height: 390px;
}

.torneio__image-wrapper {
  position: absolute;
  inset: 0 -110px -50px -40px;
  overflow: hidden;
}

.torneio__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 48%;
  filter: saturate(.85) contrast(1.04);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 24%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 92%, transparent);
}

/* Stats */
.numbers {
  padding: 34px 0 42px;
  background: #f6f5f1;
  border-block: 1px solid #e2dfd7;
}

.numbers__inner {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 28px;
}

.numbers__label {
  font-family: var(--head);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.numbers__label::after {
  content: "";
  display: block;
  width: 42px;
  height: 7px;
  margin-top: 9px;
  background: var(--lime);
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.numbers__item {
  min-height: 62px;
  padding: 5px 13px;
  border-left: 1px solid #c9c6bf;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.numbers__value {
  font-family: var(--head);
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
}

.numbers__value::after {
  content: attr(data-suffix);
  color: #a6b400;
}

.numbers__desc {
  margin-top: 6px;
  font-family: var(--condensed);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--muted);
}

/* Categories */
.categorias {
  padding: 64px 0 70px;
  background: #fff;
}

.categorias__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.categorias__title {
  font-size: 38px;
}

.categorias__subtitle {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
}

.categorias__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.categorias__item {
  position: relative;
  min-height: 142px;
  padding: 17px 13px 16px;
  border-right: 1px solid var(--line);
  transition: background .25s ease;
}

.categorias__item:last-child {
  border-right: 0;
}

.categorias__item:hover {
  background: var(--lime);
}

.categorias__item-letter {
  font-family: var(--head);
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
}

.categorias__item-info {
  position: absolute;
  inset: auto 13px 18px;
}

.categorias__item-info h3 {
  font-family: var(--head);
  font-size: 12px;
  font-weight: 900;
}

.categorias__item-info p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.categorias__item-line {
  display: none;
}

/* Lime experience quote band */
.experiencia {
  position: relative;
  padding: 56px 0;
  background:
    linear-gradient(rgba(231, 245, 31, .93), rgba(231, 245, 31, .93)),
    url("assets/gallery-3.webp") center / cover;
  overflow: hidden;
}

.experiencia::before,
.experiencia::after {
  position: absolute;
  top: 50%;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 150px;
  font-weight: 200;
  line-height: .5;
  transform: translateY(-50%);
}

.experiencia::before { content: "["; left: calc(50% - 430px); }
.experiencia::after { content: "]"; right: calc(50% - 430px); }

.experiencia__inner {
  position: relative;
  z-index: 2;
}

.experiencia__content {
  width: 74%;
  margin: 0 auto 28px;
  text-align: center;
}

.experiencia__title {
  font-size: 32px;
}

.experiencia__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(29, 23, 21, .35);
}

.experiencia__item {
  padding: 20px 11px 0;
  text-align: center;
}

.experiencia__item-icon {
  width: 26px;
  height: 26px;
  margin: 0 auto 9px;
}

.experiencia__item-icon svg {
  width: 100%;
  height: 100%;
}

.experiencia__item h3 {
  font-family: var(--head);
  font-size: 9px;
  font-weight: 900;
}

.experiencia__item p {
  margin-top: 6px;
  font-size: 8px;
  line-height: 1.35;
}

/* Sponsorship dark feature */
.patrocinio-hero {
  min-height: 390px;
  display: flex;
  align-items: center;
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(27, 22, 20, .94), rgba(27, 22, 20, .55)),
    url("assets/gallery-2.webp") center / cover;
  color: #fff;
}

.patrocinio-hero__content {
  max-width: 450px;
}

.patrocinio-hero__title {
  font-size: 52px;
}

.patrocinio-hero__title::after {
  content: "";
  display: block;
  width: 82px;
  height: 10px;
  margin-top: 16px;
  background: var(--lime);
}

.patrocinio-hero__text {
  max-width: 390px;
  margin-top: 19px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
}

.patrocinio-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 25px;
}

/* Why sponsor / editorial columns */
.porque {
  padding: 62px 0 68px;
  background: #fff;
}

.porque__header {
  margin-bottom: 35px;
}

.porque__title {
  font-size: 38px;
}

.porque__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.porque__item {
  padding-top: 12px;
  border-top: 2px solid var(--ink);
}

.porque__number {
  display: block;
  color: #a4b000;
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
}

.porque__item h3 {
  margin-top: 7px;
  font-family: var(--head);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.porque__item p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

/* Presence mosaic */
.presenca360 {
  padding: 58px 0 0;
  background: var(--paper-soft);
}

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

.presenca360__title {
  font-size: 38px;
}

.presenca360__subtitle {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
}

.presenca360__grid {
  position: relative;
  left: 50%;
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  transform: translateX(-50%);
}

.presenca360__item {
  position: relative;
  aspect-ratio: .95;
  overflow: hidden;
  border-right: 1px solid #fff;
}

.presenca360__item-img {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform .45s var(--ease);
}

.presenca360__item-img img {
  transition: transform .45s var(--ease);
}

.presenca360__item:nth-child(1) img { object-position: center 54%; }
.presenca360__item:nth-child(2) img { object-position: 56% center; }
.presenca360__item:nth-child(3) img { object-position: 54% 44%; }
.presenca360__item:nth-child(4) img { object-position: center 68%; }
.presenca360__item:nth-child(5) img { object-position: center; }
.presenca360__item:nth-child(6) img { object-position: center 73%; }
.presenca360__item:nth-child(7) img { object-position: center; }
.presenca360__item:nth-child(8) img { object-position: 58% 50%; }

.presenca360__item:nth-child(5) .presenca360__item-img,
.presenca360__item:nth-child(7) .presenca360__item-img {
  transform: scale(1.12);
}

.presenca360__item:nth-child(2n) .presenca360__item-img {
  filter: saturate(.82) contrast(1.04);
}

.presenca360__item:hover .presenca360__item-img {
  transform: scale(1.06);
}

.presenca360__item::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .7));
}

.presenca360__item-label {
  position: absolute;
  z-index: 2;
  left: 10px;
  bottom: 8px;
  color: #fff;
  font-family: var(--head);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

/* Sponsorship plans */
.cotas {
  padding: 65px 0 72px;
  background: #fff;
}

.cotas__header {
  margin-bottom: 33px;
}

.cotas__title {
  font-size: 39px;
}

.cotas__subtitle {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
}

.cotas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 2px solid var(--ink);
}

.cotas__item {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px 25px;
  border-right: 1px solid var(--line);
}

.cotas__item:last-child {
  border-right: 0;
}

.cotas__item--master {
  background: var(--lime);
}

.cotas__item-badge {
  align-self: flex-start;
  padding: 4px 8px;
  border: 1px solid var(--ink);
  font-family: var(--condensed);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
}

.cotas__item-name {
  margin-top: 16px;
  font-family: var(--head);
  font-size: 27px;
  font-weight: 900;
}

.cotas__item-tagline {
  min-height: 38px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.cotas__item-features {
  flex: 1;
  margin: 18px 0 25px;
  list-style: none;
}

.cotas__item-features li {
  padding: 7px 0 7px 13px;
  border-top: 1px solid rgba(29, 23, 21, .17);
  font-size: 9px;
}

.cotas__item-features li::before {
  content: "+";
  margin-left: -13px;
  margin-right: 6px;
  font-weight: 800;
}

.cotas__item .btn--outline {
  border-color: var(--ink);
  color: var(--ink);
}

.cotas__item .btn--outline:hover {
  background: var(--ink);
  color: #fff;
}

/* Master lime quote */
.master-spotlight {
  position: relative;
  padding: 55px 0;
  background:
    linear-gradient(rgba(231, 245, 31, .94), rgba(231, 245, 31, .94)),
    url("assets/gallery-3.webp") center / cover;
}

.master-spotlight__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 48px;
}

.master-spotlight__title {
  font-size: 35px;
}

.master-spotlight__title--accent {
  color: rgba(29, 23, 21, .58);
}

.master-spotlight__text {
  max-width: 455px;
  margin-top: 17px;
  font-size: 10px;
}

.master-spotlight__visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 2px solid var(--ink);
}

.master-spotlight__item {
  min-height: 62px;
  padding: 12px;
  border-right: 1px solid rgba(29, 23, 21, .25);
  border-bottom: 1px solid rgba(29, 23, 21, .25);
}

.master-spotlight__item:nth-child(even) { border-right: 0; }
.master-spotlight__item:nth-last-child(-n+2) { border-bottom: 0; }

.master-spotlight__item-number {
  color: rgba(29, 23, 21, .48);
  font-family: var(--condensed);
  font-size: 8px;
  font-weight: 700;
}

.master-spotlight__item-label {
  display: block;
  margin-top: 4px;
  font-family: var(--head);
  font-size: 11px;
  font-weight: 900;
}

/* Sponsors */
.sponsors {
  padding: 60px 0 35px;
  background: #fff;
}

.sponsors__header {
  margin-bottom: 25px;
}

.sponsors__title {
  font-size: 36px;
}

.sponsors__group {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: stretch;
  border-top: 1px solid var(--ink);
}

.sponsors__group:last-child {
  border-bottom: 1px solid var(--ink);
}

.sponsors__group-title {
  padding: 18px 10px 18px 0;
  font-family: var(--head);
  font-size: 10px;
  font-weight: 900;
}

.sponsors__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}

.sponsors__logos--master {
  grid-template-columns: repeat(2, 1fr);
}

.sponsors__placeholder,
.sponsors__logo {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 13px;
  border-right: 1px solid var(--line);
  background: #fafafa;
}

.sponsors__placeholder span {
  color: #999;
  font-family: var(--condensed);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.sponsors__logo img {
  max-height: 48px;
  width: auto;
}

/* Instagram-style gallery */
.galeria {
  padding: 55px 0 0;
  background: #fff;
  overflow: hidden;
}

.galeria__header {
  order: -2;
  position: relative;
  left: 50%;
  width: 100vw;
  padding: 28px max(20px, calc((100vw - var(--content)) / 2)) 0;
  transform: translateX(-50%);
  text-align: center;
}

.galeria__title {
  font-size: 18px;
}

.galeria__subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.galeria__disclaimer {
  display: inline-block;
  margin-top: 7px;
  color: var(--muted);
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.galeria__grid {
  position: relative;
  left: 50%;
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  transform: translateX(-50%);
}

.galeria__item,
.galeria__item--wide {
  position: relative;
  height: 142px;
  aspect-ratio: auto;
  overflow: hidden;
  border-right: 1px solid #fff;
}

.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.galeria__item:nth-child(1) img { object-position: 54% 47%; }
.galeria__item:nth-child(2) img { object-position: 54% 44%; }
.galeria__item:nth-child(3) img { object-position: center 72%; }
.galeria__item:nth-child(4) img { object-position: center 52%; }
.galeria__item:nth-child(5) img { object-position: center 66%; }
.galeria__item:nth-child(6) img { object-position: center; }

.galeria__item:hover img {
  transform: scale(1.06);
}

.galeria__cta {
  position: relative;
  left: 50%;
  width: 100vw;
  min-height: 126px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(-50%);
  background: #fff;
  order: -1;
}

.galeria__inner {
  display: flex;
  flex-direction: column;
}

.galeria__cta {
  order: -1;
}

.galeria__instagram {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--head);
  font-size: 34px;
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.galeria__instagram-icon {
  width: 70px;
  height: 70px;
  padding: 9px;
  border-radius: 17px;
  color: #e82e78;
  stroke-width: 1.7;
}

.galeria__cta .btn {
  border-color: var(--ink);
  color: var(--ink);
}

.galeria__cta .btn:hover {
  background: var(--lime);
}

/* Previous edition */
.edicoes {
  padding: 58px 0;
  background: var(--paper-soft);
}

.edicoes__inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 50px;
}

.edicoes__title {
  font-size: 37px;
}

.edicoes__text {
  color: var(--muted);
  font-size: 10px;
}

.edicoes__placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 2px solid var(--ink);
}

.edicoes__placeholder-year {
  font-family: var(--head);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.edicoes__placeholder-label {
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
}

/* Location */
.local {
  padding: 65px 0;
  background: #fff;
}

.local__inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 55px;
}

.local__title {
  font-size: 39px;
}

.local__info {
  margin: 22px 0 26px;
  border-top: 2px solid var(--ink);
}

.local__info-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.local__info-label {
  font-family: var(--condensed);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
}

.local__info-value {
  font-family: var(--head);
  font-size: 11px;
  font-weight: 800;
}

.local__map-placeholder {
  min-height: 310px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(29, 23, 21, .2) 50%, transparent 50.2%),
    linear-gradient(rgba(29, 23, 21, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 23, 21, .05) 1px, transparent 1px),
    var(--lime);
  background-size: 100% 100%, 35px 35px, 35px 35px, auto;
}

.local__map-placeholder svg {
  width: 38px;
  height: 38px;
}

.local__map-placeholder span {
  font-family: var(--head);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

/* Registration */
.inscricao {
  min-height: 390px;
  display: flex;
  align-items: center;
  padding: 60px 0;
  background:
    linear-gradient(90deg, rgba(26, 21, 19, .93), rgba(26, 21, 19, .52)),
    url("assets/gallery-3.webp") center / cover;
  color: #fff;
}

.inscricao__content {
  width: 520px;
}

.inscricao__title {
  font-size: 49px;
}

.inscricao__text {
  margin-top: 14px;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
}

.inscricao__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .4);
  border-left: 1px solid rgba(255, 255, 255, .4);
}

.inscricao__info-item {
  padding: 11px 13px;
  border-right: 1px solid rgba(255, 255, 255, .4);
  border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.inscricao__info-label {
  display: block;
  font-family: var(--condensed);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
}

.inscricao__info-value {
  display: block;
  margin-top: 4px;
  color: var(--lime);
  font-family: var(--head);
  font-size: 12px;
  font-weight: 900;
}

/* Final CTA */
.cta-final {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background: var(--lime);
  color: var(--ink);
  text-align: center;
}

.cta-final::before,
.cta-final::after {
  position: absolute;
  top: 50%;
  font-family: Arial, sans-serif;
  font-size: 180px;
  line-height: .5;
  transform: translateY(-50%);
}

.cta-final::before { content: "["; left: calc(50% - 440px); }
.cta-final::after { content: "]"; right: calc(50% - 440px); }

.cta-final__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-final__title {
  font-size: 37px;
}

.cta-final__text {
  max-width: 470px;
  margin: 15px auto 0;
  font-size: 10px;
}

.cta-final__actions {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}

.cta-final .btn--outline {
  border-color: var(--ink);
  color: var(--ink);
}

.cta-final .btn--outline:hover {
  background: #fff;
}

/* Footer */
.footer {
  padding: 55px 0 18px;
  background: var(--charcoal);
  color: #fff;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.15fr .9fr 1.2fr;
  gap: 65px;
  padding-bottom: 48px;
}

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

.footer__logo svg {
  width: 40px;
  height: 40px;
  color: var(--lime);
}

.footer__logo span {
  font-family: var(--head);
  font-size: 16px;
  font-weight: 900;
}

.footer__tagline {
  margin-top: 14px;
  color: rgba(255, 255, 255, .68);
  font-size: 9px;
}

.footer__links h2,
.footer__contact h2 {
  margin-bottom: 16px;
  color: var(--lime);
  font-family: var(--head);
  font-size: 15px;
  font-weight: 900;
}

.footer__links,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer__links a,
.footer__contact a {
  width: fit-content;
  color: rgba(255, 255, 255, .77);
  font-size: 9px;
  transition: color .2s ease;
}

.footer__links a,
.footer__contact a {
  min-height: 32px;
  align-items: center;
}

.footer__contact a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--lime);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .62);
  font-size: 8px;
}

/* Entrance motion */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.js .reveal.is-revealed {
  opacity: 1;
  transform: none;
}

/* Laptop */
@media (max-width: 980px) {
  :root { --content: 760px; }

  .header__nav { gap: 13px; }
  .header__nav-link { font-size: 8px; }
  .header__cta { display: none; }

  .hero__content { grid-template-columns: 1.1fr .9fr; }
  .hero__title { font-size: 45px; }

  .presenca360__grid { grid-template-columns: repeat(4, 1fr); }
  .porque__grid { gap: 15px; }
}

/* Tablet and mobile navigation */
@media (max-width: 820px) {
  :root { --header-h: 64px; }

  .header__nav,
  .header__cta { display: none; }
  .header__burger { display: flex; }

  .hero {
    min-height: 520px;
    padding-top: 90px;
  }

  .hero__content {
    width: min(100%, 600px);
    grid-template-columns: 1fr;
    grid-template-areas: "badge" "title" "meta" "info" "actions";
    justify-items: start;
  }

  .hero__badge { margin: 0 0 20px; }
  .hero__title { justify-self: start; text-align: left; }
  .hero__title::after { display: none; }
  .hero__meta { justify-self: start; }
  .hero__info {
    min-height: auto;
    margin-top: 24px;
    padding-left: 12px;
  }
  .hero__actions { justify-self: start; }

  .strip__grid { grid-template-columns: repeat(3, 1fr); }
  .strip__item:nth-child(n+4) { display: none; }

  .torneio__inner,
  .master-spotlight__inner,
  .edicoes__inner,
  .local__inner { grid-template-columns: 1fr; }

  .torneio__image { height: 270px; }
  .torneio__image-wrapper { inset: 0; }

  .numbers__inner { grid-template-columns: 1fr; }
  .numbers__grid { grid-template-columns: repeat(5, 1fr); }

  .categorias__grid { grid-template-columns: repeat(3, 1fr); }
  .categorias__item:nth-child(3) { border-right: 0; }
  .categorias__item:nth-child(n+4) { border-top: 1px solid var(--line); }

  .experiencia__grid { grid-template-columns: repeat(3, 1fr); }
  .experiencia::before,
  .experiencia::after,
  .cta-final::before,
  .cta-final::after { display: none; }

  .porque__grid { grid-template-columns: repeat(3, 1fr); }
  .presenca360__grid { grid-template-columns: repeat(4, 1fr); }

  .galeria__grid { grid-template-columns: repeat(3, 1fr); }
  .galeria__cta { flex-direction: column; gap: 18px; padding: 25px; }

  .footer__top { gap: 35px; }
}

/* Phone */
@media (max-width: 580px) {
  :root { --content: 100%; }

  body { font-size: 12px; }

  .header__inner,
  .torneio__inner,
  .numbers__inner,
  .categorias__inner,
  .experiencia__inner,
  .patrocinio-hero__inner,
  .porque__inner,
  .presenca360__inner,
  .cotas__inner,
  .master-spotlight__inner,
  .sponsors__inner,
  .galeria__inner,
  .edicoes__inner,
  .local__inner,
  .inscricao__inner,
  .cta-final__inner,
  .footer__inner {
    width: min(calc(100% - 32px), var(--content));
  }

  .header__inner { width: calc(100% - 28px); }
  .header__logo-icon { width: 44px; }

  .hero {
    min-height: 580px;
    padding-inline: 16px;
    background-position: 62% center;
  }

  .hero__image { object-position: 60% center; }
  .hero__title { font-size: clamp(40px, 14vw, 58px); }
  .hero__actions { width: 100%; flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .strip__item { height: 125px; }
  .strip__item:nth-child(3) { display: none; }

  .torneio { padding-top: 54px; }
  .torneio__number {
    float: none;
    width: auto;
    height: auto;
    margin: 0 0 18px;
    border: 0;
    font-size: 65px;
  }
  .torneio__title { font-size: 34px; }
  .torneio__image { height: 250px; }

  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .numbers__item { border-top: 1px solid #c9c6bf; }
  .numbers__item:nth-child(odd) { border-left: 0; }

  .categorias__header,
  .presenca360__header { align-items: start; flex-direction: column; gap: 6px; }
  .categorias__grid { grid-template-columns: 1fr; }
  .categorias__item,
  .categorias__item:nth-child(3) { min-height: 105px; border-right: 0; border-top: 1px solid var(--line); }
  .categorias__item:first-child { border-top: 0; }

  .experiencia__content { width: 100%; }
  .experiencia__title { font-size: 28px; }
  .experiencia__grid { grid-template-columns: repeat(2, 1fr); }

  .patrocinio-hero__title,
  .inscricao__title { font-size: 40px; }
  .patrocinio-hero__actions { flex-direction: column; }
  .patrocinio-hero__actions .btn { width: 100%; }

  .porque__grid { grid-template-columns: 1fr; }
  .porque__item { padding-bottom: 14px; }

  .presenca360__grid { grid-template-columns: repeat(2, 1fr); }

  .cotas__grid { grid-template-columns: 1fr; }
  .cotas__item { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .cotas__item:last-child { border-bottom: 0; }

  .master-spotlight__visual { grid-template-columns: 1fr; }
  .master-spotlight__item,
  .master-spotlight__item:nth-child(even),
  .master-spotlight__item:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid rgba(29, 23, 21, .25); }
  .master-spotlight__item:last-child { border-bottom: 0; }

  .sponsors__group { grid-template-columns: 1fr; }
  .sponsors__group-title { padding-bottom: 9px; }
  .sponsors__logos,
  .sponsors__logos--master { grid-template-columns: 1fr; border-left: 0; }

  .galeria__cta { min-height: 210px; }
  .galeria__instagram { gap: 10px; font-size: 24px; }
  .galeria__instagram-icon { width: 54px; height: 54px; }
  .galeria__grid { grid-template-columns: repeat(2, 1fr); }
  .galeria__item,
  .galeria__item--wide { height: 135px; }

  .edicoes__inner,
  .local__inner { gap: 30px; }
  .local__map-placeholder { min-height: 230px; }

  .inscricao__content { width: 100%; }
  .inscricao__info { grid-template-columns: 1fr; }

  .cta-final__title { font-size: 31px; }
  .cta-final__actions { flex-direction: column; }
  .cta-final__actions .btn { width: 100%; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Art direction refinement pass
   ============================================================ */

:root {
  --content: 1000px;
  --wide: 1320px;
}

body {
  font-size: 14px;
  background: #f7f5f0;
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .88);
}

.btn {
  min-height: 42px;
  padding: 12px 30px;
  font-size: 11px;
}

.btn--large {
  min-height: 48px;
  font-size: 12px;
}

.header__inner {
  width: min(calc(100% - 56px), var(--wide));
}

.header__logo-icon {
  width: 62px;
  height: 36px;
}

.header__logo-text {
  font-size: 15px;
}

.header__nav {
  gap: 24px;
}

.header__nav-link {
  font-size: 10px;
}

.header__nav-link.is-active {
  color: var(--lime);
}

.header__nav-link.is-active::after {
  right: 0;
}

.hero {
  min-height: min(720px, 82vh);
  padding-top: 110px;
  padding-bottom: 64px;
}

.hero__bg {
  background: #171210;
}

.hero__content {
  width: min(100%, 1020px);
  grid-template-columns: 1.18fr .82fr;
  column-gap: 72px;
}

.hero__badge {
  margin-bottom: 34px;
  font-size: 10px;
}

.hero__title {
  font-size: clamp(56px, 5vw, 76px);
  line-height: .84;
}

.hero__title::after {
  left: calc(100% + 17px);
  font-size: 148px;
}

.hero__meta {
  margin-top: 21px;
  font-size: 10px;
}

.hero__info {
  min-height: 155px;
  padding-left: 24px;
}

.hero__info-label {
  font-size: 10px;
}

.hero__info-value {
  font-size: 21px;
}

.hero__actions {
  margin-top: 27px;
}

.strip__item {
  height: 205px;
}

.strip__item-label {
  bottom: 13px;
  font-size: 10px;
}

.torneio {
  min-height: 570px;
  padding: 94px 0 70px;
}

.torneio__inner {
  grid-template-columns: 1.05fr .95fr;
  gap: 55px;
}

.torneio__content {
  max-width: 560px;
}

.torneio__title {
  font-size: clamp(42px, 4.2vw, 58px);
}

.torneio__text {
  max-width: 510px;
  font-size: 13px;
  line-height: 1.7;
}

.torneio__number {
  margin-top: 142px;
}

.torneio__image {
  height: 470px;
}

.numbers {
  padding: 44px 0 48px;
}

.numbers__inner {
  grid-template-columns: 170px 1fr;
  gap: 36px;
}

.numbers__label {
  font-size: 24px;
}

.numbers__item {
  min-height: 78px;
  padding-inline: 18px;
}

.numbers__value {
  font-size: 34px;
}

.numbers__desc {
  font-size: 9px;
}

.categorias,
.porque,
.cotas,
.sponsors,
.local {
  padding-top: 82px;
  padding-bottom: 86px;
}

.categorias__title,
.porque__title,
.presenca360__title,
.cotas__title,
.local__title {
  font-size: 48px;
}

.categorias__subtitle,
.presenca360__subtitle,
.cotas__subtitle {
  font-size: 13px;
}

.categorias__item {
  min-height: 176px;
  padding: 22px 17px;
}

.categorias__item-letter {
  font-size: 62px;
}

.categorias__item-info h3 {
  font-size: 14px;
}

.categorias__item-info p {
  font-size: 11px;
}

.experiencia {
  padding: 76px 0;
}

.experiencia__content {
  margin-bottom: 40px;
}

.experiencia__title {
  font-size: 42px;
}

.experiencia__item {
  padding: 26px 15px 0;
}

.experiencia__item-icon {
  width: 34px;
  height: 34px;
}

.experiencia__item h3 {
  font-size: 11px;
}

.experiencia__item p {
  font-size: 10px;
  line-height: 1.5;
}

.patrocinio-hero {
  min-height: 520px;
  padding-block: 92px;
}

.patrocinio-hero__content {
  max-width: 560px;
}

.patrocinio-hero__title {
  font-size: 66px;
}

.patrocinio-hero__text {
  max-width: 470px;
  font-size: 14px;
  line-height: 1.65;
}

.porque__grid {
  gap: 34px;
}

.porque__item {
  padding-top: 17px;
}

.porque__number {
  font-size: 10px;
}

.porque__item h3 {
  font-size: 16px;
}

.porque__item p {
  font-size: 11px;
  line-height: 1.6;
}

.presenca360 {
  padding-top: 76px;
}

.presenca360__grid {
  grid-template-columns: repeat(4, 1fr);
}

.presenca360__item {
  aspect-ratio: 1.28;
}

.presenca360__item-label {
  left: 15px;
  bottom: 12px;
  font-size: 10px;
}

.cotas__item {
  min-height: 455px;
  padding: 34px 30px;
}

.cotas__item-badge {
  font-size: 9px;
}

.cotas__item-name {
  font-size: 32px;
}

.cotas__item-tagline {
  font-size: 12px;
}

.cotas__item-features li {
  padding-block: 9px;
  font-size: 11px;
}

.master-spotlight {
  padding-block: 74px;
}

.master-spotlight__title {
  font-size: 44px;
}

.master-spotlight__text {
  font-size: 12px;
  line-height: 1.65;
}

.master-spotlight__item {
  min-height: 78px;
  padding: 17px;
}

.master-spotlight__item-label {
  font-size: 13px;
}

.sponsors__title {
  font-size: 44px;
}

.sponsors__group-title {
  font-size: 12px;
}

.sponsors__placeholder,
.sponsors__logo {
  min-height: 96px;
}

.sponsors__placeholder span {
  font-size: 10px;
}

.galeria {
  padding-top: 72px;
}

.galeria__title {
  font-size: 24px;
}

.galeria__subtitle {
  font-size: 11px;
}

.galeria__cta {
  min-height: 158px;
}

.galeria__item,
.galeria__item--wide {
  height: 210px;
}

.edicoes {
  padding-block: 78px;
}

.edicoes__title {
  font-size: 46px;
}

.edicoes__text {
  font-size: 12px;
  line-height: 1.65;
}

.local__info-label {
  font-size: 9px;
}

.local__info-value {
  font-size: 13px;
}

.local__map-placeholder {
  min-height: 390px;
}

.inscricao {
  min-height: 520px;
  padding-block: 82px;
}

.inscricao__content {
  width: 620px;
}

.inscricao__title {
  font-size: 62px;
}

.inscricao__text {
  font-size: 14px;
}

.inscricao__info-label {
  font-size: 9px;
}

.inscricao__info-value {
  font-size: 14px;
}

.cta-final {
  padding-block: 76px;
}

.cta-final__content {
  max-width: 700px;
}

.cta-final__title {
  font-size: 47px;
}

.cta-final__text {
  font-size: 12px;
  line-height: 1.6;
}

.footer {
  padding-top: 68px;
}

.footer__top {
  padding-bottom: 58px;
}

.footer__tagline,
.footer__links a,
.footer__contact a {
  font-size: 11px;
}

.footer__bottom {
  font-size: 10px;
}

@media (max-width: 1080px) {
  :root { --content: 860px; }

  .header__nav { gap: 15px; }
  .header__nav-link { font-size: 9px; }
  .hero__content { width: min(100%, 860px); }
  .hero__title { font-size: 58px; }
  .porque__grid { gap: 20px; }
}

@media (max-width: 820px) {
  :root { --content: 680px; }

  .hero { min-height: 650px; }
  .hero__content { width: min(100%, 620px); }
  .hero__title { font-size: 58px; }
  .strip__item { height: 175px; }
  .torneio__number { margin-top: 0; }
  .numbers__inner { grid-template-columns: 1fr; }
  .presenca360__grid { grid-template-columns: repeat(2, 1fr); }
  .galeria__item, .galeria__item--wide { height: 190px; }
}

@media (max-width: 580px) {
  body { font-size: 13px; }
  .hero { min-height: 640px; }
  .hero__title { font-size: clamp(42px, 14vw, 58px); }
  .hero__info-value { font-size: 18px; }
  .strip__item { height: 145px; }
  .torneio { padding-block: 62px; }
  .torneio__title,
  .categorias__title,
  .porque__title,
  .presenca360__title,
  .cotas__title,
  .local__title { font-size: 38px; }
  .torneio__text { font-size: 12px; }
  .numbers__value { font-size: 30px; }
  .categorias__item { min-height: 118px; }
  .experiencia__title { font-size: 31px; }
  .experiencia__item p { font-size: 9px; }
  .patrocinio-hero__title,
  .inscricao__title { font-size: 44px; }
  .porque__item p { font-size: 11px; }
  .presenca360__item { aspect-ratio: 1; }
  .cotas__item { min-height: auto; }
  .galeria__instagram { font-size: 25px; }
  .galeria__item, .galeria__item--wide { height: 155px; }
  .edicoes__title { font-size: 37px; }
  .local__map-placeholder { min-height: 250px; }
  .cta-final__title { font-size: 34px; }
}

.galeria__header.reveal,
.galeria__cta.reveal {
  transform: translate(-50%, 22px);
}

.galeria__header.reveal.is-revealed,
.galeria__cta.reveal.is-revealed {
  transform: translate(-50%, 0);
}

@media (max-width: 900px) {
  .header__nav,
  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
  }
}

/* Final responsive and accessibility safeguards */
.experiencia__grid {
  grid-template-columns: repeat(3, 1fr);
  margin-inline: clamp(96px, 10vw, 120px);
}

.experiencia__item p,
.porque__item p,
.cotas__item-features li {
  font-size: 12px;
  line-height: 1.55;
}

.numbers__value::after,
.porque__number {
  color: #626b00;
}

.numbers__value[data-count="0"] {
  color: var(--muted);
  font-size: 17px;
  letter-spacing: 0;
}

.footer__links a,
.footer__contact a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer__bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .58;
}

@media (max-width: 900px) {
  :root { --content: 680px; }

  .hero__content {
    width: min(100%, 620px);
    grid-template-columns: 1fr;
    grid-template-areas: "badge" "title" "meta" "info" "actions";
    column-gap: 0;
  }

  .torneio__inner,
  .master-spotlight__inner,
  .edicoes__inner,
  .local__inner {
    grid-template-columns: 1fr;
  }

  .torneio__image-wrapper {
    inset: 0;
  }

  .numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers__item {
    border-top: 1px solid #c9c6bf;
  }

  .numbers__item:nth-child(odd) {
    border-left: 0;
  }

  .numbers__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .inscricao__content {
    width: 620px;
    max-width: 100%;
  }

  .experiencia__grid {
    margin-inline: 0;
  }

  .experiencia::before,
  .experiencia::after {
    display: none;
  }
}

@media (max-width: 580px) {
  .header__inner {
    width: calc(100% - 28px);
  }

  .header__logo-icon {
    width: 44px;
    height: 32px;
  }

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

  .experiencia__item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 2px 14px;
    text-align: left;
    border-top: 1px solid rgba(29, 23, 21, .2);
  }

  .experiencia__item-icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .experiencia__item p,
  .porque__item p,
  .cotas__item-features li {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
