.overlay-festivo {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fade-in-bg 0.4s ease-out;
}

.popup-festivo {
  background: #fffaf2;
  color: #333;
  padding: 20px 24px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  max-width: 90%;
  font-size: 1rem;
  animation: pop-in 0.4s ease-out;
}

.popup-festivo i {
  font-size: 1.5rem;
}

.cerrar-festivo {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #666;
}
.cerrar-festivo:hover {
  color: #333;
}

@keyframes pop-in {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes fade-in-bg {
  from { opacity: 0; }
  to { opacity: 1; }
}
