/* Botón que abre el modal */
.modal-btn {
  padding: 10px 18px;
  background-color: #0066ff;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin: 10px 0;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

/* Contenido del modal */
.modal-content {
  background: #fff;
  padding: 20px 25px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

/* Animación del modal */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.close {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 24px;
  cursor: pointer;
  color: #444;
}

/* Instrucciones */
.instructions {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Íconos y flechas */
.icon {
  width: 48px;
  height: 48px;
}
.arrow {
  width: 120px;
  margin-top: 8px;
}

.text h3 {
  margin: 0;
  font-size: 1.1em;
  color: #0066cc;
}

.text p {
  margin: 4px 0 0;
  font-size: 0.95em;
  color: #333;
}
