:root {
  --primary-blue: #002137;
  --light-blue: #8FABBE;
  --blue: #4C6373;
  --light-beige: #d0b5a8;
  --beige: #BF917C;
  --dark-beige: #925A41;
  --white: #FFFFFF;
  --black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  scroll-behavior: smooth;
}

button {
  cursor: pointer;
}

input.required, select.required {
  background-color: #f8b7bd !important;
  border: 3px solid #f80017 !important;
}

/* header */
.div-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFDF7;
  z-index: 100;
}
@media (max-width: 500px) {
  .div-header {
    padding: 16px;
  }
  .div-header > img {
    width: 80px;
  }
}

/* main */
.div-main {
  position: relative;
  height: 1000px;
  padding: 150px 60px 100px;
  background: url("../imgs/bg.png") no-repeat center top;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div-main::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 49%;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(40deg, rgba(0, 28, 53, 0.26) 52.05%, rgba(208, 181, 168, 0.26) 97.17%);
  box-shadow: 0px 3.197px 5.194px 0px rgba(0, 0, 0, 0.51);
  backdrop-filter: blur(10px);
}
@media (max-width: 1000px) {
  .div-main {
    height: auto;
  }
  .div-main::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .div-main {
    padding: 120px 80px;
  }
}
@media (max-width: 500px) {
  .div-main {
    padding: 120px 15px;
  }
}
.div-main .div-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 1400px;
  width: 100%;
  z-index: 100;
}
@media (max-width: 1000px) {
  .div-main .div-content-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .div-main .div-content-wrapper {
    gap: 10px;
  }
}
.div-main .div-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.div-main .div-left > img {
  width: 350px;
}
@media (max-width: 600px) {
  .div-main .div-left > img {
    max-width: 300px;
    width: 90%;
  }
}
.div-main .div-left h1 {
  font-size: 48px;
  color: var(--white);
  letter-spacing: 1px;
  text-shadow: 1px 2px 11px rgba(255, 255, 255, 0.47);
  max-width: 580px;
}
.div-main .div-left h1 > span {
  color: #9EABC1;
}
.div-main .div-left p {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--white);
  max-width: 550px;
}
@media (max-width: 1000px) {
  .div-main .div-left {
    align-items: center;
    gap: 15px;
  }
  .div-main .div-left h1 {
    width: auto;
    text-align: center;
  }
  .div-main .div-left p {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .div-main .div-left h1 {
    font-size: 18px;
  }
  .div-main .div-left p {
    width: auto;
    font-size: 12px;
  }
}
@media (max-width: 1000px) {
  .div-main .div-right {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .div-main .div-right {
    width: 100%;
  }
}
.div-main .div-right .div-cadastro-realizado {
  max-width: 500px;
  display: none;
  flex-direction: column;
  align-items: center;
}
.div-main .div-right .div-cadastro-realizado h2 {
  margin-top: 40px;
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  color: var(--white);
}
.div-main .div-right .div-cadastro-realizado p {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #FFFDF7;
}
@media (max-width: 1000px) {
  .div-main .div-right .div-cadastro-realizado img {
    display: none;
  }
}
@media (max-width: 768px) {
  .div-main .div-right .div-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.div-main .div-right .div-form > h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
}
.div-main .div-right .div-form > p {
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.8px;
  color: var(--white);
}
.div-main .div-right .div-form > p span {
  font-weight: 600;
  text-decoration: underline;
  color: var(--beige);
}
@media (max-width: 600px) {
  .div-main .div-right .div-form > h2 {
    font-size: 16px;
    text-align: center;
  }
  .div-main .div-right .div-form > p {
    text-align: center;
    font-size: 12px;
  }
}
.div-main .div-right .div-form form {
  padding: 20px;
  border-radius: 6px;
  background: #FFFDF7;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .div-main .div-right .div-form form {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .div-main .div-right .div-form form {
    margin-top: 20px;
  }
}
.div-main .div-right .div-form form .top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .div-main .div-right .div-form form .top-row {
    flex-direction: column;
    align-items: center;
  }
}
.div-main .div-right .div-form form #div-indicador-input {
  display: none;
}
.div-main .div-right .div-form form .div-input {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.div-main .div-right .div-form form .div-input label {
  color: #001C35;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 500;
}
@media (max-width: 500px) {
  .div-main .div-right .div-form form .div-input label {
    font-size: 12px;
  }
}
.div-main .div-right .div-form form .div-input label span {
  color: var(--beige);
}
.div-main .div-right .div-form form .div-input input, .div-main .div-right .div-form form .div-input select {
  border: 1px solid #4C6373;
  border-radius: 4px;
  padding: 10px 12px;
  color: var(--primary-blue);
}
@media (max-width: 500px) {
  .div-main .div-right .div-form form .div-input input, .div-main .div-right .div-form form .div-input select {
    font-size: 12px;
  }
}
.div-main .div-right .div-form form .div-input input:focus, .div-main .div-right .div-form form .div-input select:focus {
  outline: 0;
}
.div-main .div-right .div-form form .div-input input::placeholder, .div-main .div-right .div-form form .div-input select::placeholder {
  color: var(--light-blue);
}
.div-main .div-right .div-form form .div-input .div-checkbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.div-main .div-right .div-form form .div-input .div-checkbox > div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.div-main .div-right .div-form form .div-checkbox-input {
  display: flex;
  align-items: center;
  gap: 5px;
}
.div-main .div-right .div-form form .div-checkbox-input p {
  color: #001C35;
  font-size: 14px;
}
@media (max-width: 500px) {
  .div-main .div-right .div-form form .div-checkbox-input p {
    font-size: 10px;
  }
}
.div-main .div-right .div-form form hr {
  display: block;
  height: 1px;
  border: 1px solid rgba(76, 99, 115, 0.2);
}
.div-main .div-right .div-form form .div-error-message {
  display: none;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #7c1a1a;
  background-color: #7c1a1a;
  color: white;
  font-size: 13px;
}
.div-main .div-right .div-form form .btn-enviar {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  border: 1px solid #4C6373;
  background: #001C35;
  box-shadow: 0px 3.456px 3.456px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 500px) {
  .div-main .div-right .div-form form .btn-enviar {
    padding: 8px 12px;
  }
}
.div-main .div-right .div-form form .btn-enviar > span {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 3px;
}
@media (max-width: 500px) {
  .div-main .div-right .div-form form .btn-enviar > span {
    font-size: 12px;
  }
}

.div-footer {
  padding: 40px;
  position: relative;
  background: #FFFDF7;
  box-shadow: inset 0 21px 40px 0 rgba(0, 0, 0, 0.37);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
@media (max-width: 500px) {
  .div-footer {
    padding: 20px;
  }
}
.div-footer .div-content-wrapper {
  max-width: 1400px;
  width: 100%;
}
.div-footer .div-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .div-footer .div-top {
    flex-direction: column;
    gap: 40px;
  }
}
.div-footer .div-top .button-cta {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #FFFDF7;
  border-radius: 8px;
  border: 1px solid #4C6373;
}
.div-footer .div-top .button-cta > span {
  font-size: 16px;
  font-weight: 500;
  color: #4C6373;
}
@media (max-width: 500px) {
  .div-footer .div-top .button-cta {
    padding: 8px 12px;
  }
  .div-footer .div-top .button-cta > span {
    font-size: 12px;
  }
}
.div-footer hr {
  margin: 40px 0;
  display: block;
  height: 1px;
  border: 1px solid #9EABC1;
}
.div-footer .div-middle {
  margin: 40px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.div-footer .div-middle .text-footer {
  color: #001C35;
  font-size: 16px;
  letter-spacing: 1px;
}
.div-footer .div-middle .text-footer span {
  font-weight: 600;
}
@media (max-width: 768px) {
  .div-footer .div-middle .text-footer {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .div-footer .div-middle .text-footer {
    font-size: 12px;
  }
}
.div-footer .div-middle .div-redes-sociais {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .div-footer .div-middle {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .div-footer .div-middle {
    margin: 25px 0 0;
    flex-direction: column;
  }
  .div-footer .div-middle .link-site span {
    font-size: 14px;
  }
}
.div-footer .div-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 768px) {
  .div-footer .div-bottom {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.div-footer .div-bottom .div-sede-card {
  max-width: 210px;
}
.div-footer .div-bottom .div-sede-card h2 {
  color: #001C35;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 500px) {
  .div-footer .div-bottom .div-sede-card h2 {
    font-size: 16px;
    text-align: center;
  }
}
.div-footer .div-bottom .div-sede-card h2 span {
  color: #9EABC1;
}
.div-footer .div-bottom .div-sede-card p {
  color: #4C6373;
  font-size: 12px;
}
@media (max-width: 500px) {
  .div-footer .div-bottom .div-sede-card p {
    font-size: 10px;
    text-align: center;
  }
}

/*# sourceMappingURL=styles.css.map */
