* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  min-height: 100vh;
}

.caixa-video {
  position: fixed;
  z-index: -1;
  top: 0;

}

video {
  width: 100vw;
  position: fixed;
  top: 0;
}

.mascara {
  height: 100%;
  width: 100%;
  background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
  position: fixed;
  top: 0;
}


button {
  color: #fff;
  background-color: #c51111;
  border-radius: 7px;
  border: none;
  width: 100px;
  height: 40px;
  cursor: pointer;
  font-weight: bold;
  margin: 20px 20px;
}

button:hover {
  color: black;
  font-size: 16px;
  transition: 0.5s ease-in-out;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 50px;
  margin-top: 70px;

  h1 {
    font-size: 50px;
    color: #fff;
  }

}

.container-servicos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.servicos {
  width: 320px;
  height: 370px;
  background-color: #d1d1d1a3;
  border-radius: 20px;
  padding: 10px;
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  img {
    width: 280px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 15px;
  }
}


@media(max-width: 1100px) {
  .container-servicos {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
  }
}

@media(max-width: 700px) {
  .container-servicos {
    display: grid;
    grid-template-columns: repeat(1, 4fr);
    padding-bottom: 20px;
  }
}