:root {
  --white-color: #FFF;
  --lightest-color: #F2F2F2;
  --content-color: #444;
  --blue-color: #152236;
  --green-color: #4AC257;
  --original-color: #CC7722;
}

.elevacao {transition: transform .2s}
.elevacao:hover {transform: scale(1.09)}

.original-color {color: var(--original-color) !important}

/* BOTÃO WHATSAPP*/
#WhatsAppFlutuante {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9;
}
#WhatsAppFlutuante .button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: var(--green-color);
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
}
#WhatsAppFlutuante .button:hover, .button:focus {
  transform: translateY(-6px);
}
#WhatsAppFlutuante a::after {
  content: '';
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 6px solid var(--green-color);
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}
#WhatsAppFlutuante a:hover::after, #WhatsAppFlutuante a:focus::after {
  animation: none;
  display: none;
}
@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}

/* BARRA DE ROLAGEM */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--lightest-color);
}
::-webkit-scrollbar-thumb {
  background-color: var(--blue-color);
  border-radius: 20px;
  border: 3px solid var(--lightest-color);
}

* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
button, input, h1, h2, h3, h4, h5, h6, a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
html, body {
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
}
input, textarea, select {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #BDBDBD;
  margin-bottom: 6px;
  padding: 14px 16px 16px 16px;
  font-size: 16px;
  color: var(--content-color);
  font-weight: 400;
  outline: none;
}
button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  border-radius: 6px;
  border: 0;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  background-color: var(--original-color);
  color: var(--white-color);
  text-transform: uppercase;
  transition:         0.2s ease-in;
  -o-transition:      0.2s ease-in;
  -ms-transition:     0.2s ease-in;
  -moz-transition:    0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
}
a {
  text-decoration: none;
  transition:         0.2s ease-in;
  -o-transition:      0.2s ease-in;
  -ms-transition:     0.2s ease-in;
  -moz-transition:    0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
}
a:hover {
  color: var(--original-color);
}
h1, h2, h3, h4, h5, h6, p, span, address {
  margin: 0;
  padding: 0;
  color: var(--darkest-color);
}
address {font-style: normal}
::placeholder {color: var(--content-color)}

/* FONT ICON GOOGLE */
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 300,
  'GRAD' 0,
  'opsz' 48
}
.size-icon {
	font-size: 16px;
	margin-left: 4px;
	width: 12px;
	height: 16px;
	color: var(--white-color);
}
.size-icon-2 {
	font-size: 20px;
	margin-right: 3px;
	width: 24px;
	height: 24px;
	color: var(--white-color);
}
.size-icon-3 {
	font-size: 26px !important;
	margin-right: 10px;
	width: 26px;
	height: 26px;
	color: var(--white-color);
}

#Breadcrumbs {
  display: flex;
  width: 100%;
  height: 46px;
  background-color: var(--lightest-color);
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #828282;
}
#Breadcrumbs .centralizar {
  display: flex;
  width: 100%;
  max-width: 1280px;
  padding: 0 24px;
}
#Breadcrumbs a {color: #828282}
.breadcrumb-ativo {
  font-weight: 500;
  color: #3C3C3C
}

#MenuMobile {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgb(21,34,54, 0.95);
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 9;
  backdrop-filter: blur(2px);
}
#MenuMobile .fechar {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  padding: 50px 14px 0 0;
}
#MenuMobile .conteudo {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
#MenuMobile .logo {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
#MenuMobile ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
  gap: 14px 0;
}
#MenuMobile li {
  width: 100%;    
  text-align: center;
  padding: 0;
  margin: 0;
}
#MenuMobile li a {
  font-size: 14px;
  color: var(--white-color);
  text-decoration: none;
}
#MenuMobile button {
  margin-top: 40px;
}

