/* Hero Section Styles */
.hero {
  background: url("/img/fotos/bannerdesk.png") center/cover no-repeat;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 0;
  margin-top: 0;
  width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)); */
  opacity: 0.85;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.hero-content {
  max-width: 700px;
  color: var(--white);
  margin-left: 0;
  padding: 2rem 0;
  animation: fadeInUp 1s ease-out;
  margin-top: -310px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-content p {
  font-family: var(--font-subheading);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
