* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* flex-wrap: wrap; */
}

body{
  margin-top: 70px;
}

a,
p,
span,
h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

#header {
  position: fixed;
  top: 0;
  background-color: white;
  width: 100%;
  z-index: 99999;
}

.carrossel {
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#section2 {
  display: flex;
  justify-content: space-between;
  min-height: 120vh;
}

#sobre {
  position: relative;
  display: flex;
  justify-content: center;
}

#sobre-content {
  width: 75%;
  position: absolute;
  top: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#sobre-content button {
  width: 250px;
  background-color: #008871;
  height: 35px;
  color: white;
  font-size: large;
  border: none;
  border-radius: 10px;
}

#video {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin-right: 30px;
}

#section4 {
  background-color: #dedede;
  background-image: url("../img/maquinas.avif");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  gap: 50px;
  width: 100%;
  height: 100vh;
}

#title {
  font-size: 40px;
}

.metricas {
  display: flex;
  width: 80%;
  justify-content: space-evenly;
  gap: 25px;
  text-align: center;
}

.metricas-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border-bottom: 4px solid rgb(50, 50, 50);
  border-radius: 2px;
  gap: 10px;
}

.metricas-content h1 {
  font-size: 50px;
  color: #008871;
}

.metricas-content span {
  color: #828282;
}

#section5 {
  background-color: black;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

#section5 h1 {
  color: white;
  font-size: 40px;
  padding: 50px;
}

#clientes {
  display: flex;
  max-width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.clientes-content {
  background-color: #3c3935;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.clientes-content img {
  max-width: 200px;
}

#section6 {
  width: 100%;
  display: flex;
  padding: 50px;
  gap: 75px;
}

#contato {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}

.contato {
  display: flex;
  flex-direction: column;
  width: 300px;
  max-width: 300px;
  gap: 5px;
}

.contato a {
  color: black;
}

.contato h2 {
  margin-bottom: 10px;
}

#orcamento {
  display: flex;
  flex-direction: column;
  justify-content: top;
  width: 100%;
  gap: 15px;
  /* background-color: red; */
}

#orcamento form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

form input {
  margin-bottom: 15px;
  border: none;
  border-bottom: 1px solid #3c3935;
  height: 30px;
}

textarea {
  border: 1px solid #3c3935;
  height: 75px;
}

form button {
  height: 30px;
  background-color: #008871;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  font-size: 15px;
}

.maquina {
  padding: 50px;
  display: flex;
  flex-direction: column;
  /* gap: 15px; */
  background: linear-gradient(to top, #fff 40%, #dedede7d 40%);
}

.maquina-title {
  display: flex;
  align-items: center;
  gap: 25px;
}

.maquina-title a {
  color: #008871;
  text-decoration: none;
}

.maquina-content {
  width: 100%;
  font-size: 15px;
  height: 125px;
  /* background-color: red; */
}

.maquina-image {
  align-self: center;
  height: 300px;
  /* background-color: rebeccapurple; */
}

.maquinas-nav {
  align-self: center;
}

.maquinas-nav nav {
  display: flex;
  gap: 30px;
}

.maquina-title,
.maquina-content,
.maquina-image {
  transition: opacity 0.4s ease;
}

.fade {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.fade.hide {
  opacity: 0;
}
