
/* Estilos para el botón */

#openModal {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  width: 95%;
  background-color: rgb(72, 15, 163);
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 2rem;
  margin:12px 33px;
  border-radius: 15px;
  color: white;
  transition: all ease 1s;
}
#openModal:hover{
  background-color: gold;
  border-style: groove;
  border-color: rgb(0, 0, 0);
  color: rgb(3, 3, 3);
  font-size: 2.1rem;
  box-shadow: 10px 20px 38px gold;
}

/* Estilos para la ventana emergente */
.modal {
  display: none; /* Oculta la ventana por defecto */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8); /* Fondo oscuro con opacidad */
}

/* Estilos para el contenido de la ventana */
.modal-content {
  background-color: #fff;
  margin: 2% auto;
  padding: 20px;
  border: 1px solid #d5eb12;
  width: 80%;
  max-width: 500px;
}
.modal-content p{
  text-align: justify;
}
.modal-content .texto-sangria{
  padding-left: 70px;
}
.modal-content .texto-cierre-planPlatinum{
  border-style: groove;
  margin: 1px;
  text-align: justify;
  padding: 5px;
}
/* Estilos para el botón de cerrar */
.close {
  color: #a80000;
  float: right;
  font-size: 28px;
  font-weight: bold;
  border-style: groove;
  border-radius: 15%;
  margin: 0px 15px 0px;
  transition: all ease 0.7s;
}

.close:hover,
.close:focus {
  color: rgb(255, 255, 255);
  text-decoration: none;
  cursor: pointer;
  background-color: green;
  box-shadow: -3px 2px 5px 5px rgb(3, 3, 3);
}


