/* Gerais */
:root {
  --preto: #121212;
  --cinza-escuro: #292929;
  --cinza-claro: #e4e4e4;
  --branco: #ffffff;
  --amarelo: #ffd300;
  --amarelo-escuro: #dcbf2d;
  --vermelho: #d71920;
  --fundo: #0b0b0b;
  --radius: 12px;
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 16px 36px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 28px 60px rgba(0, 0, 0, 0.32);
  --transition: 220ms ease;
  --container: 1240px;
}

html {
  scroll-behavior: smooth;
  background: var(--fundo);
}

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

* {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--fundo);
  color: var(--branco);
  font-family: "Noto Sans", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: transparent;
}

ul,
ol {
  list-style: none;
}

main {
  display: block;
}

::selection {
  background: var(--amarelo);
  color: var(--preto);
}

:focus-visible {
  outline: 3px solid rgba(255, 211, 0, 0.45);
  outline-offset: 3px;
}

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

.section {
  padding: clamp(64px, 8vw, 112px) 12px;
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, #070707, #090909);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.1;
  color: var(--amarelo);
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-text {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: var(--cinza-claro);
  line-height: 1.7;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* FIM Gerais */

/* header */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228, 228, 228, 0.08);
}

.lp-header__inner {
  width: 100%;
  max-width: var(--container);
  min-height: 68px;
  margin: 0 auto;
  padding-inline: clamp(16px, 3vw, 28px);
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.lp-header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  border-radius: 16px;
  transition: transform 220ms ease;
}

.lp-header__brand:hover {
  transform: translateY(-1px);
}

.lp-header__brand-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.lp-header__logo {
  display: block;
  width: auto;
  height: clamp(28px, 2.6vw, 32px);
  max-width: 160px;
  object-fit: contain;
}

.lp-header__nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.lp-header__link {
  color: rgba(228, 228, 228, 0.78);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.lp-header__link:hover {
  color: var(--amarelo);
  transform: translateY(-1px);
}

.lp-header__link:focus-visible,
.lp-header__cta:focus-visible,
.lp-header__menu-btn:focus-visible {
  outline: 3px solid rgba(255, 211, 0, 0.35);
  outline-offset: 4px;
}

.lp-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--vermelho), #b90f17);
  color: var(--branco);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.22);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.lp-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(215, 25, 32, 0.28);
}

.lp-header__menu-btn {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(228, 228, 228, 0.08);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.lp-header__menu-btn:hover {
  background: rgba(228, 228, 228, 0.12);
}

.lp-header__menu-btn span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--branco);
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

@media (max-width: 860px) {
  .lp-header__inner {
    min-height: 60px;
    gap: 12px;
  }

  .lp-header__menu-btn {
    display: inline-flex;
  }

  .lp-header__cta {
    display: none;
  }

  .lp-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(11, 11, 11, 0.98);
    border-bottom: 1px solid rgba(228, 228, 228, 0.08);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
    transition:
      max-height 220ms ease,
      opacity 220ms ease,
      padding 220ms ease;
  }

  .lp-header__nav.is-open {
    max-height: 340px;
    opacity: 1;
    pointer-events: auto;
    padding: 14px 16px 18px;
  }

  .lp-header__link {
    display: block;
    padding: 14px 6px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .lp-header__link:hover {
    background: rgba(228, 228, 228, 0.06);
    transform: none;
  }

  .lp-header__link--cta-mobile {
    color: var(--branco);
    font-weight: 800;
  }
}

@media (max-width: 480px) {
  .lp-header__inner {
    min-height: 56px;
    padding-inline: 14px;
  }

  .lp-header__menu-btn {
    width: 40px;
    height: 40px;
  }
}
/* FIM header */

/* hero */
.hero {
  min-height: calc(100vh - 74px);
  padding: 44px 6vw 56px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.58)),
    url("./assets/CAM - comemoracao.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 211, 0, 0.1), transparent 26%),
    linear-gradient(90deg, rgba(11, 11, 11, 0.16), rgba(11, 11, 11, 0.5));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  transform: translateY(-8px);
}

.hero-logo {
  margin-bottom: 2px;
}

