:root {
  --white: #fff;
  --preto: #000;
  --azul: #00B8FC;
  --cinza-escuro: #1D1D1D;
  --cinza-claro: #1D1D1D;
  --background: #fdf3e8;
  --valid-1: #19bb00;
  --invalid-1: #ee3200;
  --principal: #00305B;
  --secundario: #C6AA76;
  --font-1: 'Poppins', sans-serif;
  --cor-destaque: #00305b;

}

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;
}

.container {
  max-width: 1414px;
  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 */
  }
}

/* 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: white;
  border-color: white;
}
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);;
}