body {
  background-color: #1e1e1e;
  background-image: url("./img/sun.png");
  background-position: right top -60px;
  background-repeat: no-repeat;
  background-size: 100%;
  color: #fff;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

header ul,
footer ul {
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  list-style: none;
}

header ul li a,
footer ul li a {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.16px;
  text-decoration: none;
  transition: all 0.6s;
}

header ul li a:hover,
footer ul li a:hover {
  font-weight: bold;
  font-size: 18px;
}

h1,
h2 {
  color: #fff;
  width: 100%;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.4px;
}

.home {
  margin: 148px 0 170px 0;
  padding: 0 20px;
}

.logos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.logos .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: linear-gradient(219deg, #f88f00 0%, #de2139 77.71%, #ff0053 100%);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);
  max-width: 416px;
  width: 100%;
  height: 266px;
}

.logos .logo img{
  max-width: 90%;
}

.inscricao {
  padding: 0 20px;
  margin-bottom: 140px;
  text-align: center;
}

.inscricao .politicas {
  position: relative;
  margin: 0 auto;
  padding: 20px 10px 20px 20px;
  width: calc(100% - 30px);
  max-width: 1196px;
  height: 300px;
  border-radius: 20px;
  border: 1px solid #fff;
  margin-bottom: 70px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.inscricao .politicas p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.inscricao .politicas .inner-politicas {
  overflow-y: scroll;
  overflow-x: hidden;
  width: calc(100% - 20px);
  height: 300px;
  padding-right: 20px;
  text-align: left;
}

.inscricao .politicas .inner-politicas::-webkit-scrollbar {
  width: 19px;
  height: 9px;
}

.inscricao .politicas .inner-politicas::-webkit-scrollbar-button {
  width: 19px;
  height: 5px;
}

.inscricao .politicas .inner-politicas::-webkit-scrollbar-thumb {
  background: linear-gradient(219deg, #f88f00 0%, #de2139 77.71%, #ff0053 100%);
  border: 0px none #797979;
  border-radius: 50px;
}

.inscricao .politicas .inner-politicas::-webkit-scrollbar-thumb:hover,
.inscricao .politicas .inner-politicas::-webkit-scrollbar-thumb:active {
  background: #de2139;
}

.inscricao .politicas .inner-politicas::-webkit-scrollbar-track {
  background: #1e1e1e;
  border: 0px none #1e1e1e;
  border-radius: 4px;
}

.inscricao .politicas .inner-politicas::-webkit-scrollbar-track:hover,
.inscricao .politicas .inner-politicas::-webkit-scrollbar-track:active {
  background: #1e1e1e;
}

.inscricao .politicas .inner-politicas::-webkit-scrollbar-corner {
  background: transparent;
}

.inscricao .form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 180px;
}

.inscricao .form input {
  width: 100%;
  max-width: 1196px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 86px;
  padding: 16px;
  border: 0;
  border-bottom: 2px solid var(--Neutral-Dark, #797979);
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  color: #fff;
  text-align: center;
  background: transparent;
}

.inscricao .btn {
  max-width: 350px;
  width: 100%;
  height: 100px;
  background: linear-gradient(219deg, #f88f00 0%, #de2139 77.71%, #ff0053 100%);
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: 18px; /* 81.818% */
  letter-spacing: 0.396px;
  border-radius: 20px;
  border: 0;
  margin-top: 90px;
}

.custom-check {
  display: block;
  position: relative;
  padding-left: 60px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 290px;
  margin: 0 auto;
}

.custom-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: -7px;
  left: 0;
  width: 63px;
  height: 45px;
  background: linear-gradient(219deg, #f88f00 0%, #de2139 77.71%, #ff0053 100%);
  border-radius: 20px;
}

/* On mouse-over, add a grey background color */
.custom-check:hover input ~ .checkmark {
  background: linear-gradient(219deg, #f88f00 0%, #de2139 77.71%, #ff0053 100%);
}

/* When the checkbox is checked, add a blue background */
.custom-check input:checked ~ .checkmark {
  background: linear-gradient(219deg, #f88f00 0%, #de2139 77.71%, #ff0053 100%);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom-check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom-check .checkmark:after {
  left: 14px;
  top: -20px;
  width: 25px;
  height: 35px;
  border: solid white;
  border-width: 0 10px 10px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.contato {
  text-align: center;
}

.contato p {
  margin-top: 56px;
}

footer {
  padding: 120px 20px;
}

footer p {
  text-align: center;
}
