:root {
    /* colores */
    --primary: #fa6b09;
    --primary-dark: rgb(156, 69, 10);
    --secundary: #f4c300;
    --secundary-dark: #b18d00;
    --blue: #256fdc;
    --blue-dark: #1a4d99;
    --red: #ed000f;
    --red-dark: #92000a;
    --green: #04aa56;
    --gren-dark: #036434;

    /* Diseño */
    --bg: #f8fafc;
    --card: rgba(255, 255, 255, 0.75);
    --text: #1d1d1b;
    --text-muted: #64748b;
    --border: rgba(226, 232, 240, 0.8);
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    --blur: blur(16px);
}
/*Ventana modal*/
.modal {
  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);
  z-index: 3;
  overflow-wrap: break-word;
}

.modal-content {
  background-color: #ffffff61;
  backdrop-filter: blur(10px);
  margin: 35vh auto;
  padding: 20px;
  border: 1px solid #e8e4e4;
  width: 50%;
  text-align: center;
  border-radius: 15px;
  overflow-wrap: break-word;
  font-size: 1.3rem;
}
.modal-content p,
.modal-content h3,
.modal-content label {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: auto;
  color: #050505;
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 720px) {
  .modal-content {
    width: 85%;
    font-size: 1rem;
  }

  .modal-content p {
    text-align: center;
    word-break: break-word;
    font-size: 18px;
    color: #050505;
  }
  .modal-content h3 {
    font-size: 23px;
    color: #050505;
  }
  .modal-content label {
    font-size: 18px;
    font-weight: 500;
    color: #080808;
  }
}