.hero-logo img {
  width: 128px;
  height: auto;
  max-width: 100%;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--amarelo);
  text-wrap: balance;
  max-width: 11ch;
}

.hero-content p {
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.55;
  color: var(--cinza-claro);
  max-width: 34ch;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--vermelho), #b9141b);
  color: var(--branco);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 30px rgba(215, 25, 32, 0.26);
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease,
    background 220ms ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(215, 25, 32, 0.34);
  filter: saturate(1.03);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 12px 22px rgba(215, 25, 32, 0.22);
}

.cta-button:focus-visible {
  outline: 3px solid rgba(255, 211, 0, 0.45);
  outline-offset: 4px;
}

@media (max-width: 860px) {
  .hero {
    min-height: calc(100vh - 64px);
    padding: 28px 18px 44px;
    justify-content: center;
    background-position: center top;
  }

  .hero-content {
    width: 100%;
    max-width: 520px;
    text-align: center;
    align-items: center;
    transform: none;
  }

  .hero-content h1 {
    max-width: 14ch;
  }

  .hero-content p {
    max-width: 30ch;
    font-size: 1rem;
  }

  .hero-logo img {
    width: 118px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 20px 14px 40px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-logo img {
    width: 108px;
  }
}
/* FIM hero */

/* campanha */
.campanha-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.campanha-card {
  background: linear-gradient(180deg, #131313, #101010);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.campanha-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 211, 0, 0.22);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
}

.campanha-card h3 {
  color: var(--amarelo);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.campanha-card p {
  color: #c7c7c7;
  line-height: 1.7;
  font-size: 0.98rem;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.feature-card {
  background: linear-gradient(180deg, #131313, #101010);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 25, 32, 0.28);
}

.feature-card h3 {
  color: var(--amarelo);
  font-size: 2rem;
  margin-bottom: 0.85rem;
  line-height: 1;
}

.feature-card p {
  color: #d1d1d1;
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .campanha-grid,
  .cards-row {
    grid-template-columns: 1fr;
  }

  .campanha-card,
  .feature-card {
    padding: 24px;
  }
}
/* FIM campanha */

/* Seção 1: Emoção da comemoração */
.section-emocao {
  padding: clamp(64px, 8vw, 110px) 0;
  background: linear-gradient(180deg, #090909 0%, #0b0b0b 100%);
}

.section-emocao__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.section-emocao__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-emocao__kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 211, 0, 0.12);
  color: var(--amarelo);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-emocao__title {
  text-align: left;
  margin-bottom: 0;
  max-width: 14ch;
}

.section-emocao__text {
  text-align: left;
  margin: 0;
  max-width: 58ch;
}

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

.section-emocao__bullet {
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #131313, #101010);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.section-emocao__bullet:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 211, 0, 0.18);
}

.section-emocao__bullet h3 {
  color: var(--amarelo);
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.section-emocao__bullet p {
  color: #d7d7d7;
  font-size: 0.94rem;
  line-height: 1.6;
}

.section-emocao__media {
  margin: 0;
  position: relative;
}

.section-emocao__media::before {
  content: "";
  position: absolute;
  inset: 14px -10px -14px 14px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(215, 25, 32, 0.22),
    rgba(255, 211, 0, 0.08)
  );
  filter: blur(2px);
  z-index: 0;
}

.section-emocao__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

@media (max-width: 980px) {
  .section-emocao__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-emocao__title,
  .section-emocao__text {
    max-width: 100%;
  }

  .section-emocao__bullets {
    grid-template-columns: 1fr;
  }

  .section-emocao__media::before {
    inset: 10px -6px -10px 10px;
  }
}

@media (max-width: 560px) {
  .section-emocao {
    padding: 56px 0;
  }

  .section-emocao__content {
    gap: 14px;
  }

  .section-emocao__title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .section-emocao__bullet {
    padding: 16px;
  }

  .section-emocao__image {
    border-radius: 22px;
  }
}
/* FIM Seção 1 */

/* highlight */
.highlight {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #121212, #0f0f0f);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.highlight-text {
  max-width: 560px;
}

.highlight-text h2 {
  color: var(--amarelo);
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.highlight-text p {
  color: #d7d7d7;
  line-height: 1.8;
  font-size: 1.02rem;
}

.highlight figure {
  margin: 0;
}

.highlight img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 860px) {
  .highlight {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
  }

  .highlight-text {
    max-width: 100%;
    text-align: center;
  }

  .highlight-text h2 {
    font-size: clamp(1.7rem, 5vw, 2.3rem);
  }

  .highlight-text p {
    font-size: 0.98rem;
  }

  .highlight img {
    aspect-ratio: 16 / 10;
  }
}
/* FIM highlight */

/* Seção 2: Celebração com jogadores */
.section-celebracao {
  padding: clamp(64px, 8vw, 110px) 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(215, 25, 32, 0.14),
      transparent 35%
    ),
    linear-gradient(180deg, #0b0b0b 0%, #101010 100%);
}

.section-celebracao__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
}

.section-celebracao__media {
  margin: 0;
  position: relative;
}

.section-celebracao__media::before {
  content: "";
  position: absolute;
  inset: 16px 16px -16px -16px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(255, 211, 0, 0.12),
    rgba(215, 25, 32, 0.25)
  );
  filter: blur(2px);
  z-index: 0;
}

.section-celebracao__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.section-celebracao__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-celebracao__kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 211, 0, 0.12);
  color: var(--amarelo);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-celebracao__title {
  text-align: left;
  margin-bottom: 0;
  max-width: 15ch;
}

.section-celebracao__text {
  text-align: left;
  margin: 0;
  max-width: 58ch;
}

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

.section-celebracao__card {
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #151515, #101010);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.section-celebracao__card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 211, 0, 0.18);
}

.section-celebracao__card h3 {
  color: var(--amarelo);
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.section-celebracao__card p {
  color: #d7d7d7;
  font-size: 0.94rem;
  line-height: 1.6;
}

.section-celebracao__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amarelo), #ffe36b);
  color: #111;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(255, 211, 0, 0.2);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.section-celebracao__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 211, 0, 0.26);
}

@media (max-width: 980px) {
  .section-celebracao__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-celebracao__title,
  .section-celebracao__text {
    max-width: 100%;
  }

  .section-celebracao__cards {
    grid-template-columns: 1fr;
  }

  .section-celebracao__media::before {
    inset: 10px 10px -10px -10px;
  }
}

@media (max-width: 560px) {
  .section-celebracao {
    padding: 56px 0;
  }

  .section-celebracao__content {
    gap: 14px;
  }

  .section-celebracao__image {
    border-radius: 22px;
  }

  .section-celebracao__card {
    padding: 16px;
  }

  .section-celebracao__cta {
    width: 100%;
  }
}

/* FIM Seção 2: Celebração com jogadores */

/* about */
#sobre {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.about-card {
  background: linear-gradient(180deg, #131313, #101010);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 211, 0, 0.18);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
}

.about-card h3 {
  color: var(--amarelo);
  font-size: 1.45rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-card p {
  color: #d7d7d7;
  line-height: 1.75;
  font-size: 0.98rem;
}

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

.stat-box {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.stat-box:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 25, 32, 0.24);
}

.stat-box h4 {
  color: var(--amarelo);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-box p {
  color: #d1d1d1;
  margin-top: 0.85rem;
  line-height: 1.5;
  font-size: 0.95rem;
}

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

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

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

  .about-card,
  .stat-box {
    padding: 24px;
  }

  .about-card h3 {
    font-size: 1.25rem;
  }
}
/* FIM about */

/* Seção 3: A parceria em movimento */
.section-parceria {
  padding: clamp(64px, 8vw, 110px) 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 211, 0, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, #0f0f0f 0%, #0b0b0b 100%);
}

.section-parceria__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 32px;
  align-items: center;
}

