@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --laranja: #ff6100;
  --laranja-hover: #e55600;
  --preto: #1a1a1a;
  --preto-suave: #201f1f;
  --branco: #ffffff;
  --cinza-texto: #555555;
  --max-width: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--preto);
  background: var(--branco);
  overflow-x: hidden;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---- Botões ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, color 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-laranja {
  background: var(--laranja);
  color: var(--branco);
}

.btn-laranja:hover {
  background: var(--laranja-hover);
}

.btn-preto {
  background: var(--preto);
  color: var(--branco);
}

.btn-preto:hover {
  background: #333;
}

.btn-outline-laranja {
  background: transparent;
  color: var(--laranja);
  border: 2px solid var(--laranja);
}

.btn-outline-laranja:hover {
  background: var(--laranja);
  color: var(--branco);
}

.btn-outline-branco {
  background: transparent;
  color: var(--branco);
  border: 2px solid var(--laranja);
}

.btn-outline-branco:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ---- Header ---- */
.header {
  padding: 16px 40px;
  background: #1a1a1a;
  transition: background 0.3s;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-menu a {
  color: var(--branco);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: var(--laranja);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.15s, color 0.2s;
}

.header-icons a:hover {
  opacity: 1;
  transform: scale(1.08);
  color: var(--laranja);
}

.header-icons svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.menu-check {
  display: none;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  color: var(--branco);
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 24px 40px 80px;
  max-width: 910px;
}

.hero-stars {
  color: var(--branco);
  font-size: 3.1rem;
  letter-spacing: 6px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--branco);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
  margin-bottom: 36px;
}

.hero-content .btn {
  font-size: 1.2rem;
}

/* ---- Seções escuras / claras ---- */
.section-dark {
  background: var(--preto);
  color: var(--branco);
}

.section-branco {
  background: var(--branco);
  color: var(--preto);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Times ---- */
.times {
  padding: 70px 40px 80px;
  text-align: center;
}

.times h2 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: var(--branco);
}

.times-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px 28px;
  align-items: center;
  justify-items: center;
  max-width: var(--max-width);
  margin: 0 auto 40px;
  padding: 0 40px;
}

.times-item {
  width: 100%;
  max-width: 160px;
  height: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.times-item img {
  height: 130px;
  width: auto;
  max-height: 130px;
  max-width: 130px;
  object-fit: contain;
  object-position: center;
}

/* ---- Título de seção ---- */
.secao-titulo {
  text-align: center;
  padding: 70px 40px 50px;
}

.secao-titulo h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.secao-titulo p {
  font-size: 0.95rem;
  opacity: 0.75;
}

/* ---- Menu de modalidades (tabs) ---- */
.produto-tab-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.produtos-tabs {
  position: relative;
}

.produtos-menu {
  display: flex;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  background: var(--branco);
}

.produtos-menu label {
  flex: 1 1 0;
  min-width: 0;
  padding: 16px 12px;
  text-align: center;
  font-size: clamp(0.65rem, 1.4vw, 0.85rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--preto);
  background: var(--branco);
  border-right: 1px solid #d9d9d9;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  user-select: none;
}

.produtos-menu label:last-child {
  border-right: none;
}

.produtos-menu label:hover {
  background: #f5f5f5;
}

#tab-futebol:checked ~ .produtos-menu label[for="tab-futebol"],
#tab-basquete:checked ~ .produtos-menu label[for="tab-basquete"],
#tab-volei:checked ~ .produtos-menu label[for="tab-volei"],
#tab-comissao:checked ~ .produtos-menu label[for="tab-comissao"],
#tab-agasalho:checked ~ .produtos-menu label[for="tab-agasalho"] {
  background: var(--laranja);
  color: var(--branco);
}

#tab-futebol:checked ~ .produtos-menu label[for="tab-futebol"]:hover,
#tab-basquete:checked ~ .produtos-menu label[for="tab-basquete"]:hover,
#tab-volei:checked ~ .produtos-menu label[for="tab-volei"]:hover,
#tab-comissao:checked ~ .produtos-menu label[for="tab-comissao"]:hover,
#tab-agasalho:checked ~ .produtos-menu label[for="tab-agasalho"]:hover {
  background: var(--laranja);
  color: var(--branco);
}

.produtos-conteudo .produto {
  display: none;
  border-bottom: none;
  padding-bottom: 80px;
}

#tab-futebol:checked ~ .produtos-conteudo #futebol,
#tab-basquete:checked ~ .produtos-conteudo #basquete,
#tab-volei:checked ~ .produtos-conteudo #volei,
#tab-comissao:checked ~ .produtos-conteudo #comissao,
#tab-agasalho:checked ~ .produtos-conteudo #agasalho {
  display: grid;
}

/* ---- Produto (2 fotos + texto) ---- */
.produto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.produto:last-of-type {
  border-bottom: none;
}

.produto-fotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.produto-fotos img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  background: #2a2a2a;
}

.produto-texto h3 {
  display: none;
}

.produto-texto .titulo {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.produto-texto .titulo .laranja {
  color: var(--laranja);
}

.produto-texto .subtitulo-produto {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.9;
}

.produto-texto p {
  font-size: 0.92rem;
  line-height: 1.75;
  opacity: 0.85;
  margin-bottom: 28px;
}

.produto-botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.produto-botoes .btn {
  padding: 10px 24px;
  font-size: 0.75rem;
}

/* ---- Pacote Prata ---- */
.pacote-prata-section {
  background: var(--branco);
  border-top: 1px solid var(--preto);
}

.pacote-prata {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px 40px;
  align-items: center;
  padding: 64px 40px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.pacote-prata-texto {
  padding-right: 20px;
}

.pacote-prata-texto h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--preto);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.pacote-prata-texto p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--preto);
  margin-bottom: 36px;
  max-width: 620px;
}

