.boddy {
  justify-content: center;
  align-items: center;
  display: flex;
}

.bg-colunas {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: absolute;
}

.bg-coluna-01 {
  z-index: 1;
  background-color: #f1f1f1;
  background-image: url('../images/Ita-BG-01.avif');
  background-position: 50%;
  background-size: cover;
  width: 25%;
  height: 100vh;
  position: relative;
}

.bg-coluna-02 {
  z-index: 1;
  background-color: #dfdede;
  background-image: url('../images/Ita-BG-03.avif');
  background-position: 50%;
  background-size: cover;
  width: 25%;
  height: 100vh;
  position: relative;
}

.box-conteudo {
  z-index: 2;
  background-color: #ffffffe6;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 90%;
  max-width: 1000px;
  padding: 40px 60px;
  display: flex;
  position: relative;
  box-shadow: 2px 6px 10px 4px #0003;
}

.separa-colunas {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
}

.separa-linha {
  background-color: #b1b3b6;
  flex: 1;
  height: 2px;
}

.separa-bola-verde {
  background-color: #d52b1e;
  border-radius: 50px;
  width: 10px;
  height: 10px;
  margin-left: 20px;
  margin-right: -30px;
}

.separa-bola-vermelha {
  background-color: #007d57;
  border-radius: 50px;
  width: 10px;
  height: 10px;
  margin-left: -30px;
  margin-right: 20px;
}

.texto {
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 21px;
}

.texto.destaque {
  color: #fff;
  background-color: #75787b;
  margin-bottom: 0;
  padding: 10px 20px;
  font-size: 26px;
  font-weight: 400;
  line-height: 20px;
}

.texto.endere-o {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 19px;
}

.titulo {
  font-size: 30px;
  line-height: 34px;
}

.logo {
  margin-bottom: 0;
}

.heading {
  text-transform: uppercase;
  margin-top: 0;
  font-family: Roboto, sans-serif;
  font-size: 30px;
  line-height: 32px;
}

.redes-colunas {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.redes-links {
  background-color: #75787b;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 11px;
  display: flex;
}

.redes-coluna {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.bg-coluna-03 {
  z-index: 1;
  background-color: #f1f1f1;
  background-image: url('../images/Ita-BG-02.avif');
  background-position: 50%;
  background-size: cover;
  width: 25%;
  height: 100vh;
  position: relative;
}

.bg-coluna-04 {
  z-index: 1;
  background-color: #dfdede;
  background-image: url('../images/Ita-BG-04.avif');
  background-position: 50%;
  background-size: cover;
  width: 25%;
  height: 100vh;
  position: relative;
}

.link {
  color: #008457;
  font-weight: 400;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .bg-colunas {
    position: fixed;
    inset: 0%;
  }

  .box-conteudo {
    width: 80%;
    margin-top: 200px;
    margin-bottom: 200px;
  }
}

@media screen and (max-width: 767px) {
  .bg-colunas {
    flex-flow: column;
  }

  .bg-coluna-01, .bg-coluna-02 {
    width: 100%;
    height: 25vh;
  }

  .box-conteudo {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    width: 70%;
    margin-top: 80px;
    margin-bottom: 80px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .separa-bola-verde {
    width: 6px;
    height: 6px;
    margin-left: 14px;
    margin-right: -20px;
  }

  .separa-bola-vermelha {
    width: 6px;
    height: 6px;
    margin-left: -20px;
    margin-right: 14px;
  }

  .texto.destaque {
    text-align: center;
    max-width: 250px;
    line-height: 27px;
  }

  .redes-colunas {
    text-align: center;
    flex-flow: column-reverse;
    justify-content: space-between;
    align-items: center;
  }

  .bg-coluna-03, .bg-coluna-04 {
    width: 100%;
    height: 25vh;
  }
}

@media screen and (max-width: 479px) {
  .box-conteudo {
    width: 90%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .separa-bola-verde {
    margin-left: 10px;
    margin-right: -10px;
  }

  .separa-bola-vermelha {
    margin-left: -10px;
    margin-right: 10px;
  }
}