header {
  display: flex;
  width: 100%;
  background-color: var(--blue-color);
  justify-content: center;
  color: var(--white-color);
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.topo-home {
  background-color: transparent;
}
header .centralizar {
  display: flex;
  width: 100%;
  max-width: 1280px;
  padding: 0 24px;
  align-items: center;
}
header .frame {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding-left: 50px;
}
header .informacoes {
  display: flex;
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #2A3B54;
  align-items: center;
  justify-content: flex-end;
  gap: 0 30px;
}
header a {
  color: var(--white-color);
}
header .redes {
  display: flex;
  gap: 0 10px;
}
header .contatos {
  display: flex;
  height: 50px;
  align-items: center;
}
header .linha {
  display: flex;
  width: 1px;
  height: 50px;
  background: rgb(21,34,54);
  background: linear-gradient(180deg, rgba(21,34,54,1) 20%, rgba(157,176,205,0.5) 50%, rgba(21,34,54,1) 80%);
}
header .frame-menu {
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: flex-end;
}
header ul {
  display: flex;
  list-style-type: none;
}
header li {
  display: flex;
  height: 14px;
  align-items: center;
  padding-left: 30px;
  text-transform: uppercase;
  cursor: pointer;
}
header .menu {
  position: relative;
}
header .submenu {
  display: none;
  width: 200px;
  flex-direction: column;
  color: var(--white-color);
  position: absolute;
  top: 0;
  left: 30px;
  z-index: 1;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    border-radius: 0 10px 10px 10px;
}
header .vazio {
  display: flex;
  height: 30px;
}
header .submenu ul {
  flex-direction: column;
  margin: 0;
  padding: 0;
  padding-inline-start: 0;
  background-color: var(--original-color);
  border-radius: 0 10px 10px 10px;
  padding: 20px 30px;
}
header .submenu li {
  margin: 0;
  padding: 0;
  line-height: 28px;
  height: auto;
}
header .submenu a:hover {
  color: var(--blue-color);
}
header .icone-menu-mobile {
  display: none;
  justify-content: flex-end;
}
header .icone-menu-mobile img {
  width: 24px;
}

#Banner {
  display: flex;
  width: 100%;
  margin-top: -150px;
}
#Banner img {
  width: 100%;
  height: 100%;
}
#Banner .banner-mobile {
  display: none;
}

#Obras {
  display: flex;
  width: 100%;
  background-color: var(--lightest-color);
  justify-content: center;
}
#Obras .centralizar {
  display: flex;
  width: 100%;
  max-width: 1280px;
  padding: 60px 24px;
}
#Obras h1 {
  font-size: 60px;
  line-height: 60px;
}
#Obras p {
  color: var(--content-color);
  line-height: 26px;
  padding: 20px 0 30px 0;
}
#Obras button {
  max-width: 330px;
  height: 60px;
  font-size: 16px;
}
#Obras .textos {
  display: flex;
  width: 39%;
  flex-direction: column;
  justify-content: center;
}
#Obras .frames {
  display: flex;
  width: 61%;
  padding-left: 60px;
  gap: 0 20px;
}
#Obras .frame {
  display: flex;
  width: 100%;
  min-height: 380px;
  border-radius: 10px;
  flex-direction: column;
  padding: 40px 20px 40px 40px;
  justify-content: flex-end;
  background-color: var(--white-color);
}
#Obras .frame h2 {
  font-size: 30px;
  line-height: 30px;
  padding: 20px 0 10px 0;
}
#Obras .frame ul {
  line-height: 26px;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  color: var(--content-color);
}
#Obras .coluna-1 {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin-top: 20px;
  gap: 20px 0;
}
#Obras .coluna-2 {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px 0;
}

#Clientes {
  display: flex;
  width: 100%;
  background-image: url('../images/bg_clientes.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  justify-content: center;
  color: var(--white-color);
  position: relative;
}
#Clientes::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 6px;
  background-color: rgba(0,0,0,0.7);
  /*backdrop-filter: blur(1px);*/
}
#Clientes .centralizar {
  display: flex;
  width: 100%;
  max-width: 1280px;
  flex-direction: column;
  padding: 80px 24px 100px 24px;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
#Clientes h3 {
  font-size: 32px;
  align-items: center;
}
#Clientes .centralizar-logos {
  display: flex;
  margin-top: 50px;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#Clientes .logo {
  display: flex;
  width: 16.6%;
  min-width: 200px;
  height: 100px;
  justify-content: center;
  align-items: center;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 10px;
}
#Clientes .logo img {
  width: auto;
  max-width: 140px;
  height: auto;
  max-height: 70px;
}

#Contato h1,
#Projetos h1,
#ProjetosDetalhes h1,
#Sobre h1,
#Servicos h1 {
  font-size: 30px;
  color: var(--blue-color);
  padding: 30px 0;
}
#Contato h2 {
  font-size: 16px;
  line-height: 26px;
  color: var(--content-color);
}

