.sponsor-img--big {
  max-width: 340px !important;
  max-height: 180px !important;
}


:root {
  --bg: #0d0f14;
  --bg-soft: #11151d;
  --bg-card: rgba(18, 22, 31, 0.88);
  --text: #f8f8f8;
  --muted: rgba(255, 255, 255, 0.78);
  --muted-dark: rgba(7, 10, 18, 0.68);
  --gold: #dcc366;
  --gold-strong: #c6ab43;
  --blue: #134e78;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --radius-lg: 30px;
  --radius-md: 22px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.10), rgba(8, 10, 14, 0.10)),
    url('https://files.greatpages.com.br/arquivos/paginas_editor/448211-985b55d334106641b63802946823536d.png') center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(220, 195, 102, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(11, 17, 27, 0.78) 0%, rgba(11, 17, 27, 0.52) 45%, rgba(11, 17, 27, 0.3) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 28px 0 64px;
}

.hero__topbar {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.hero__mini-cta {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  backdrop-filter: blur(14px);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
  gap: 36px;
  align-items: center;
}

.hero__text {
  max-width: 700px;
}

.hero__seal {
  width: 190px;
  margin-bottom: 22px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--blue);
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 00;
  line-height: 1.04;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  max-width: 12ch;
}

.hero__description,
.section-heading p,
.ticket p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero__actions,
.ticket__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn--gold {
  background: var(--gold);
  color: #151515;
  box-shadow: 0 12px 30px rgba(220, 195, 102, 0.24);
}

.btn--gold:hover {
  background: var(--gold-strong);
}

.btn--ghost,
.btn--ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.04);
}

.highlight-badge {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(220, 195, 102, 0.16);
  color: var(--gold);
  border: 1px solid rgba(220, 195, 102, 0.25);
  font-weight: 800;
}

.countdown-card,
.card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.countdown-card {
  background: linear-gradient(180deg, rgba(12, 16, 24, 0.82), rgba(18, 23, 34, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.countdown-card__label {
  margin: 0 0 20px;
  color: var(--muted);
  font-weight: 600;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.countdown__item {
  padding: 14px 2px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.countdown__number {
  display: block;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--gold);
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.countdown__text {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.section {
  padding: 96px 0;
}

.about {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.98)),
    url('https://files.greatpages.com.br/arquivos/paginas_editor/448211-e7d37a437a7840e1c03f4fabbacc9455.jpg') center/cover fixed no-repeat;
  color: #111827;
}

.section-heading {
  max-width: 780px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--blue);
}

.section-heading p {
  color: var(--muted-dark);
}

.about__grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 34px;
  align-items: center;
}

.card {
  background: white;
  padding: 26px;
}

.schedule {
  display: grid;
  gap: 14px;
}

.schedule__item {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f3f6fb;
  border: 1px solid rgba(19, 78, 120, 0.08);
}

.schedule__item span {
  font-weight: 900;
  color: var(--blue);
}

.schedule__item strong {
  font-size: 0.98rem;
  color: #182131;
}

.about__visual {
  min-height: 100%;
}

.photo-card {
  overflow: hidden;
  border-radius: 100px 24px 24px 24px;
  box-shadow: var(--shadow);
  background: #d8dee6;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tickets {
  background:
    linear-gradient(180deg, rgba(13, 15, 20, 0.95), rgba(13, 15, 20, 0.98)),
    url('https://files.greatpages.com.br/arquivos/paginas_editor/448211-985b55d334106641b63802946823536d.png') center/cover no-repeat;
}

.section-heading.light h2,
.section-heading.light p {
  color: white;
}

.tickets__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.card--dark {
  background: linear-gradient(180deg, rgba(20, 24, 34, 0.9), rgba(13, 16, 23, 0.98));
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ticket--accent {
  position: relative;
  overflow: hidden;
}

.ticket--accent::before {
  content: '';
  position: absolute;
  inset: auto -40px -60px auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(220, 195, 102, 0.16), transparent 70%);
}

.ticket h3 {
  margin: 0;
  font-size: 1.6rem;
}

.ticket__price {
  margin-top: 18px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--gold);
}

.sponsors {
  background: #f7f8fb;
  color: #0d1b2b;
}

.sponsors__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sponsor {
  padding: 18px;
  background: #0d1b2b;
  border-radius: 18px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.sponsor {
  aspect-ratio: 16/9;
  height: auto;
  min-height: 0;
}

.sponsor img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
  display: block;
  margin: auto;
}

.footer {
  padding: 34px 0 42px;
  background: #0b0e13;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer__logo {
  width: 140px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .hero__grid,
  .about__grid,
  .tickets__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero h1 {
    max-width: none;
  }

  .countdown-card {
    max-width: 700px;
  }

  .sponsors__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero__content {
    padding-top: 20px;
    padding-bottom: 46px;
  }

  .hero__mini-cta {
    width: 100%;
    text-align: center;
  }

  .hero__seal {
    width: 140px;
  }

  .hero__actions,
  .ticket__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .section {
    padding: 72px 0;
  }

  .schedule__item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .photo-card {
    border-radius: 30px;
  }

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

@media (max-width: 420px) {
  .countdown {
    grid-template-columns: 1fr;
  }

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