/* HERO IMAGE */
.hero-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* CONTENEDOR GENERAL */
.gift-container {
  text-align: center;
  max-width: 900px;
  margin: 40px auto 20px auto;
  padding: 0 20px;
}

/* TITULAR */
.gift-title {
  color: #000;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

/* SUBTÍTULO */
.gift-subtitle {
  color: #000;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

/* PÁRRAFOS */
.gift-paragraph {
  color: #000;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

/* BOTONES */
.btn-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.gift-btn {
  border: 1px solid #000;
  background: #fff;
  padding: 10px 30px;
  text-decoration: none;
  color: #000;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
  transition: 0.3s;
}

/* HOVER */
.gift-btn:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}
.gift-btn:active {
  text-decoration: none;
}

/* RESPONSIVE */

.desktop {
  display: block !important;
}
.mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop {
    display: none !important;
  }
  .mobile {
    display: block !important;
  }
  .gift-btn {
    font-size: 16px;
  }
  .gift-paragraph {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0px;
  }
  .gift-subtitle {
    margin-top: 0px !important;
  }
}