#Projetos {
  display: flex;
  width: 100%;
  justify-content: center;
}
#Projetos .centralizar {
  display: flex;
  width: 100%;
  max-width: 1280px;
  flex-direction: column;
  padding: 0 24px 70px 24px;
}
#Projetos .h1-home {
  font-size: 40px;
  line-height: 40px;
}
#Projetos .frame-projetos {
  display: flex;
  margin-bottom: 20px;
}
#Projetos .projeto-principal {
  display: flex;
  width: 67%;
  height: 480px;
  border-radius: 6px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  margin-right: 10px;
  position: relative;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}
#Projetos .projeto-principal::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 6px;
  background: rgb(0,0,0, 0.6);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
  opacity: 0.9;
}
#Projetos .projeto-principal h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  color: var(--white-color);
}
#Projetos p {
  font-size: 14px;
  line-height: 22px;
  color: var(--white-color);
  padding-top: 10px;
}
#Projetos .projeto-principal button {
  max-width: 140px;
  height: 44px;
  margin-top: 24px;
}
#Projetos .coluna-projetos {
  display: flex;
  width: 33%;
  flex-direction: column;
  gap: 20px 0;
  margin-left: 10px;
}
#Projetos .listagem-projetos {
  display: flex;
  width: calc(100% + 20px);
  flex-wrap: wrap;
  margin-left: -20px;
}
#Projetos .projetos {
  display: flex;
  height: 230px;
  justify-content: flex-end;
  flex-direction: column;
  border-radius: 6px;
  position: relative;
  padding: 30px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
#Projetos .projetos::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 6px;
  background: rgb(0,0,0, 0.6);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
  opacity: 0.9;
}
#Projetos .coluna {
  width: 100%;
}
#Projetos .listagem {
  width: calc(33.3% - 20px);
  margin: 0 0 20px 20px;
}
#Projetos .projetos h3 {
  font-size: 24px;
  font-weight: 500;
  color: var(--white-color);
}
#Projetos .projetos button {
  background-color: transparent;
  max-width: 90px;
  color: var(--original-color);
  padding: 0;
  border-bottom: 2px solid var(--original-color);
  border-radius: 0;
  justify-content: space-between;
  align-items: center;
  line-height: 14px;
  height: 40px;
  margin-top: 6px;
}
#Projetos .projetos h3,
#Projetos .projetos p,
#Projetos .projetos button,
#Projetos .projeto-principal h2,
#Projetos .projeto-principal p,
#Projetos .projeto-principal button {
  z-index: 1;
}

#ProjetosDetalhes {
  display: flex;
  width: 100%;
  justify-content: center;
}
#ProjetosDetalhes .centralizar {
  display: flex;
  width: 100%;
  max-width: 1280px;
  padding: 0 24px 70px 24px;
}
#ProjetosDetalhes h1 {
  padding-bottom: 20px;
}
#ProjetosDetalhes p,
#Sobre p {
  color: var(--content-color);
  line-height: 26px;
  padding-bottom: 14px;
}
#ProjetosDetalhes .conteudo {
  display: flex;
  width: calc(100% - 310px);
  flex-direction: column;
  padding-right: 50px;
}
#ProjetosDetalhes .lateral {
  display: flex;
  width: 310px;
  flex-direction: column;
  margin-top: 40px;
}
#ProjetosDetalhes .contato-enviado {
  display: flex;
  margin-top: 14px;
  margin-bottom: -10px;
}
#ProjetosDetalhes .conteudo img {
  border-radius: 6px;
  margin: 20px 0 10px 0;
}
#ProjetosDetalhes .conteudo .galeria {
  display: flex;
  width: calc(100% + 10px);
  margin: 0 0 20px -10px;
  flex-wrap: wrap;
}
#ProjetosDetalhes .conteudo .img-galeria {
  display: flex;
  width: 210px;
  margin: 0 0 10px 10px;
  height: 230px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
}
#ProjetosDetalhes .p {
  padding: 0;
}
#ProjetosDetalhes .conteudo button {
  max-width: 360px;
  margin-top: 20px;
  font-size: 16px;
  line-height: 16px;
}
#ProjetosDetalhes form {
  background-color: var(--original-color);
  border-radius: 10px;
  padding: 24px 30px 30px 30px;
  color: var(--white-color);
}
#ProjetosDetalhes .suporte {
  display: flex;
  width: 100%;
  flex-direction: column;
  background-color: #529B19;
  padding: 30px;
  border-radius: 10px;
  margin-top: 20px;
  color: var(--white-color);
}
#ProjetosDetalhes form h2,
#ProjetosDetalhes .suporte h2 {
  font-weight: 500;
}
#ProjetosDetalhes form p,
#ProjetosDetalhes .suporte p {
  line-height: 24px;
  color: var(--white-color);
  padding: 8px 0 14px 0;
}
#ProjetosDetalhes form input {
  margin-top: 4px;
  border: 0;
}
#ProjetosDetalhes .suporte a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  border-radius: 6px;
  border: 0;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
  background-color: #152236;
  color: var(--white-color);
  gap: 0 10px;
}
#ProjetosDetalhes form button {
  background-color: #152236;
  color: var(--white-color);
}

