body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
}

.hero {
  height: 100vh;
  position: relative;
  background: url("../img/hero-bg.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Camada escura por cima da imagem */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85); /* sombra bem escura */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
  animation: fadeIn 1.2s ease-out;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: #ccc;
  margin-bottom: 20px; /* Menor margem entre o título e o novo texto */
}

/* Nova informação de produção mínima */
.production-info {
  font-size: 1.2rem;
  font-weight: 400;
  color: #f5a623; /* Cor para destacar a informação */
  margin-bottom: 40px;
}

/* Estilo do botão */
.hero-cta {
  padding: 14px 36px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: #fff;
  color: #000;
}

/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
