/* Overlay suave para visitantes */
.blurred-pedidos {
  filter: blur(6px);
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
  min-height: 70vh;
  transition: all 0.3s ease;
}

.pedidos-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding: 20px;
  padding-top: 0;
}

.overlay-card-pedidos {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(143, 180, 53, 0.15);
  max-width: 480px;
  border: 1px solid rgba(143, 180, 53, 0.2);
  pointer-events: auto;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.overlay-card-pedidos .icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00675d 0%, #00675d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(143, 180, 53, 0.3);
}

.overlay-card-pedidos .icon-wrapper i {
  font-size: 2.5rem;
  color: white;
}

.overlay-card-pedidos h4 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 12px;
}

.overlay-card-pedidos p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 8px;
}

.overlay-card-pedidos .benefits {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  margin: 20px 0;
  text-align: left;
}

.overlay-card-pedidos .benefits-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #6d767e;
  font-size: 0.95rem;
}

.overlay-card-pedidos .benefits-item:last-child {
  margin-bottom: 0;
}

.overlay-card-pedidos .benefits-item i {
  color: #00675d;
  margin-right: 10px;
  font-size: 1.1rem;
}

.overlay-card-pedidos .btn-primary {
  background: linear-gradient(135deg, #00675d 0%, #00675d 100%);
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(143, 180, 53, 0.3);
}

.overlay-card-pedidos .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(143, 180, 53, 0.4);
}