.section-parceria__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-parceria__kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 211, 0, 0.12);
  color: var(--amarelo);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-parceria__title {
  text-align: left;
  margin-bottom: 0;
  max-width: 15ch;
}

.section-parceria__text {
  text-align: left;
  margin: 0;
  max-width: 58ch;
}

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

.section-parceria__stat {
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #151515, #101010);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.section-parceria__stat:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 211, 0, 0.18);
}

.section-parceria__stat h3 {
  color: var(--amarelo);
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.section-parceria__stat p {
  color: #d7d7d7;
  font-size: 0.94rem;
  line-height: 1.6;
}

.section-parceria__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amarelo), #ffe36b);
  color: #111;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(255, 211, 0, 0.2);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.section-parceria__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 211, 0, 0.26);
}

.section-parceria__media {
  margin: 0;
  position: relative;
}

.section-parceria__media::before {
  content: "";
  position: absolute;
  inset: 14px -10px -14px 14px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(255, 211, 0, 0.16),
    rgba(215, 25, 32, 0.18)
  );
  filter: blur(2px);
  z-index: 0;
}

.section-parceria__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

@media (max-width: 980px) {
  .section-parceria__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-parceria__title,
  .section-parceria__text {
    max-width: 100%;
  }

  .section-parceria__stats {
    grid-template-columns: 1fr;
  }

  .section-parceria__media::before {
    inset: 10px 10px -10px -10px;
  }
}

