/* Estilo del modal */
#modalWeb {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modalWeb-container {
  height: 100%;
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.modalWeb-div {
  background-color: #fff;
  border: 7px solid #a78e29;
  height: 314px;
  width: 50vw;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.modalWeb-header {
  color: #a78e29;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin: 0;
}

.modalWeb-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000031;
}

.modalWeb-text h4 {
  font-size: 1.6rem;
  margin: 0;
}

.modalWeb-text p {
  font-size: 1.2rem;
  margin: 0;
}

.modalWeb-button {
  background-color: #000031;
  color: #fff;
  height: 45px;
  width: 230px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

a {
  text-decoration: none;
}

/* Estilo del modal */
#modalMobile {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modalMobile-container {
  height: 100%;
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.modalMobile-div {
  background-color: #fff;
  border: 7px solid #a78e29;
  height: 314px;
  width: 80vw;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.modalMobile-header {
  color: #a78e29;
  text-transform: uppercase;
  font-size: 1rem;
  margin: 0;
}

.modalMobile-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000031;
}

.modalMobile-text h4 {
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
  margin: 0;
}

.modalMobile-text p {
  font-size: 1rem;
  margin: 0;
}

.modalMobile-button {
  font-size: 1rem;
  background-color: #000031;
  color: #fff;
  height: 40px;
  width: 152px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

a {
  text-decoration: none;
}
