.bg-image {
  position: relative;
  height: 850px;

}

.bg-image-overlay {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../imagens/img_9.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.48;
  min-width: 320px;
}

.bg-image-box {
  min-width: 320px;
  position: absolute;
  opacity: 0.89;
  width: 60vw;
  padding: 0 60px 30px 60px;
  top: 8vh;
  left: 20%;
  height: 85%;
  border: 1px solid rgb(240, 243, 245);
  border-radius: 33px;
  background-color: var(--branco);
  display: grid;
  /* gap: 10px; */

  & .logo {
    width: 200px;
    margin: 0 auto;
  }
}

.bg-image-text {
  display: flex;
  flex-direction: column;
  gap: 10px;

  & h1,
  p {
    width: 80%;
    margin: 0 auto;
  }

  & h1 {
    font-size: 40px;
    font-weight: bold;
    line-height: 50px;
  }

  & p {
    font-size: 20px;
    line-height: 40px;
  }
}

#btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.div-aprovado {
  width: 90%;
  margin: 0 auto;
  justify-content: space-around;

  & .item-aprovado {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    position: relative;
    align-items: center;
    margin-bottom: 20px;

    & img {
      width: 45px;
      height: 45px;
    }

    & p {
      width: 160px;
      margin: 0;
      font-weight: bold;
      line-height: 25px;
    }
  }
}

.section-services {
  min-width: 320px;
  min-height: 700px;
  position: relative;
  background-image: url("../../imagens/img_2.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.div-services-overlay {
  width: 100%;
  min-height: 700px;
  background-color: var(--branco);
  opacity: 0.74;
}

.div-our-services {
  color: var(--azul);
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 20px;
  padding-bottom: 20px; 
  & .div-services {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    
    margin: 50px 0;
    /* opacity: 1; */
  }

  & h1 {
    font-size: 50px;
    text-align: center;
    margin-top: 60px;
    /* opacity: 1; */
  }

  & .service {
    flex-basis: 195px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 198px;
    background-color: var(--branco);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgb(189, 198, 225);
    text-align: center;
  }

  & .service img{
    width: 42px;
  }
}

.section-get-quote {
  min-width: 320px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  & h1 {
    font-size: 40px;
    font-weight: bold;
    line-height: 45px;
    margin-bottom: 20px;
  }

  & .div-form {
    /* background-color: var(--azul-claro); */
    box-shadow: var(--branco-sombra) 0px 0px 10px 5px;
    padding: 20px;
    min-width: 200px;
    margin: 20px auto;
    border-radius: 5px;
  }

  & .form-main {
    display: grid;
    align-items: center;
    color: var(--branco);
    gap: 10px;
  }

  & .form-main-span {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  & .input-main {
    border: 2px solid var(--azul);
    border-radius: 10px;
    background-color: var(--branco);
    padding: 10px 5px;
    outline: 0;
    width: 100%;
    color: var(--azul);
    text-align: center;
  }

  & .container-names-form {
    display: flex;
    justify-content: center;
    gap: 5px;
  }

  & .form-main label {
    color: var(--azul);
    text-align: center;
  }

  & .form-main input[type="submit"] {
    margin: 10px auto 0 auto;
    height: 50px;
  }

  & a {
    margin: 5px auto 40px auto;
    height: 50px;
  }
}