/* ------------------------------------------------------------------------HOME */

/* ---------------------------------CABECALHO */
.layout-cabecalho {
  width: 100%;
  /* border: 1px solid #fff; */
  border-top: none;
  border-radius: 0 0 30px 30px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3),
    0px 6px 20px rgba(255, 255, 255, 0.2);
}

.cabecalho-imagem {
  margin: 10px 0 10px 30px;
}

.cabecalho-menu {
  text-align: end;
  height: 100%;
  margin-top: 40px;
}

.layout-menu-hamburger {
  display: none;
}

@media (max-width: 900px) {
  .layout-cabecalho {
    position: relative;
  }

  .cabecalho-menu {
    position: absolute;
    z-index: 10;
    right: 20px;
    top: 70px;
    background-color: #ffffff49;
    margin-right: 0;
    padding: 5px;
    display: none;
    border-radius: 20px;
    height: auto;
  }

  .layout-menu-hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 80px;
  }

  .layout-menu-hamburger > img {
    width: 40px;
  }
}

@media (max-width: 500px) {
  .layout-menu-hamburger {
    margin-right: 50px;
  }
  .cabecalho-imagem > a > img {
    width: 150px;
  }

  .layout-menu-hamburger > img {
    width: 30px;
  }

  .cabecalho-menu {
    right: 20px;
    top: 42px;
  }
}

/* ---------------------------------FIM CABECALHO */

/* ---------------------------------MAIN */

.layout-main {
  width: 100%;
}

/* ---------------------------------FIM MAIN */

/* ---------------------------------RODAPE */
.layout-rodape {
  /* border: 1px solid #fff; */
  border-bottom: none;
  border-radius: 30px 30px 0 0;
  padding: 30px 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3), 0px 6px 20px rgba(0, 0, 0, 0.2);
}

.rodape-redes {
  text-align: center;
  margin-bottom: 15px;
}

.rodape-copyright {
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

/* ---------------------------------FIM RODAPE */

/* ---------------------------------BANNER */
.layout-banner {
  width: 100%;
  text-align: center;
  padding: 100px 0;
  background-image: url(../assets/images/logoIcon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 400px;
  margin-bottom: 80px;
}

/* ---------------------------------FIM BANNER */

/* ---------------------------------CHAMADA */
.layout-chamada {
  text-align: center;
  width: 100%;
  margin-bottom: 100px;
}
/* ---------------------------------FIM CHAMADA */

.layout-clientes {
  padding: 20px 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 100px;
}

@media (max-width: 770px) {
  .layout-chamada {
    margin-bottom: 80px;
  }

  .layout-clientes {
    justify-content: center;
  }
}

/* ------------------------------------------------------------------------HOME */

/* ------------------------------------------------------------------------SOBRE */

.layout-sobre {
  width: 100%;
  text-align: center;
}

.sobre-container {
  display: flex;
  justify-content: space-between;
  padding: 20px 10px;
  margin-bottom: 50px;
}

.sobre-texto {
  display: inline-block;
  width: 55%;
  text-align: left;
  padding: auto;
}

.sobre-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
}

@media (max-width: 600px) {
  .sobre-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px 10px;
    margin-bottom: 50px;
  }
  .sobre-texto {
    width: 100%;
    display: block;
    margin-bottom: 30px;
  }

  .sobre-img {
    display: block;
    width: 100%;
  }
}

.layout-servicos {
  width: 100%;
  padding: 20px;
}

.servicos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 50px;
}

.servicos-cards {
  padding: 20px 10px;
  display: inline-block;
  margin-bottom: 20px;
  text-align: center;
  width: 320px;
}

@media (max-width: 870px) {
  .servicos-container {
    display: flex;
    justify-content: center;
    padding: 0 50px;
  }
}

@media (max-width: 600px) {
  .servicos-container {
    padding: 0;
  }

  .layout-servicos {
    padding: 0;
  }
}

/* ------------------------------------------------------------------------SOBRE */

/* ------------------------------------------------------------------------CONTATOS */
.layout-contatos{
    background-image: url(../assets/images/fundoContatos.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3), 0px 6px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 80px;
}


.layout-formulario{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 80px;
}
.formulario-area{
    width: 100%;
 
  }
  
.formulario-linha{
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}

.formulario-text{
    text-align: center;
}

.layout-contatos-cards{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}


.contatos-cards{
    background-color: #D9D9D9;
    display: inline-block;
    padding: 20px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4),
    -3px -3px 5px rgba(255, 255, 255, 0.3);
    font-family: "Montserrat", sans-serif;
    width: 20%;
    word-wrap: break-word;
  }

  @media(max-width: 700px){
    .formulario-linha{
        margin: 0;
        flex-direction: column;
        justify-content: center;
      }
  }

  @media(max-width: 550px){
    .layout-contatos-cards{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .contatos-cards{
        width: 55%;
        margin-bottom: 20px;
    }
  }


/* ------------------------------------------------------------------------CONTATOS */