/* HERO */

.hero {
  padding: 0;
  background-image: url(../imagenes/hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  position: relative;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.4;
  z-index: 1;
}


@media (max-width : 768px) {
  .hero {
    background-attachment: scroll;
    padding-top: 60px;
  }

}

.hero-tag {
    font-size: 12px;
    letter-spacing: 0.25em;
    color: #5af0b8;
    margin-bottom: 20px;
    display: block;
    position: relative;
    padding-left: 42px;
    text-transform: uppercase;
}

.hero-tag::before {
    content: "";
    width: 32px;
    height: 1px;
    background: #5af0b8;
    position: absolute;
    top: 50%;
    left: 0;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}

.hero h1 span {
  color: #5af0b8;
}

/* SUBIR CONTENIDO */

.hero .container {
  position: relative;
  z-index: 2;
}

.hero p {
  margin-top: 20px;
  color: white;
  max-width: 450px;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.hero-visual {  
  border: 1px solid rgba(34, 255, 136, 0.2);
}

.hero-visual img {
  object-fit: cover;
  width: 100%;
  padding: 15px;
}