/* Custom Styles for Cadeteria Express */
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.hero-section {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(40, 40, 40, 0.85)), 
              url('https://images.unsplash.com/photo-1526367790999-0150786686a2?auto=format&fit=crop&w=1500&q=80') center/cover;
  min-height: 85vh;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: white;
  transform: scale(1.1);
}
