/* --- CONTENEDOR HERO --- */
.hero-container {
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Imagen con efecto oscuro elegante */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(45%);
  transform: scale(1.1);
}

/* --- CONTENIDO SOBRE LA IMAGEN --- */
.hero-content {
  position: absolute;
  text-align: center;
  color: white;
  padding: 20px;
  animation: fadeIn 1.5s ease-in-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 0 4px 12px rgba(0,0,0,0.7);
  margin-bottom: 10px;
}

.hero-subtext {
  font-size: 1.3rem;
  margin-bottom: 22px;
  text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}

/* --- BOTÓN ESTÉTICO --- */
.hero-button {
  background: #ffb100;
  color: #000;
  padding: 14px 32px;
  font-size: 1.2rem;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(255, 177, 0, 0.4);
}

.hero-button:hover {
  background: #ffcf2d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 200, 0, 0.5);
}

/* --- ANIMACIÓN --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-subtext {
    font-size: 1rem;
  }
  .hero-button {
    padding: 12px 26px;
    font-size: 1rem;
  }
}
