/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700&display=swap');

.gn50-regras {
  width: 100%;
  background: #FFFFFF;
  padding: 0 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
}

/* CABEÇALHO */
.gn50-regras__cabecalho {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 16px 0 17px 0;
  border-bottom: 1px solid #E5E7EB;
  box-sizing: border-box;
}

.gn50-regras__titulo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: -0.1px;
  color: #091E3E;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* LINHAS DE INFORMAÇÃO */
.gn50-regras__linha {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 17px 0;
  border-bottom: 1px solid #E5E7EB;
  box-sizing: border-box;
}

/* TEXTO DA COLUNA ESQUERDA */
.gn50-regras__label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.1px;
  color: #58677E;
  margin: 0;
}

/* TEXTO DA COLUNA DIREITA */
.gn50-regras__valor {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #0050CC;
  text-align: right;
  margin: 0;
  white-space: nowrap;
}

/* LINHA MÍN. DIAS OPERADOS (DIREITA CONTAINER) */
.gn50-regras__valor-complemento {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.gn50-regras__valor-principal {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #0050CC;
  text-align: right;
  white-space: nowrap;
}

.gn50-regras__observacao {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.3px;
  color: #0050CC;
  text-align: right;
  white-space: nowrap;
}

/* RODAPÉ TEXTO */
.gn50-regras__rodape {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 16px 0;
  box-sizing: border-box;
}

.gn50-regras__link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: -0.1px;
  color: #091E3E;
  text-align: center;
  text-decoration: none;
}

/* RESPONSIVIDADE */

/* Telas menores que 480px */
@media screen and (max-width: 479px) {
  .gn50-regras {
    padding-left: 20px;
    padding-right: 20px;
  }
  .gn50-regras__linha {
    gap: 12px;
  }
  .gn50-regras__label {
    font-size: 15px;
    line-height: 20px;
  }
}

/* Telas menores que 360px */
@media screen and (max-width: 359px) {
  .gn50-regras {
    padding-left: 16px;
    padding-right: 16px;
  }
  .gn50-regras__label {
    font-size: 14px;
  }
  .gn50-regras__valor,
  .gn50-regras__valor-principal {
    font-size: 13px;
  }
  .gn50-regras__observacao {
    font-size: 9px;
  }
}