#Servicos {
  display: flex;
  width: 100%;
  background-color: #f2f2f2;
  justify-content: center;
}
#Servicos .centralizar {
  display: flex;
  width: 100%;
  max-width: 1280px;
  flex-direction: column;
  padding: 0 24px 60px 24px;
}
#Servicos .centralizar-frames {
  display: flex;
  width: calc(100% + 20px);
  flex-wrap: wrap;
  margin-left: -20px;
}
#Servicos .frames {
  display: flex;
  width: calc(25% - 20px);
  margin-left: 20px;
  flex-direction: column;
}
#Servicos .frames .image {
  display: flex;
  width: 100%;
  height: 340px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
}
#Servicos .frames h2 {
  padding: 16px 0 12px 0;
}
#Servicos .frames p {
  font-size: 16px;
  line-height: 24px;
  color: var(--content-color);
}
#Servicos ul {
  line-height: 24px;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  color: var(--content-color);
}

#Sobre {
  display: flex;
  margin-bottom: 40px;
  justify-content: center;
}
#Sobre .centralizar {
  display: flex;
  width: 100%;
  max-width: 1280px;
  flex-direction: column;
  padding: 0 24px;
}
#Sobre h1 {
  padding-bottom: 10px;
}
#Sobre h2 {
  font-size: 24px;
  line-height: 40px;
  font-weight: 500;
  padding-top: 10px;
}

#Missao {
  display: flex;
  width: 100%;
  min-height: 506px;
  background-image: url('../images/sobre.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
}
#Missao .centralizar {
  display: flex;
  width: 100%;
  max-width: 1280px;
  gap: 0 100px;
  padding: 0 24px;
}
#Missao .frame {
  display: flex;
  width: 33.3%;
  flex-direction: column;
  align-items: center;
}
#Missao .circulo {
  display: flex;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--original-color);
  justify-content: center;
  align-items: center;
}
#Missao h2 {
  font-size: 30px;
  color: var(--original-color);
  font-weight: 500;
  text-align: center;
  padding: 16px 0;
}
#Missao p {
  font-size: 16px;
  line-height: 24px;
  color: var(--white-color);
  text-align: center;
}

#Diferenciais {
  display: flex;
  width: 100%;
  justify-content: center;
}
#Diferenciais .centralizar {
  display: flex;
  width: 100%;
  max-width: 1280px;
  padding: 20px 24px 0 24px;
  align-items: flex-end;
}
#Diferenciais img {
  width: 100%;
  max-width: 575px;
  height: 100%;
  max-height: 697px;
}
#Diferenciais .centralizar-frames {
  display: flex;
  width: 100%;
  min-height: 697px;
  justify-content: center;
  flex-direction: column;
  margin-left: 60px;
}
#Diferenciais .frame-1,
#Diferenciais .frame-2 {
  display: flex;
  width: 100%;
  flex-direction: column;
  border-radius: 20px;
  padding: 40px 60px;
}
#Diferenciais .frame-1 {
  background-color: var(--original-color);
}
#Diferenciais .frame-2 {
  background-color: var(--blue-color);
  margin-top: 20px;
}
#Diferenciais h1 {
  font-size: 30px;
  font-weight: 500;
  color: var(--white-color);
  padding-bottom: 20px;
}
#Diferenciais .lista {
  display: flex;
  min-height: 26px;
  align-items: center;
  font-size: 18px;
  line-height: 24px;
  color: var(--white-color);
  margin: 3px 0;
}

