@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header-menu {
  position: fixed;
  width: 100%;
  background: linear-gradient(90deg, #1c1c1c, #2a2a2a, #333);
  /* background-color: rgba(62, 60, 58, 0.7); */
  z-index: 1000;
  padding: 15px 0;
}

.logo-menu {
  /* border: 1px solid black; */
  display: flex;
  flex-flow: column;
  align-items: center;
  color: white;
  margin-left: 30px;
}

.nav-menu {
  /* border: 1px solid red; */
  display: flex;
  justify-content: space-between;
}

.ul-menu {
  /* border: 1px solid black; */
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: 30px;
}

.item {
  list-style: none;
}

.item a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.item a:hover {
  color: rgb(245, 81, 81);
  /* padding: 20px; */
  transition: 0.5s;
}

.icon {
  fill: #fff;
}

.sidebar {
  padding-top: 30px;
  gap: 30px;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  backdrop-filter: blur(10px);
}

.sidebar a {
  padding: 0 30px;
}

.banner {
  display: flex;
  flex-flow: column;
}

.banner-text {
  color: rgb(245, 81, 81);
  border: 1px solid green;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  background-image: url(../img/fundo-home.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 80px;
}

.banner h2 {
  font-size: 90px;
  text-shadow: 2px 2px 5px #000;
}

.banner p {
  font-size: 20px;
  font-weight: bold;
}

.container {
  width: 85%;
  display: flex;
  gap: 50px;
  margin: auto;
  padding: 100px;
}

.container-text {
  text-align: justify;
  margin-top: 105px;
}

.quem-somos {
  text-align: justify;
}

.quem-somos h2 {
  font-size: 30px;
  color: rgb(245, 81, 81);
  padding-bottom: 30px;
}

.meta {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
  background: linear-gradient(90deg, #1c1c1c, #2a2a2a, #333);
  color: white;
  border: 1px solid black;
  text-align: center;
  padding: 50px 50px;
}

.meta h3 {
  margin: 30px 0;
}

.meta p {
  font-size: 30px;
  margin: 50px 0;
  font-weight: bold;
}

.titulo-servicos {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 50px 0;
}

.titulo-servicos h3 {
  padding-top: 20px;
  font-size: 30px;
}

.servicos {
  /* border: 1px solid black; */
  height: 600px;
  gap: 30px;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.servicos a {
  text-decoration: none;
  padding: 10px;
  /* border: 1px solid rgb(245, 81, 81); */
}

.card {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
  /* border: 1px solid black; */
  background-color: #f5f5f5;
  box-shadow: 2px 2px 5px #0000004d;
  width: 250px;
  height: 600px;
  align-content: center;
  text-align: center;
  padding-bottom: 20px;
  border-radius: 5px;
}

.card a {
  color: black;
}

.card:hover {
  /* color: white; */
  background-color: rgb(245, 81, 81);
  transition: 0.5s;
}

.card:hover a {
  background-color: black;
  color: white;
}

.card h3 {
  margin-bottom: 20px;
}

.card p {
  padding: 0 10px;
  margin-bottom: 30px;
}

.fa-regular {
  margin: 30px 0;
  font-size: 50px;
}

#icone {
  margin: 30px 0;
  font-size: 50px;
  stroke: black;
  fill: white;
}

.rodape {
  display: flex;
  justify-content: space-around;
  background-color: #2c2c2c;
  color: white;
  padding: 40px;
}

.logo-rodape {
  text-align: center;
  /* border: 1px solid black; */
}

/* .contato-rodape {
  border: 1px solid red;
} */

.ul-rodape {
  list-style: none;
}

.ul-rodape a {
  color: white;
}

.whats {
  background-color: #25d366;
  width: 60px;
  height: 60px;
  color: #fff;
  font-size: 30px;
  position: fixed;
  bottom: 40px;
  right: 40px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 1px 1px 2px #888;
  z-index: 1000;
}

.fa-whatsapp {
  margin-top: 16px;
}

/* SEÇÃO SERVIÇOS */

.servico-banner-text {
  position: relative; /* para o ::before funcionar */
  color: rgb(245, 81, 81);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 400px; /* força altura máxima */
  margin-top: 90px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 95px;
  overflow: hidden;
}

.servico-banner-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../img/fundo-quadro.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: blur(5px);
  transform: scale(1.1);
  z-index: -1;
}

.atividades h3 {
  text-align: center;
  padding-top: 20px;
}

.atividades h2 {
  padding: 40px 0;
  color: rgb(245, 81, 81);
}

.atividades p {
  text-align: center;
  font-size: 20px;
}

.resid-comercial,
.industrial {
  display: flex;
  flex-direction: column;
  width: 100%; /* ocupa largura total */
  justify-content: center;
  align-items: center;
  min-height: 400px; /* acompanha altura do banner */
  background: linear-gradient(90deg, #1c1c1c, #2a2a2a, #333);
  color: white;
  text-align: left;
  padding: 50px;
}

.resid-comercial h2,
.predial h2,
.industrial h2,
.cabine h2 {
  padding-bottom: 50px;
  font-size: 35px;
}

.predial,
.cabine {
  display: flex;
  justify-content: left;
  align-items: start;
  height: 450px;
  text-align: left;
  padding: 50px 50px;
}
