@import url("../fonts/ico-moon/style.css");
@import url("../fonts/swis721-cn-bt/style.css");

:root {
  --color-primary: #1565c0;
}

@media only screen and (min-width: 993px) {
  .container {
    width: 80%;
  }
}

/** DIVERSAS PERSONALIZAÇÕES BASE **/
*, a, a:LINK, a:HOVER, a:VISITED, a:ACTIVE {
  text-decoration: none;
  outline: none;
}

/* Barra de Rolagem */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #827ca1;
  border-radius: 4px;
}

.animate,
.animate-inverse {
  transition-duration: 0.3s;
  transform: scale(1);
  -webkit-transition-duration: 0.3s;
  -webkit-transform: scale(1);
}

.animate:hover {
  transition-duration: 0.3s;
  transform: scale(1.1);
  -webkit-transition-duration: 0.3s;
  -webkit-transform: scale(1.1);
}

.animate-inverse:hover {
  transition-duration: 0.3s;
  transform: scale(0.9);
  -webkit-transition-duration: 0.3s;
  -webkit-transform: scale(0.9);
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

*::-moz-selection {
  background: var(--color-primary);
  color: #fff;
}

*::selection {
  background: var(--color-primary);
  color: #fff;
}

blockquote {
  border-left: 5px solid var(--color-primary);
}

strong {
  font-weight: 600;
}

/** HTML, BODY **/
html, body {
  letter-spacing: 0.3px;
  background: url(../images/background.png) 0 0 no-repeat #fff;
  font-family: sans-serif;
  position: relative;
  color: #fff;
  height: 100%;
  width: 100%;

  background: var(--color-primary);
  background: -webkit-linear-gradient(to bottom, #1565c0, #004799);
  background: linear-gradient(to bottom, #1565c0, #004799);
}

.loadie {
  transition: width 0.5s ease-out;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.25);
  background-color: var(--color-primary);
  position: absolute;
  z-index: 99999;
  height: 3px;
  width: 0;
  left: 0;
  top: 0;
}

p {
  font-size: 1.2rem;
  color: #999;
  line-height: 2.2rem;
  -webkit-font-smoothing: antialiased;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

h2 {
  text-align: center;
  font-family: poppins;
  color: transparent;
  font-weight: 500;
  font-size: 45px;
  margin: 100px 0;
  -webkit-text-stroke: 2px #f2f2f2;
  line-height: 85px;
}

.container-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.logo {
  margin: 100px 0;
}

.logo img {
  max-width: 250px;
}

.menus {
  display: flex;
  flex-direction: row;
  gap: 40px;
  z-index: 9;
}

.menus .menu {
  width: 300px;
}

.btn-resultados,
.btn-restrito {
  color: var(--color-primary);
  font-weight: 600;
  padding: 15px;
  display: block;
  margin-top: 15px;
  width: 100%;
}

.btn-resultados {
  background: #fff;
}

.btn-restrito {
  background: #fff;
  color: #63873d;
}

/** DROPDOWN **/
.dropdown-content {
  position: absolute;
  left: 0;
  top: -45px;
  background: #fff;
  min-width: 100px;
  padding-top: 0;
  border: 0 solid rgba(31, 45, 61, 0);

  box-shadow: 0 10px 30px 0 rgba(31, 45, 61, 0);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .1)
}

.dropdown-content:BEFORE {
  position: absolute;
  content: " ";
  display: inline-block;
  vertical-align: middle;
  margin-right: 0px;
  width: 0;
  height: 0;
  top: 0px;
  right: 25px;
  z-index: 999;

  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}

.menu-resultados .dropdown-content li>a {
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 600;
}

.menu-salus .dropdown-content li>a {
  color: #63873d;
  font-size: 15px;
  font-weight: 600;
}

.dropdown-content li>a>i {
  margin: 0 15px 0 0;
}

.dropdown-content li:hover>a,
.dropdown-content li:hover>a>i {
  color: #827ca1;

}

.dropdown-content-resultados {
  background: #fff;
}

.dropdown-content-restrito {
  background: #fff;
}

.menu-header {
  z-index: 999;
  position: absolute;
  padding: 20px;
  top: 35px;
  right: 40px;
  display: flex;
}

.menu-header>div {
  margin-left: 20px;
  min-width: 280px;
}

.by {
  text-align: right;
  z-index: 9;
}

@media screen and (max-width: 700px) {
  .menus {
    flex-direction: column;
    gap: 0;
  }

  .by {
    margin: 20px 0;
  }

  .copy,
  .by {
    text-align: center;
  }
}

.elements div {
  position: absolute;
  width: 60px;
  height: 60px;
  background: transparent;
  /* border: 6px solid rgb(205, 199, 245); */
  border:6px solid rgba(255,255,255,0.8);
}

.elements div:nth-child(1) {
  top: 11%;
  left: 41%;
  animation: animate 10s linear infinite;
}

.elements div:nth-child(2) {
  top: 69%;
  left: 49%;
  animation: animate 7s linear infinite;
}

.elements div:nth-child(3) {
  top: 18%;
  left: 7%;
  animation: animate 9s linear infinite;
}

.elements div:nth-child(4) {
  top: 19%;
  left: 61%;
  animation: animate 10s linear infinite;
}

.elements div:nth-child(5) {
  top: 68%;
  left: 11%;
  animation: animate 6s linear infinite;
}

.elements div:nth-child(6) {
  top: 79%;
  left: 71%;
  animation: animate 12s linear infinite;
}

.elements div:nth-child(7) {
  top: 59%;
  left: 81%;
  animation: animate 15s linear infinite;
}

.elements div:nth-child(8) {
  top: 89%;
  left: 26%;
  animation: animate 9s linear infinite;
}

.elements div:nth-child(9) {
  top: 91%;
  left: 24%;
  animation: animate 9s linear infinite;
}

.elements div:nth-child(10) {
  top: 21%;
  left: 79%;
  animation: animate 5s linear infinite;
}

@keyframes animate {
  0% {
    transform: scale(0) translateY(-90px) rotate(360deg);
    opacity: 1;
  }

  100% {
    transform: scale(1.3) translateY(-90px) rotate(-180deg);
    border-radius: 50%;
    opacity: 0;
  }
}
