*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  /*background: #ecf0f1;*/
}

h1 {
  color: #044f38;
  text-transform: uppercase;
  font-weight: 900;
  padding-top: 20px;
  letter-spacing: 2px;
    /*display: inline-block;
    border-top: 10px solid #000;*/

  }

  img{
    max-width: 100%;
  }

  .radius{
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
  }

  .rounded{
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
  }

  .transition{
    transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
  }

  .button_cta{
    background: #F5B945;
    padding: 15px 20px 13px 20px;
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 1px 1px rgba(0,0,0,0.5);
    display: inline-block;
    color: #fff;
    cursor: pointer;
    border-bottom: 6px solid #EF9E0F;
  }

  .button_cta:hover{
    background: #FDCD56;
  }

  .container{
    width: 1300px;
    max-width: 1300px;
    padding: 145px 0px 0px 0px;
    margin: 0 auto;
  }

/* -- HEADER -- */

header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 150px;
  background: #fff;
  width: 100%;
  height: 145px;
  font-weight: 300;
  text-transform: uppercase;
  box-sizing: border-box;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

header .logo {
  color: #fff;
  height: 109px;
  line-height: 109px;
  /*font-size: 24px;*/
  float: left;
  padding: 20px 0;
}

header nav {
  float: right;
}

header nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}

header nav ul li {
  list-style: none;
}

header nav ul li a {
  height: 145px;
  line-height: 145px;
  padding: 0 20px;
  color: #008d57;
  text-decoration: none;
  display: block;
}

header nav ul li a:hover {
  color: #fff;
  background: #008d57;
}

.menu-toggle {
  color: #4d4d4d;
  float: right;
  line-height: 65px;
  font-size: 24px;
  cursor: pointer;
  display: none;
}


/* -- BANNER -- */
#banner {
  max-width: 100%;
}

/* -- QUEM SOMOS -- */
#sobre {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row; /* adicionado */
  justify-content: space-between;
  height: 50vh; /* alterado para unidade relativa */
  background: url(../images/bg-intro.jpg) center no-repeat;
  background-size: cover; /* adicionado para cobrir toda a área */
}

.column {
  flex-basis: 50%;
  padding: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#sobre p {
  text-align: center;
  color: #fff;
  font-size: 0.875em;
  line-height: 40px;
  padding: 20px;
  /*margin-bottom: 100px;*/
}

#sobre p span {
  font-size: 0.875em; 
  font-weight: bold;
}

.column img {
  display: block;
  margin: 0 auto;
}

/* -- SERVIÇOS -- */
.bullet_points {
  text-align: center;
  padding-bottom: 40px;
  background: #fcfcfc;

}

.bullet_points h1 {
  color: #535353;
}

.bullet_points_content{
  display: flex;
  flex-wrap: wrap;
}

.bullet_points_content_item{
  flex-basis: calc(33,33% - 20px);
  margin: 10px;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bullet_points_content_item .img{
  flex-basis: 30%;
}

.bullet_points_content_item .bullet{
  flex-basis: 70%;
  padding-left: 20px;
}

.bullet_points_content_item h2{
  font-size: 0.9em;
  font-weight: 700;
  color: #044f38;
  text-align: center;
  padding: 10px 0;
}

.bullet_points_content_item h3{
  font-size: 1em;
  font-weight: 300;
  color: #044f38;
  text-align: center;
}

/* -- SOLUÇÕES -- */
#solucoes {
  height: 960px;
  background: url(../images/bg-solucoes.jpg) center no-repeat;
  /*background-size: 100%;*/
  text-align: center;
  padding-bottom: 40px;
  margin-bottom: 0px;
}

.solucoes-468 {
  display: none;
}

.solucoes-768 {
  display: none;
}


/* -- CONTATO -- */
#contato {
  height: 680px;
  background: url(../images/bg-faleconosco.jpg) center no-repeat;
  /*background-size: 100%;*/
  text-align: center;
  padding-bottom: 40px;
  margin-bottom: 0px;
}

#contato h1, #contato h3 {
  width: 100%;
  text-align: center;
  color: #535353;
}

#contato h3 {
  letter-spacing: 2px;
  font-size: 0.8em;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.header-contato {
  width: 100%;
}

.contato-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contato-form, .contato-info {
  width: 50%;
  flex: 1;
}

.contato-form {
  margin-left: 15px;
  padding: 20px; /* Adiciona um pouco de espaço interno */
  color: #535353;
  background-color: #f9f9f9; /* Cor de fundo leve */
  border-radius: 8px; /* Cantos arredondados */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contato-form form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 15px; /* Espaçamento entre os grupos de campos */
  text-align: left;
}