#Contato {
  display: flex;
  width: 100%;
  justify-content: center;
}
#Contato .centralizar {
  display: flex;
  width: 100%;
  max-width: 1280px;
  padding: 0 24px 70px 24px;
}
#Contato .contato-enviado {
  display: flex;
  font-size: 20px;
  color: var(--green-color);
  font-weight: 500;
  padding: 10px 0 4px 0;
}
#Contato .formulario {
  display: flex;
  width: 50%;
  flex-direction: column;
  padding-right: 30px;
}
#Contato .informacoes {
  display: flex;
  width: 50%;
  flex-direction: column;
  padding: 50px 0 0 30px;
}
#Contato .informacoes .contatos {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--content-color);
  line-height: 26px;
  padding-bottom: 10px;
}
#Contato form {
  margin-top: 20px;
}
#Contato form textarea {
  height: 140px;
}
#Contato iframe {
  margin-bottom: 30px;
}
#Contato a {color: var(--content-color);}
#Contato a:hover {color: var(--original-color);}
#Contato h1 {
  padding-bottom: 10px;
}

footer {
  display: flex;
  width: 100%;
  background-color: var(--blue-color);
  flex-direction: column;
  color: var(--white-color);
  align-items: center;
}
footer .centralizar {
  display: flex;
  width: 100%;
  max-width: 1280px;
  padding: 60px 24px;
  justify-content: space-between;
}
footer .empresa {
  display: flex;
  width: 300px;
  flex-direction: column;
  gap: 20px 0;
}
footer .institucional {
  display: flex;
  flex-direction: column;
}
footer .menu-institucional {
  display: flex;
  gap: 0 80px;
}
footer .linha {
  display: flex;
  width: 1px;
  height: 290px;
  background: rgb(21,34,54);
  background: linear-gradient(180deg, rgba(21,34,54,1) 0%, rgba(49,64,86,1) 50%, rgba(21,34,54,1) 100%);
}
footer p {
  font-size: 16px;
  line-height: 26px;
  color: var(--white-color);
}
footer a {
  color: var(--white-color);
}
footer .titulo {
  display: flex;
  font-size: 18px;
  line-height: 26px;
  color: var(--original-color);
  font-weight: 500;
  text-transform: uppercase;
  padding-bottom: 20px;
}
footer .telefone {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  line-height: 40px;
}
footer .telefone p {
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
}
footer .telefone span {
  font-size: 16px;
  line-height: 30px;
}
footer .ul {
  padding: 0;
  margin: 0;
}
footer .li {
  line-height: 30px;
  list-style-type: none;
}
footer li {
  list-style: disc;
  line-height: 26px;
}
footer address {
  line-height: 26px;
}
footer .redes {
  display: flex;
  gap: 0 10px;
}
footer .copy {
  display: flex;
  width: 100%;
  height: 60px;
  align-items: center;
  justify-content: center;
  background-color: #0F1B2F;
  font-size: 13px;
  color: var(--white-color);
  text-align: center;
}

/*RESPONSIVE*/
@media screen and (max-width: 1060px){
  #Diferenciais img {
    max-height: 580px;
  }
  #Obras .centralizar {
    flex-direction: column;
  }
  #Obras .textos {
    width: 100%;
  }
  #Obras .frames {
    width: 100%;
    padding-left: 0;
    gap: 0 30px;
    margin-top: 40px;
  }
  #Obras .coluna-1 {
    display: flex;
    width: 100%;
    flex-direction: column;
    margin-top: 0;
    gap: 30px 0;
  }
  #Obras .coluna-2 {
    gap: 30px 0;
  }
}

@media screen and (max-width: 950px){
  footer .centralizar {
    flex-wrap: wrap;
    gap: 50px 0;
  }
  footer .linha {
    margin: 0 20px;
  }
  #Servicos .centralizar-frames {
    gap: 40px 0;
  }
  #Servicos .frames {
    width: calc(50% - 20px);
  }
  #Diferenciais .centralizar {
    align-items: center;
    flex-direction: column;
    margin-bottom: 40px;
  }
  #Diferenciais .centralizar-frames {
    min-height: auto;
    margin-left: 0;
  }
}

