/*** Hero ***/
#index-hero {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 400px;
  z-index: 0;
}

#index-hero img {
  position: absolute;
  width: 100%;
  height: inherit;
  object-fit: cover;
  z-index: -10;
}

#index-hero::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.05);
}

/* FORMULARIO HERO */
.hero-form-container {
  display: flex;
  justify-content: center;
  align-items: end;
  padding: 2rem 4rem;
  width: 100%;
  column-gap: 3rem;
  background-color: var(--white);
  color: var(--dark);
  border-radius: 1.5rem;
  z-index: 10;
}

.hero-form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
  width: 100%;
  align-items: end;
  gap: 3rem;
}

.hero-form-group {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 0.25rem;
}

.hero-form-group label {
  font-weight: 500;
}

.hero-form-input {
  padding: 0.75rem;
  width: 100%;
  font-size: small;
  border: 0.25px solid #e7e7e7;
  border-radius: 0.375rem;
}

.hero-form-input:hover {
  border: 0.25px solid var(--dark);
}

.hero-input-date {
  display: flex;
  column-gap: 0.5rem;
}

.hero-form-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15rem;
  height: 3rem;
  column-gap: 0.5rem;
  background-color: var(--terciario);
  color: var(--white);
  border: none;
  border-radius: 4rem;
}

.hero-form-button span {
  font-weight: 500;
}

.hero-form-button:hover {
  background-color: var(--primario);
}

.hero-title {
  position: relative;
  text-align: center;
  z-index: 20;
}

.hero-title h1 {
  color: var(--white);
  font-size: 2rem;
  text-shadow: 1px 1px 15px rgb(0, 0, 0, 0.25);
}

@media (max-width: 992px) {
  #index-hero {
    height: 600px;
  }

  .hero-title h1 {
    font-size: 1.25rem;
    text-shadow: 1px 1px 15px rgb(0, 0, 0, 0.25);
  }

  .hero-form-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 1rem 2rem;
    row-gap: 3rem;
  }

  .hero-form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 1.5rem;
  }

  .hero-form-group {
    width: 100%;
  }

  .hero-input-date {
    display: flex;
    flex-direction: row;
    column-gap: 0.5rem;
  }
}