/* Código para desktop */
body {
  background: #fff;
  margin: 0;
  overflow-x: hidden;
  padding: 0;
  font-family: ARIAL;
}

#div1 {
  width: 100%;
  height: 142px;
  background: #15315E;
}

#div2 {
  margin-top: 20px;
  width: 100%;
  height: 36px;

}

#div3 {
  background: #fff;
  width: 55%;
  height: auto;
  margin: 20px auto;
  /* Centraliza na horizontal */
}

#div4 {
  margin-top: 10px;
  width: 100%;
  height: 30px;
  border: 1px solid transparent;
}

#div5 {
  margin-top: 10px;
  width: 100%;
  height: 60px;
  border: 1px solid transparent;
}

#div6 {
  background: #15325e;
  width: 100%;
  height: 80px;
  margin-top: 70px;

  padding: 20px;
  bottom: 0;
}

#div6 img {
  float: left;
}

.container {
  display: flex;
  height: 100%;
}

.divisor {
  flex-grow: 1;

}

.right {
  float: right;
  color: white;
  margin-top: 20px;
}

.bars {
  display: none;
}

.titulo {
  float: left;
  margin-left: 120px;
  font-size: 30px;
  color: #3b5377;
}

.titulo2 {
  float: left;
  font-family: ARIAL;
  margin-left: 120px;
  font-size: 30px;
  color: #333131;
}

.titulo3 {
  float: left;
  margin-left: 120px;
  height: auto;
}

.quadro {
  width: 60%;
  border: 1px solid rgb(212, 210, 210);
  height: 210px;
  margin-top: 30px;
}

.quadro2 {
  width: 80%;
  border: 1px solid transparent;
  height: auto;
  margin-top: 10px;
}

.topo {
  border: 1px solid transparent;
  width: 100%;
  height: 25px;
}

.quadroflex {
  display: flex;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  /* Permite que os elementos quebrem para a próxima linha */

}

.dividir img {
  margin-top: 5px;
}

.topo img {
  margin-left: 15px;
}

.dividir {
  flex-grow: 1;
  flex-basis: calc(21% - 20px);
  border: 1px solid transparent;
  height: auto;
  background: white;
  margin: 10px;
}

.one {
  width: 100%;
  height: 44px;
  border: 1px solid transparent;
}

.one span {
  color: black;
  float: left;
  justify-items: left;
  text-align: left;
  align-items: flex-end;
  margin-left: 10px;
  margin-top: 10px;
  font-size: 16px;
  font-family: ARIAL;
}

p {
  font-family: Arial;
  float: left;
  margin-left: 13px;
  margin-top: 12px;
  font-size: 19px;
  color: black;
  height: auto;
}

.two input {
  float: left;
  margin-left: 10px;
  margin-top: 8px;
  width: 80%;
  height: 39px;
  border: 1px solid #dbd9d9;
  border-radius: 4px;
  outline: none;
  padding-left: 5px;
}

input:hover {
  border: 3px solid rgb(124, 173, 247);
}

.two label {
  color: black;
  float: left;
  justify-items: left;
  text-align: left;
  align-items: flex-end;
  margin-left: 10px;
  font-size: 16px;
  font-family: ARIAL;
}

.three input {
  float: left;
  margin-left: 10px;
  margin-top: 8px;
  width: 80%;
  height: 39px;
  border: 1px solid #dbd9d9;
  border-radius: 4px;
  outline: none;
  padding-left: 5px;
}

input:hover {
  border: 3px solid rgb(124, 173, 247);
}

.three label {
  color: black;
  float: left;
  justify-items: left;
  text-align: left;
  align-items: flex-end;
  margin-left: 10px;
  font-size: 16px;
  font-family: ARIAL;
}

.two {
  width: 100%;
  height: 68px;
  border: 1px solid transparent;
}

.three {
  width: 100%;
  height: 68px;
  border: 1px solid transparent;
  margin-top: 12px;
}

.four {
  width: 100%;
  height: 20px;
  border: 1px solid transparent;

}

.fiv {
  width: 100%;
  height: 68px;
  border: 1px solid transparent;

}

.fiv button {
  float: left;
  margin-left: 10px;
  font-size: 14px;
  font-family: ARIAL;
  background: #15325e;
  color: white;
  outline: none;
  border: none;
  border-radius: 5px;
  width: 70px;
  height: 39px;
}


.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: #fefefe;
  padding: 20px;
  border-radius: 8px;
}

.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Para Mobile */
@media only screen and (max-width: 600px) {

  #div1,
  #div2,
  #div3,
  #div4,
  #div5,
  #div6 {
    width: 100%;
    margin: 10px 0;
    /* Espaço entre as divs */
  }

  #div1 {
    margin: 0px;
    /* Espaço entre as divs */
  }

  #div6 {
    padding: 0;
    height: 100px;
  }

  .right {
    display: none;
  }

  .quadro {
    width: 86%;
    border: 1px solid rgb(212, 210, 210);
    height: 195px;
    margin-top: 30px;
  }

  .bars {
    display: block;
  }

  .titulo {
    float: left;
    margin-left: 10px;
    font-size: 30px;
    color: #3b5377;
  }

  .titulo2 {
    float: left;
    font-family: ARIAL;
    margin-left: 10px;
    font-size: 24px;
    color: #000;
  }

  .dividir img {
    width: 100%;
  }

  .topo img {
    width: 100%;
    margin-left: 0px;
    margin-top: 10px;
  }

  .topos {
    width: 50px;
  }

  #div6 img {
    width: 100%;
    margin-top: 5px;
  }

  #div4 img {
    width: 100%;

  }

  #div5 img {
    width: 100%;
    margin-top: 5px;
    margin-left: 0px;
  }

  #div5 {
    margin-top: -5px;
  }

  #div6 {
    margin-top: 44px;

    position: relative;
    bottom: 0;
  }
}