/* ========================= */
/* MODAL BIENVENIDA */
/* ========================= */

.welcome-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.welcome-box {
  background: #ffffff;
  width: 90%;
  max-width: 420px;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.3s ease;
}

.welcome-mascot {
  width: 120px;
  margin-bottom: 15px;
}

.welcome-box h2 {
  color: #ff4d00;
  margin-bottom: 10px;
}

.welcome-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
}

.small-text {
  font-size: 13px;
  color: #777;
}

#welcomeModal button {
  margin-top: 15px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #ff4d00, #ff7a00);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(255, 77, 0, 0.3);
}

#welcomeModal button:hover {
  transform: translateY(-2px);
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}