@media (max-width: 560px) {
  .section-parceria {
    padding: 56px 0;
  }

  .section-parceria__content {
    gap: 14px;
  }

  .section-parceria__image {
    border-radius: 22px;
  }

  .section-parceria__stat {
    padding: 16px;
  }

  .section-parceria__cta {
    width: 100%;
  }
}


/* Seção 4: Novidades e vantagens */
.section-novidades {
  padding: clamp(64px, 8vw, 110px) 0;
  background:
    radial-gradient(circle at top left, rgba(215, 25, 32, 0.1), transparent 34%),
    linear-gradient(180deg, #0b0b0b 0%, #111111 100%);
}

.section-novidades__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 32px;
  align-items: center;
}

.section-novidades__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-novidades__kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 211, 0, 0.12);
  color: var(--amarelo);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-novidades__title {
  text-align: left;
  margin-bottom: 0;
  max-width: 15ch;
}

.section-novidades__text {
  text-align: left;
  margin: 0;
  max-width: 58ch;
}

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

.section-novidades__card {
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #151515, #101010);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  transition: transform 220ms ease, border-color 220ms ease;
}

.section-novidades__card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 211, 0, 0.18);
}

.section-novidades__card h3 {
  color: var(--amarelo);
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.section-novidades__card p {
  color: #d7d7d7;
  font-size: 0.94rem;
  line-height: 1.6;
}

.section-novidades__list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: grid;
  gap: 12px;
}

.section-novidades__list li {
  position: relative;
  padding-left: 28px;
  color: #e2e2e2;
  line-height: 1.6;
}

.section-novidades__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--amarelo);
  font-weight: 900;
}

.section-novidades__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amarelo), #ffe36b);
  color: #111;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(255, 211, 0, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.section-novidades__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 211, 0, 0.26);
}

.section-novidades__media {
  margin: 0;
  position: relative;
}

.section-novidades__media::before {
  content: "";
  position: absolute;
  inset: 14px -10px -14px 14px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 211, 0, 0.16), rgba(215, 25, 32, 0.18));
  filter: blur(2px);
  z-index: 0;
}

.section-novidades__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

@media (max-width: 980px) {
  .section-novidades__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-novidades__title,
  .section-novidades__text {
    max-width: 100%;
  }

  .section-novidades__highlights {
    grid-template-columns: 1fr;
  }

  .section-novidades__media::before {
    inset: 10px 10px -10px -10px;
  }
}

@media (max-width: 560px) {
  .section-novidades {
    padding: 56px 0;
  }

  .section-novidades__content {
    gap: 14px;
  }

  .section-novidades__image {
    border-radius: 22px;
  }

  .section-novidades__card {
    padding: 16px;
  }

  .section-novidades__cta {
    width: 100%;
  }
}

/* Seção 5 */
.section-estadio {
  padding: clamp(64px, 8vw, 110px) 0;
  background:
    radial-gradient(circle at top left, rgba(215, 25, 32, 0.12), transparent 34%),
    linear-gradient(180deg, #0b0b0b 0%, #101010 100%);
}

.section-estadio__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.section-estadio__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-estadio__kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 211, 0, 0.12);
  color: var(--amarelo);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-estadio__title,
.section-estadio__text {
  text-align: left;
  margin: 0;
}