label {
  font-weight: bold; /* Deixa o texto do rótulo em negrito */
  margin-bottom: 5px; /* Espaçamento abaixo do rótulo */
  display: block; /* Faz o rótulo ocupar toda a largura */
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  min-width: 70%; /* Faz os campos ocuparem toda a largura do container */
  padding: 10px; /* Espaçamento interno */
  border: 1px solid #E6B673; 
  border-radius: 4px; /* Cantos arredondados */
  font-size: 1em; /* Tamanho da fonte */
  transition: border-color 0.3s; /* Transição suave para a cor da borda */
}

textarea {
  width: 100% !important;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #008d57; /* Cor da borda ao focar */
  outline: none; /* Remove o contorno padrão */
}

textarea {
  resize: vertical; /* Permite redimensionar verticalmente */
}

input[type="submit"] {
  background-color: #ad7a00; /* Cor de fundo do botão */
  color: #fff; /* Cor do texto */
  padding: 10px 15px; /* Espaçamento interno */
  border: none; /* Remove a borda */
  border-radius: 4px; /* Cantos arredondados */
  cursor: pointer; /* Muda o cursor para mão */
  font-size: 1em; /* Tamanho da fonte */
  transition: background-color 0.3s; /* Transição suave para a cor de fundo */
}

input[type="submit"]:hover {
  background-color: #005f45; /* Cor de fundo ao passar o mouse */
}

.contato-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-item img {
  margin-right: 20px;
}

.info-item p {
  letter-spacing: 2px;
  font-size: 0.8em;
  font-weight: 400;
  color: #535353;
  text-align: left;
}

.info-item a {
  letter-spacing: 2px;
  font-weight: 400;
  color: #535353;
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: inline-block;
  margin-right: 10px;
}

/*.centralizado {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}*/

.box-contato-ok {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.box-contato-ok img {
  margin-bottom: 20px;
}

.box-contato-ok p {
  text-align: center;
}

/* -- FOOTER -- */
.main_footer {
  background: #fcfcfc;
  padding: 0;
  height: 231px;
  text-align: center;
  color: #000;
  font-size: 0.8em;
}

.main_footer a {
  display: inline-block;
  margin-left: 5px;
  text-decoration: none;
  color: #065039;
}

.main_footer a:hover {
  color: #4d4d4d;
}

.main_footer img {
  width: 280px;
  max-width: 100%;
  margin: 30px 0px 10px 0px;
  text-align: center;
}

.main_footer p {
  font-size: 0.8em;
  color: #000;
  margin-bottom: 15px;
}


.main_footer .f-endereco {
  font-size: 0.9em;
  color: #065039;
  margin-bottom: 15px;
  text-align: center;
}


.main_footer p span {
  font-size: 1em;
  color: #000;
}

.main_footer .container {
  align-items: center;
}

.main_footer_copy {
  flex-basis: 40%;
  font-size: 0.875em;
  color: #555;
  text-transform: none;
}

.main_footer_copy span {
  color: #000;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.single-image {
  flex-basis: calc(25% - 20px);
  margin: 0;
}

.btn{
  width: 100%;
  float: right;
  text-align: center;
}

#load-more {
  background-color: #0d3b66;
  color: #fff;
  border-radius: 5px;
  padding: 10px 15px;
  display: none;

}

#load-more:disabled {
  background-color: #ccc;
  color:#0d3b66;
}

/* -- FIM FOOTER -- */

