.modal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal h2 {
  margin-bottom: 20px;
}

.modal p {
  padding: 20px 20px;
}

/* Estilos para el contenido del modal */
.modal-content {
  background: url('../../assets/img/backgrounds/footer_background.png');
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Botón de cerrar */
.close {
  float: right;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 768px) { 
  .modal-content {
    width: 200px;
  }
}