.section-estadio__title {
  max-width: 15ch;
}

.section-estadio__text {
  max-width: 58ch;
}

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

.section-estadio__card {
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #151515, #101010);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.section-estadio__card h3 {
  color: var(--amarelo);
  font-size: 1rem;
  margin-bottom: 8px;
}

.section-estadio__card p {
  color: #d7d7d7;
  font-size: 0.94rem;
  line-height: 1.6;
}

.section-estadio__media {
  margin: 0;
  position: relative;
}

.section-estadio__media::before {
  content: "";
  position: absolute;
  inset: 14px -10px -14px 14px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 211, 0, 0.16), rgba(215, 25, 32, 0.18));
  filter: blur(2px);
  z-index: 0;
}

.section-estadio__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

@media (max-width: 980px) {
  .section-estadio__grid {
    grid-template-columns: 1fr;
  }

  .section-estadio__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section-estadio {
    padding: 56px 0;
  }

  .section-estadio__image {
    border-radius: 22px;
  }

  .section-estadio__card {
    padding: 16px;
  }
}

/* FIM Seção 5 */

/*  Seção 6 */
.section-lance {
  padding: clamp(64px, 8vw, 110px) 0;
  background:
    radial-gradient(circle at top right, rgba(255, 211, 0, 0.1), transparent 34%),
    linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
}

.section-lance__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.section-lance__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-lance__kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 211, 0, 0.12);
  color: var(--amarelo);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-lance__title,
.section-lance__text {
  text-align: left;
  margin: 0;
}

.section-lance__title {
  max-width: 15ch;
}

.section-lance__text {
  max-width: 58ch;
}

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

.section-lance__card {
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #151515, #101010);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.section-lance__card h3 {
  color: var(--amarelo);
  font-size: 1rem;
  margin-bottom: 8px;
}

.section-lance__card p {
  color: #d7d7d7;
  font-size: 0.94rem;
  line-height: 1.6;
}

.section-lance__media {
  margin: 0;
  position: relative;
}

.section-lance__media::before {
  content: "";
  position: absolute;
  inset: 14px 14px -14px -14px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(215, 25, 32, 0.22), rgba(255, 211, 0, 0.1));
  filter: blur(2px);
  z-index: 0;
}

.section-lance__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

@media (max-width: 980px) {
  .section-lance__grid {
    grid-template-columns: 1fr;
  }

  .section-lance__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section-lance {
    padding: 56px 0;
  }

  .section-lance__image {
    border-radius: 22px;
  }

  .section-lance__card {
    padding: 16px;
  }
}
/* FIM Seção 6 */

/*  Seção 7 */
.section-torcida {
  padding: clamp(64px, 8vw, 110px) 0;
  background:
    radial-gradient(circle at top left, rgba(215, 25, 32, 0.12), transparent 34%),
    linear-gradient(180deg, #0b0b0b 0%, #101010 100%);
}

.section-torcida__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.section-torcida__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-torcida__kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 211, 0, 0.12);
  color: var(--amarelo);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-torcida__title,
.section-torcida__text {
  text-align: left;
  margin: 0;
}

.section-torcida__title {
  max-width: 16ch;
}

.section-torcida__text {
  max-width: 58ch;
}

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

.section-torcida__card {
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #151515, #101010);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.section-torcida__card h3 {
  color: var(--amarelo);
  font-size: 1rem;
  margin-bottom: 8px;
}

.section-torcida__card p {
  color: #d7d7d7;
  font-size: 0.94rem;
  line-height: 1.6;
}

.section-torcida__media {
  margin: 0;
  position: relative;
}

.section-torcida__media::before {
  content: "";
  position: absolute;
  inset: 14px -10px -14px 14px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 211, 0, 0.16), rgba(215, 25, 32, 0.2));
  filter: blur(2px);
  z-index: 0;
}

.section-torcida__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

@media (max-width: 980px) {
  .section-torcida__grid {
    grid-template-columns: 1fr;
  }

  .section-torcida__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section-torcida {
    padding: 56px 0;
  }

  .section-torcida__image {
    border-radius: 22px;
  }

  .section-torcida__card {
    padding: 16px;
  }
}
/* FIM Seção 7 */