.pacote-prata-texto strong {
  font-weight: 700;
}

.pacote-prata-botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-pacote-simulador {
  background: var(--preto);
  color: var(--laranja);
  border: 2px solid var(--laranja);
  padding: 12px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
}

.btn-pacote-simulador:hover {
  background: #111;
  color: var(--branco);
  border-color: var(--preto);
}

.btn-pacote-saiba {
  background: var(--branco);
  color: var(--preto);
  border: 2px solid var(--preto);
  padding: 12px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
}

.btn-pacote-saiba:hover {
  background: var(--preto);
  color: var(--branco);
}

.pacote-prata-imagem {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 420px;
}

.pacote-prata-imagem img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
}

/* ---- Simulador 3D ---- */
.simulador {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.simulador-imagem img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.simulador-texto h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.simulador-texto h2 span {
  color: var(--laranja);
}

.simulador-texto p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--cinza-texto);
  margin-bottom: 12px;
}

.simulador-texto .destaque {
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 28px;
}

/* ---- Patch 3D ---- */
.patch {
  padding: 80px 40px;
}

.patch-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.patch-titulo {
  text-align: center;
  margin-bottom: 40px;
}

.patch-titulo h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.patch-imagem {
  display: flex;
  justify-content: center;
  //transform: translate(-216.843px, -45.203px) rotate(-23.0357deg);
}

.patch-imagem img {
  width: 100%;
  max-width: 720px;
  height: auto;
  object-fit: contain;
}

.patch-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.patch-info-texto h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.patch-info-texto .destaque {
  color: var(--laranja);
  font-weight: 600;
  margin-bottom: 12px;
}

.patch-info-texto p {
  font-size: 0.92rem;
  line-height: 1.75;
  opacity: 0.85;
}

.patch-info-imagem img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 40px;
  padding: 16px;
}

.patch-vitrine img {
  width: 100%;
  aspect-ratio: 16/6;
  object-fit: cover;
  border-radius: 40px;
  background: #2a2a2a;
}

/* ---- Benefícios (3 linhas) ---- */
.beneficios {
  padding: 60px 40px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.beneficio-linha {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid #eee;
}

.beneficio-linha:last-child {
  border-bottom: none;
}

.beneficio-linha img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  background: #eee;
}

.beneficio-linha h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.beneficio-linha p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--cinza-texto);
  margin-bottom: 20px;
}

/* ---- Produção ---- */
.producao {
  padding: 80px 40px;
  text-align: center;
}

.producao-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.producao h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.producao .subtitulo {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 48px;
}

.producao-etapas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.producao-etapa img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  background: #2a2a2a;
  margin-bottom: 10px;
}

.producao-etapa h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.producao-time img {
  width: 100%;
  object-fit: cover;
  border-radius: 40px;
  margin-bottom: 40px;
}

.producao-frase {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ---- Footer ---- */
.footer {
  background: var(--branco);
  padding: 60px 40px 40px;
  border-top: 1px solid #eee;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
}

.footer-col h3 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--cinza-texto);
}

.footer-redes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-redes a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--preto);
  transition: color 0.2s;
}

.footer-redes a:hover {
  color: var(--laranja);
}

.footer-redes a:hover svg {
  fill: var(--laranja);
}

.footer-redes svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: currentColor;
}

.footer-redes .instagram {
  color: var(--laranja);
}

.footer-bar {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #999;
}

.footer-bar a {
  color: #999;
  margin-left: 20px;
}

.footer-bar a:hover {
  color: var(--preto);
}

/* ---- Responsivo ---- */
@media (max-width: 1024px) {
  .produto,
  .pacote-prata,
  .simulador,
  .patch-info,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .producao-etapas {
    grid-template-columns: repeat(2, 1fr);
  }

  .beneficio-linha {
    grid-template-columns: 1fr;
  }

  .pacote-prata-texto {
    padding-right: 0;
  }

  .pacote-prata-imagem {
    min-height: auto;
  }

  .pacote-prata-imagem img {
    max-width: 320px;
    margin: 0 auto;
  }

  .times-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .times-item {
    max-width: 130px;
    height: 120px;
  }

  .times-item img {
    height: 120px;
    max-height: 120px;
    max-width: 120px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
    background: rgba(26, 26, 26, 0.9);
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: column;
    background: var(--preto);
    padding: 20px;
    gap: 16px;
    z-index: 1000;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .menu-check:checked ~ .nav-menu {
    display: flex;
  }

  .header-icons {
    gap: 14px;
  }

  .header-icons svg {
    width: 22px;
    height: 22px;
  }

  .section-inner,
  .pacote-prata,
  .simulador,
  .beneficios,
  .patch {
    padding-left: 20px;
    padding-right: 20px;
  }

  .produtos-menu {
    padding: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .produtos-menu label {
    flex: 0 0 auto;
    min-width: max-content;
    padding: 14px 18px;
    font-size: 0.72rem;
  }

  .produto-fotos {
    grid-template-columns: 1fr;
  }

  .produto-fotos img {
    aspect-ratio: 4/3;
  }

  .times-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 20px;
    gap: 24px 20px;
  }

  .times-item {
    max-width: 120px;
    height: 110px;
  }

  .times-item img {
    height: 110px;
    max-height: 110px;
    max-width: 110px;
  }

  .patch-imagem {
    //transform: translate(-0.843px, -45.203px) rotate(-23.0357deg);
  }
}

@media (max-width: 480px) {
  .producao-etapas {
    grid-template-columns: 1fr;
  }

  .times-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .times-item {
    max-width: 100px;
    height: 90px;
  }

  .times-item img {
    height: 90px;
    max-height: 90px;
    max-width: 90px;
  }

  .footer-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
