.hero {
  position: relative;
  min-height: 620px;
  background-image: url("../img/hero/hero-principal.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 100%;
  min-height: 620px;
  background: linear-gradient(
    90deg,
    rgba(15, 42, 68, 0.82) 0%,
    rgba(15, 42, 68, 0.68) 35%,
    rgba(15, 42, 68, 0.35) 100%
  );
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  align-items: center;
  min-height: 620px;
}

.hero-text {
  max-width: 620px;
  color: var(--color-blanco);
}

.hero-text h1 {
  font-size: 3.4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-text h1 span {
  color: var(--color-naranja);
}

.hero-text p {
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
} 