/*  Seção 8 */
.section-amigos {
  padding: clamp(64px, 8vw, 110px) 0;
  background:
    radial-gradient(circle at top right, rgba(255, 211, 0, 0.1), transparent 34%),
    linear-gradient(180deg, #101010 0%, #0b0b0b 100%);
}

.section-amigos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.section-amigos__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-amigos__kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 211, 0, 0.12);
  color: var(--amarelo);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-amigos__title,
.section-amigos__text {
  text-align: left;
  margin: 0;
}

.section-amigos__title {
  max-width: 15ch;
}

.section-amigos__text {
  max-width: 58ch;
}

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

.section-amigos__card {
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #151515, #101010);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.section-amigos__card h3 {
  color: var(--amarelo);
  font-size: 1rem;
  margin-bottom: 8px;
}

.section-amigos__card p {
  color: #d7d7d7;
  font-size: 0.94rem;
  line-height: 1.6;
}

.section-amigos__media {
  margin: 0;
  position: relative;
}

.section-amigos__media::before {
  content: "";
  position: absolute;
  inset: 14px 14px -14px -14px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(215, 25, 32, 0.2), rgba(255, 211, 0, 0.14));
  filter: blur(2px);
  z-index: 0;
}

.section-amigos__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

@media (max-width: 980px) {
  .section-amigos__grid {
    grid-template-columns: 1fr;
  }

  .section-amigos__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section-amigos {
    padding: 56px 0;
  }

  .section-amigos__image {
    border-radius: 22px;
  }

  .section-amigos__card {
    padding: 16px;
  }
}
/* FIM Seção 8 */

/*  Seção 9 */
.section-patrocinio {
  padding: clamp(64px, 8vw, 110px) 0;
  background:
    radial-gradient(circle at top left, rgba(215, 25, 32, 0.12), transparent 34%),
    linear-gradient(180deg, #0b0b0b 0%, #111111 100%);
}

.section-patrocinio__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.section-patrocinio__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-patrocinio__kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 211, 0, 0.12);
  color: var(--amarelo);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-patrocinio__title,
.section-patrocinio__text {
  text-align: left;
  margin: 0;
}

.section-patrocinio__title {
  max-width: 16ch;
}

.section-patrocinio__text {
  max-width: 58ch;
}

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

.section-patrocinio__card {
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #151515, #101010);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.section-patrocinio__card h3 {
  color: var(--amarelo);
  font-size: 1rem;
  margin-bottom: 8px;
}

.section-patrocinio__card p {
  color: #d7d7d7;
  font-size: 0.94rem;
  line-height: 1.6;
}

.section-patrocinio__media {
  margin: 0;
  position: relative;
}

.section-patrocinio__media::before {
  content: "";
  position: absolute;
  inset: 14px -10px -14px 14px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 211, 0, 0.16), rgba(215, 25, 32, 0.2));
  filter: blur(2px);
  z-index: 0;
}

.section-patrocinio__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

@media (max-width: 980px) {
  .section-patrocinio__grid {
    grid-template-columns: 1fr;
  }

  .section-patrocinio__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section-patrocinio {
    padding: 56px 0;
  }

  .section-patrocinio__image {
    border-radius: 22px;
  }

  .section-patrocinio__card {
    padding: 16px;
  }
}
/* FIM Seção 9 */

/* FAQ */
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(180deg, #131313, #101010);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  color: var(--branco);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-question .faq-icon {
  color: var(--amarelo);
  transition: transform 220ms ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 20px;
  color: #d7d7d7;
  line-height: 1.7;
}

.faq-answer p {
  margin: 0;
}
/* FIM FAQ */