@media screen and (max-width: 870px){
  #Banner .banner-desktop {
    display: none;
  }
  #Banner .banner-mobile {
    display: flex;
  }
  #Banner img {
    max-height: 600px;
  }
}

@media screen and (max-width: 840px){
  #Projetos .listagem {
    width: calc(50% - 20px);
  }
  #Projetos .frame-projetos {
    flex-direction: column;
    gap: 20px 0;
  }
  #Projetos .projeto-principal {
    width: 100%;
    height: 380px;
    margin-right: 0;
  }
  #Projetos .coluna-projetos {
    width: 100%;
    flex-direction: row;
    gap: 0 20px;
    margin-left: 0;
  }
  #Projetos .coluna {
    width: 50%;
  }
  #Projetos .listagem {
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 790px){
  #ProjetosDetalhes .centralizar {
    flex-direction: column;
  }
  #ProjetosDetalhes .conteudo {
    width: 100%;
    padding-right: 0;
  }
  #ProjetosDetalhes .lateral {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    gap: 0 30px;
  }
  #ProjetosDetalhes .suporte {
    margin-top: 0;
  }
  #ProjetosDetalhes form {
    width: 100%;
  }
}

@media screen and (max-width: 670px){
  header .centralizar {
   justify-content: space-between;
  }
  header .frame {
    display: none;
  }
  header .icone-menu-mobile {
    display: flex;
  }
  header img {
    width: 80px;
  }
  #Contato .centralizar {
    flex-direction: column;
  }
  #Contato .formulario {
    width: 100%;
    padding-right: 0;
  }
  #Contato .informacoes {
    width: 100%;
    padding: 50px 0 0 0;
  }
  .topo-home {
    background-color: var(--blue-color);
  }
  #Banner {
    margin-top: 0;
  }
}

@media screen and (max-width: 630px){
  footer .centralizar {
    flex-direction: column;
    gap: 30px 0;
  }
  footer .linha {
    display: none;
  }
  footer .empresa {
    width: 100%;
  }
  #Obras h1 {
    font-size: 40px;
    line-height: 46px;
  }
  #Obras button {
    max-width: 100%;
    height: 50px;
    font-size: 14px;
  }
  #Obras .frames {
    flex-direction: column;
    gap: 24px;
  }
}

@media screen and (max-width: 600px){
  #ProjetosDetalhes .lateral {
    flex-direction: column;
    gap: 20px 0;
  }
}

@media screen and (max-width: 550px){
  #Projetos .listagem {
    width: 100%;
    margin: 0 0 20px 0;
  }
  #Projetos .listagem-projetos {
    width: 100%;
    margin-left: 0;
    flex-direction: column;
  }
  #Projetos .projeto-principal {
    height: 300px;
  }
  #Projetos .coluna-projetos {
    flex-direction: column;
    gap: 20px 0;
  }
  #Projetos .coluna {
    width: 100%;
  }
  #Servicos .centralizar-frames {
    flex-direction: column;
  }
  #Servicos .frames {
    width: 100%;
    margin-left: 0;
  }
  #Servicos .centralizar-frames {
    width: 100%;
    margin-left: 0;
  }
}

@media screen and (max-width: 450px){
  #ProjetosDetalhes .conteudo .galeria {
    width: 100%;
    margin: 0 0 20px 0;
  }
  #ProjetosDetalhes .conteudo .img-galeria {
    margin: 0 0 10px 0;
    height: 200px;
  }
}

@media screen and (max-width: 400px){
  #Projetos .projeto-principal h2 {
    font-size: 24px;
  }
  #Projetos .projeto-principal button {
    max-width: 100%;
    height: 36px;
    margin-top: 16px;
    font-size: 12px;
  }
  #Projetos .projeto-principal {
    padding: 30px;
  }
  #Projetos .projetos h3 {
    font-size: 20px;
  }
  #Diferenciais .frame-1,
  #Diferenciais .frame-2 {
    padding: 30px;
  }
  #Diferenciais .lista {
    font-size: 16px;
    line-height: 22px;
  }
  #Diferenciais h1 {
    font-size: 24px;
    padding-bottom: 10px;
  }
  #Diferenciais .centralizar-frames .size-icon-3 {
      font-size: 20px !important;
      width: 20px;
      height: 20px;
  }
}