* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1,
h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  margin: 20px 0;
  font-size: 3.81rem;
  animation: fadeIn 2s ease-in-out;
}

#home {
  height: 100vh;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  will-change: transform;
  transform: translateZ(0);
  background-image: url("../img/FUNDO-SITE-0.jpg");
  background-position: center;
  background-size: cover;
}

.button {
  text-decoration: none;
  color: #f0f0f0;
  background-color: #11c80b;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: bold;
  border-radius: 0.5rem;
  transition: background-color 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.8) 45%
  );
  z-index: 0;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

section#home .container {
  position: relative;
  z-index: 1;
  color: #fff;
  background: transparent; /* Removendo o fundo sólido anterior */
  height: 100%;
}

.home-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  height: 100%;
}