/* Formulário */
.signup-section {
  padding: 80px 6vw;
  background: linear-gradient(180deg, #090909, #0b0b0b);
}

.signup-container {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.signup-copy {
  padding: 24px 0;
}

.signup-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 211, 0, 0.12);
  color: var(--amarelo);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signup-copy h2 {
  color: var(--branco);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.signup-copy p {
  color: #d7d7d7;
  line-height: 1.8;
  font-size: 1.02rem;
  max-width: 52ch;
}

.signup-benefits {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.signup-benefits li {
  color: #e2e2e2;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.signup-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--amarelo);
}

.signup-card {
  background: linear-gradient(180deg, #131313, #101010);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  padding: 28px;
}

.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.stepper-item {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #bdbdbd;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stepper-item.is-active {
  background: var(--amarelo);
  color: var(--preto);
}

.stepper-line {
  width: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.signup-form {
  display: grid;
  gap: 18px;
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.form-step h3 {
  color: var(--amarelo);
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  color: #d7d7d7;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: #121212;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8a8a8a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 211, 0, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 211, 0, 0.1);
}

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--amarelo);
}

.checkbox-row span {
  color: #d7d7d7;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.action-button {
  flex: 1 1 150px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--vermelho), #b9141b);
  color: var(--branco);
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
  box-shadow: 0 16px 30px rgba(215, 25, 32, 0.24);
}

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

.action-button.secondary {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.is-hidden {
  display: none;
}

.error {
  color: #ff6b6b;
  font-size: 0.88rem;
  margin-top: 6px;
}

.form-feedback {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.form-feedback.success {
  background: linear-gradient(
    180deg,
    rgba(35, 135, 72, 0.18),
    rgba(20, 92, 48, 0.16)
  );
  border-color: rgba(87, 203, 132, 0.28);
}

.form-feedback.error {
  background: linear-gradient(
    180deg,
    rgba(170, 34, 34, 0.2),
    rgba(120, 18, 18, 0.16)
  );
  border-color: rgba(255, 107, 107, 0.3);
}

.form-feedback__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--branco);
  font-weight: 800;
}

.form-feedback.success .form-feedback__icon {
  background: rgba(87, 203, 132, 0.24);
  color: #8df0b5;
}

.form-feedback.error .form-feedback__icon {
  background: rgba(255, 107, 107, 0.24);
  color: #ffb2b2;
}

.form-feedback__title {
  color: var(--branco);
  font-size: 1rem;
  margin-bottom: 4px;
}

.form-feedback__text {
  color: #d7d7d7;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .signup-container {
    grid-template-columns: 1fr;
  }

  .signup-copy {
    padding: 0;
  }
}

@media (max-width: 560px) {
  .signup-section {
    padding: 64px 18px;
  }

  .signup-card {
    padding: 22px;
  }

  .form-actions {
    flex-direction: column;
  }

  .action-button {
    flex: 1 1 auto;
    width: 100%;
  }

  .stepper-line {
    width: 18px;
  }
}
/* FIM Formulário */

/* footer */
.footer {
  padding: 56px 6vw 28px;
  background: linear-gradient(180deg, #0c0c0c, #090909);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-item h4 {
  color: var(--amarelo);
  margin-bottom: 16px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.footer-item p {
  color: #d1d1d1;
  line-height: 1.7;
  font-size: 0.96rem;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.footer-links a:hover {
  color: var(--amarelo);
  transform: translateX(2px);
}

.footer-links a:focus-visible {
  outline: 3px solid rgba(255, 211, 0, 0.35);
  outline-offset: 3px;
}

.footer-bottom {
  margin-top: 22px;
  text-align: center;
  font-size: 0.92rem;
  color: #8a8a8a;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .footer {
    padding: 48px 18px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
/* FIM footer */
.back-home-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(10, 14, 39, 0.88);
  border: 1px solid rgba(0, 212, 212, 0.35);
  color: #eaf0f7;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.back-home-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 212, 212, 0.7);
  background: rgba(10, 14, 39, 0.96);
  box-shadow: 0 18px 40px rgba(0, 212, 212, 0.12), 0 14px 34px rgba(0, 0, 0, 0.28);
}

.back-home-btn:focus-visible {
  outline: 3px solid rgba(0, 212, 212, 0.55);
  outline-offset: 4px;
}

.back-home-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 212, 212, 0.12);
  color: #00d4d4;
  font-size: 1rem;
  line-height: 1;
}

.back-home-btn__text {
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 640px) {
  .back-home-btn {
    right: 14px;
    bottom: 14px;
    padding: 11px 13px;
    gap: 8px;
    font-size: 0.88rem;
  }

  .back-home-btn__text {
    display: none;
  }

  .back-home-btn__icon {
    width: 30px;
    height: 30px;
  }
}