.embed-container {
  position: relative;
  max-width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.embed-container embed,
.embed-container video,
.embed-container iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mapa {
  z-index: -1;
  height: 500px;
  padding-bottom: 0px;
}


/*
FLEXBOX
*/

.flex {
  display: flex;
  justify-content: space-between; /* Espaço entre os itens */
}

.flex .flex-1 {
  flex-basis: 100%;
}

.flex-2 {
  flex-basis: 48%; /* Cada campo ocupa 48% da largura */
}

.flex .flex-2 {
  flex-basis: calc(50% - 40px);
  margin: 20px;
}

.flex .flex-3 {
  flex-basis: calc(33.33% - 30px);
  margin: 15px;
}

.flex .flex-4 {
  flex-basis: calc(25% - 20px);
  margin: 10px;
}

.pad {
  margin-bottom: 0px;
}

.pad-2 {
  padding-top: 0px;
}

/*
FLEXBOX
*/

/*768*/
@media (max-width: 768px) {

  .container{
    max-width: 100%;
    padding: 145px 0px 0px 0px;
    margin: 0 auto;
  }

  #sobre {
    height: 500px;
  }  

  .bullet_points_content {
    justify-content: center; /* Centraliza os itens no container */
  }

  .bullet_points_content_item:last-child {
    flex-basis: 100%; /* Faz o último artigo ocupar 100% da largura */
    text-align: center; /* Centraliza o texto dentro do artigo */
  }

  #solucoes {
    height: 960px;
    background: url(../images/bg-solucoes.jpg) repeat;
  }

  .solucoes-768 {
    display: block;
    height: auto;
    height: 960px;
  }

  .solucoes-img {
    display: none;
  }

  #contato {
    height: 840px;
    background: url(../images/bg-faleconosco.jpg) #d5d3d4 no-repeat;
  }

  .contato-container {
    flex-direction: column; /* Coloca os itens em coluna */
  }

  .header-contato {
    order: -1; /* Coloca a div header-contato em primeiro lugar */
  }

  .contato-form, .contato-info {
    width: 100%; /* Faz com que ambos ocupem 100% da largura */
    order: 1;
  }

  .contato-info {
    order: 0;
    padding: 25px 25px 10px 25px;
  }

}

/*480*/
@media (max-width: 480px) {

  .container{
    max-width: 100%;
    padding: 145px 0px 0px 0px;
    margin: 0 auto;
  }

  header .logo {
    width: 320px;
  }

  #sobre {
    flex-direction: column;
    height: auto;
  }

  #sobre .column {
    width: 100%;
    margin-bottom: 20px; /* Adiciona um espaço entre as colunas */
  }

  #solucoes {
    height: 1228px;
    background: url(../images/bg-solucoes.jpg) repeat;
  }

  .solucoes-768 {
    display: none;
  }

  .solucoes-468 {
    display: block;
    height: auto;
    height: 1228px;
  }

  .solucoes-img {
    display: none;
  }

  #contato {
    height: 840px;
    background: url(../images/bg-faleconosco.jpg) repeat;
  }

  .contato-container {
    flex-direction: column; /* Coloca os itens em coluna */
  }

  .header-contato {
    order: -1; /* Coloca a div header-contato em primeiro lugar */
  }

  .contato-form {
    margin-left: 5px;
    padding: 7px;
  }

  .contato-form, .contato-info {
    width: 100%; /* Faz com que ambos ocupem 100% da largura */
    order: 1;

  }

  .contato-info {
    order: 0;
    padding: 25px 25px 10px 25px;
  }



}

@media(max-width: 56em){
  .bullet_points_content_item{
    flex-basis: calc(50% - 40px);
  }

  .box-contato {
    margin: 10px;
  }

  
}

@media(max-width: 42em){
  h1 {
    font-size: 1.2em;
    font-weight: 900;
  }

  #sobre p {
    font-size: 0.9em;
  }

  .bullet_points_content_item{
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .box-contato {
    margin: 10px;
  }

  .main_footer {
    flex-wrap: wrap-reverse;
    padding: 0;
  }

  .main_footer_copy, .main_footer_facebook, .main_footer_instagram {
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .single-image {
    flex-basis: calc(25% - 20px);
    margin: 0;
  }
}

@media (max-width: 991px) {

  header {
    padding: 0 20px 0 10px;
  }

  .menu-toggle {
    margin-top: 35px;
    display: block;
  }

  header nav {
    position: absolute;
    width: 100%;
    height: auto;
    background: #005937;
    top: 142px;
    left: -100%;
    transition: 0.5s;
  }

  header nav.active {
    left: 0;
  }

  header nav ul {
    display: block;
    text-align: center;
  }

  header nav ul li a {
    color: #fff;
    border-bottom: 1px solid rgba(0,0,0,.2);
  }

  .main_footer_copy, .main_footer_facebook, .main_footer_instagram {
    flex-basis: 100%;
    text-align: center;
  }

}

@media (width: 1024px) {
  .main_footer_copy, .main_footer_facebook, .main_footer_instagram {
    flex-basis: calc(33.33% - 30px);
    margin: 15px;
  }
}

@media (width: 1366px) {
  .main_footer_copy, .main_footer_facebook, .main_footer_instagram {
    flex-basis: calc(25% - 20px);
    margin: 5px;
  }
}

/*@media screen and (min-width: 693px) and (max-width: 896px) {
    
    .main_footer_copy, .main_footer_facebook, .main_footer_instagram {
      flex-basis: 100%;
      text-align: center;
      margin-bottom: 20px;
    }

}*/