body.page-edicoes {
  background-color: #dfdfdf;
  background-image: none;
  color: #000;
}

body.page-edicoes main {
  color: #000;
}

.edicoes-page {
  width: 100%;
  background: linear-gradient(0deg, #dfdfdf 0%, #ffffff 100%);
}

.edicoes-page-inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 60px 60px 40px;
  text-align: center;
}

.edicoes-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #010000;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.edicoes-widget {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.edicoes-widget .etapa {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.edicoes-widget .cadaEtapa {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.edicoes-widget .containerImgs {
  position: relative;
  width: 100%;
}

.edicoes-widget .etapa-banner {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  cursor: pointer;
}

.edicoes-widget .msgEtapaIndisponivel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
}

.edicoes-widget .container-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.edicoes-widget .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 70px;
  padding: 0 2rem;
  border: none;
  border-radius: 5px;
  background: linear-gradient(180deg, #ffcc00 0%, #ff8800 100%);
  cursor: pointer;
  transition: background 0.2s;
}

.edicoes-widget .btn:hover:not(.inativa) {
  background: linear-gradient(180deg, #003bc5 0%, #000a7a 100%);
}

.edicoes-widget .btn.inativa {
  opacity: 0.6;
  cursor: not-allowed;
}

.edicoes-widget .btn .text {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.edicoes-widget .btn:hover:not(.inativa) .text {
  color: #ffae00;
}

.edicoes-widget .dataSorteioLabel {
  width: 100%;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #010000;
  margin: 0;
}

.edicoes-widget .labelDescricaoDaEtapa,
.edicoes-widget .sobreSorteioLabel {
  width: 100%;
  font-family: 'Inter', Arial, sans-serif;
  color: #fff;
  margin: 0;
}

.edicoes-widget .regulamentoEcondicoes {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.edicoes-widget .regulamentoEcondicoes a {
  color: #005fb1;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.9rem;
  text-decoration: underline;
}

.edicoes-widget .descricaoEtapa,
.edicoes-widget .msgErro {
  font-family: 'Inter', Arial, sans-serif;
  color: #333;
  padding: 1rem;
}

.edicoes-page-wave {
  width: 100%;
  padding: 48.5px 60px;
  background-color: #dfdfdf;
  background-image: url('/assets/borda-azul.png');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .edicoes-page-inner {
    padding: 40px 1.25rem 30px;
  }

  .edicoes-page-wave {
    padding: 32px 1.25rem;
    min-height: 80px;
  }
}