:root {
  --white: #fff;
  --preto: #000;
  --azul: #00B8FC;
  --cinza-escuro: #1D1D1D;
  --cinza-claro: #1D1D1D;
  --background: #fdf3e8;
  --valid-1: #19bb00;
  --invalid-1: #ee3200;
  --font-1: "PP Formula Condensed", sans-serif;
  --font-2: "Quicksand", sans-serif;
  --color1: #00FFFF;
  --cor-destaque: #152EFF;

  /* font-family: "Montserrat"; */
}



html {
  font-family: var(--font-1);
  font-weight: 400;
  margin-top: 0;
  font-size: 100%;
  background-color: var(--bg-site);
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-site) !important;
  max-width: 100%;
  overflow-x: hidden;
}

body .long-text {
  font-family: var(--font-2);
}

.container {
  /* max-width: 1660px; */
  max-width: 1400px;
  width: 100%;
  padding: 0 25px;
  margin: 0 auto;
}

@media (max-width: 1080px) {
  html {
    font-size: 93.75%; /* 15px */
  }
}

@media (max-width: 720px) {
  html {
    font-size: 87.5%; /* 14px */
  }
}

main {
  /* padding-top: 75px; */
}

/* Aplicando Quicksand para blogs e páginas internas */
.blog, .single {
  font-family: var(--font-2);
}



/* btns */

.btn {
  padding: 15px 25px;
  min-width: 150px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  border-radius: 11px;
  background: var(--cor-1);
  color: #fff !important;
  transition: all .2s ease-in-out;
}
.btn:hover {
  background-color: var(--cor-destaque);
  color: #fff !important;
}

.btn.no-color {
  background-color: transparent;
  color: #fff;
}
.btn.no-color:hover {
  color: #fff !important;
  background: var(--azul);
}

/* DIALOG BGS */
body dialog {
  background: #000000ba;
}
body dialog .alert {
  background: #fff;
  border-radius: 0;
  padding: 0;
}
body dialog .alert .close-x {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  width: 25px;
  height: 25px;
  top: 10px;
  cursor: pointer;
  z-index: 999;
  border: 1px solid #fff;
  background: #fff;
  border-radius: 100%;
  margin: 0;
  transition: all .3s ease-in-out;
}
body dialog .alert .close-x:hover {
  background: var(--cor-1);
  border-color: var(--cor-1);
}
body dialog .alert .close-x svg path {
  fill: var(--cor-destaque);
  stroke: none;
  transition: all .3s ease-in-out;
}
body dialog .alert .close-x:hover svg path {
  fill: var(--cor-destaque) !important;
}
body dialog .alert .dialog_header {
  color: #fff;
  font-size: 20px;
  line-height: 25px;
  padding: 10px 15px;
  background: var(--cor-destaque);
}
body dialog .alert .dialog_body {
  color: var(--cor-destaque);
  padding: 15px 15px 20px;
}
body dialog .alert .dialog_body a {
  color: var(--cor-destaque);
  text-decoration: underline;
  transition: all .2s ease-in-out;
}
body dialog .alert .dialog_body a:hover {
  opacity: 0.7;
}
body dialog .alert .dialog_footer .form_btn,
body dialog .alert .dialog_footer .close {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--cor-destaque);
  color: #fff;
  transition: all .2s ease-in-out;
}
body dialog .alert .dialog_footer .form_btn:hover,
body dialog .alert .dialog_footer .close:hover {
  background-color: var(--cor-1);
  color: var(--cor-destaque);;
}

/* body dialog#quiz-extra {
  background: rgba(0, 0, 0, 0.82);
}
body dialog#quiz-extra .vaga-dialog__panel {
  position: relative;
  width: 720px;
  max-width: calc(100vw - 32px);
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid #707070;
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.85);
  color: #fff;
}
body dialog#quiz-extra .vaga-dialog__header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px 56px 18px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
body dialog#quiz-extra .vaga-dialog__close {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  line-height: 0 !important;
  font-size: 0 !important;
  overflow: hidden;
  z-index: 10;
}
body dialog#quiz-extra .vaga-dialog__close svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  margin: 0 !important;
}
body dialog#quiz-extra .vaga-dialog__close svg path {
  fill: #fff !important;
}*/