.modal-fondo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  /* evita scroll general */
}

.deseo {
  margin-top: -20px;
}

.modal-alien {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 750px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  /* quita scroll horizontal */
  box-sizing: border-box;
  padding: 20px;
}




.cartel,
.deseo-div {
  position: relative;
  /* o simplemente elimina la línea */
  height: auto;
  width: 685px;
  background: linear-gradient(to bottom, #ff8000, #ffcc00);
  border-radius: 30px;
  padding: 40px;
  text-align: center;
  font-family: 'Arial Black', sans-serif;
  color: black;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cartel,
.deseo-div {
  background: linear-gradient(to bottom, #ff8000, #ffcc00);
  width: 100%;
  max-width: 685px;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
}

.banner-modal img {

  border-radius: 10px;

}



.options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.option-btn {
  background: rgb(60, 50, 50);
  background: linear-gradient(90deg, rgba(60, 50, 50, 1) 0%, rgba(222, 222, 236, 0.9444152661064426) 0%, rgba(42, 39, 39, 1) 27%);
  color: #fff;
  border: solid;
  border-color: #ef6309;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  text-align: center;
  flex: 1 1 calc(23.333% - 20px);
  /* Para pantallas grandes */
  max-width: 180px;
  transition: background 0.3s;
  font-family: "hemi head";

}

.deseo {
  font-family: "hemi head";
  color: white;
}

.main-btn {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .banner-modal img {
    max-height: 270px;
    margin-top: -10px;
  }

  .deseo {
    font-size: 18px;
    margin-top: -10px;
  }

  .modal-alien {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* espacio entre cartel y deseo-div */
    align-items: center;
    box-sizing: border-box;
  }

  .cartel,
  .deseo-div {
    width: 90%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 30px 20px;
    box-sizing: border-box;
    border-radius: 20px;
  }

  .main-btn {
    font-size: 16px;
    padding: 12px 20px;
    width: 90%;
    max-width: 100%;
    margin: 10px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
  }

  .main-btn img {
    height: 20px;
    width: auto;
  }

  .options {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .option-btn {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    padding: 12px;
    box-sizing: border-box;
  }

  .cliente,
  .deseo {
    font-size: 18px;
    text-align: center;
  }
}