/* ===== Home Section ===== */
.home {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  color: white;
  font-family: sans-serif;
  z-index: 0;
}

/* Vídeo de fundo */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Degradê preto na parte inferior */
.home::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px; /* altura do degradê */
  background: linear-gradient(to top,rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.), rgba(0,0,0,0));
  z-index: 1; /* acima do vídeo, abaixo do conteúdo */
  pointer-events: none;
}

/* Conteúdo */
.home-content {
  position: absolute;
  bottom: 5%;
  left: 5%;
  max-width: 600px;
  z-index: 2; /* acima do degradê */
}

.home-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.home-content p {
  margin-top: 1rem;
  font-size: 1.125rem;
}

/* Botão */
.home-content button {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: white;
  color: black;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.home-content button:hover {
  background-color: #D1D5DB;
}

/* Responsividade */
@media (max-width: 768px) {
  .home-content {
    left: 40%;
    transform: translateX(-50%);
  }

  .home-content h1 {
    font-size: 2.25rem;
  }

  .home-content p {
    font-size: 1rem;
  }
}
