.hero {
  position: relative;
  width: 100vw;
  height: 110vh;
  color: white;
  z-index: 1000;
  clip-path: ellipse(100% 100% at center top);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/img/fondos/fondoManos.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2000;
}
.hero-logo {
  width: 480px;
  margin-top: 15em;
  margin-bottom: 7em;
  z-index: 20000;
}
.hero-text {
  font-size: 32px;
  font-family: "Nexa", sans-serif;
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  word-wrap: break-word;
  z-index: 10000;
}

@media (max-width: 1300px){
  .hero {
    height: 80vh;
  }
  .hero-logo {
    width: 300px;
    margin-top: 14em;
    margin-bottom: 8em;
  }
  .hero-text {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
  .hero-logo {
    width: 280px;
    margin-top: 8em;
    margin-bottom: 4em;
  }
  .hero-text {
    font-size: 22px;
  }
}

@media screen and (max-width: 480px) and (orientation: portrait) {
  .hero {
    height: 45vh;
  }
  .hero-logo {
    width: 160px;
    margin-top: 8em;
    margin-bottom: 3em;
  }
  .hero-text {
    font-size: 16px;
  }
}
