/* Visual Identity - Bicicletando Store Betim */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,700;1,900&display=swap');

:root {
  --color-slate-950: #020617;
  --color-slate-900: #0f172a;
  --color-slate-800: #1e293b;
  --color-sky-500: #0ea5e9;
  --color-sky-400: #38bdf8;
  --color-whatsapp: #22c55e;
  --color-whatsapp-hover: #16a34a;
}

html {
  scroll-behavior: smooth;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--color-slate-900);
  color: #f8fafc;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #090d16;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
  border: 2px solid #090d16;
}
::-webkit-scrollbar-thumb:hover {
  background: #38bdf8;
}

/* Background Gradients */
.hero-bg {
  background: linear-gradient(rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.96)), 
              url('https://images.unsplash.com/photo-1541625602330-2277a4c4b28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-green {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism & Blur Cards */
.card-blur {
  background: rgba(30, 41, 59, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-blur:hover {
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 12px 30px -10px rgba(14, 165, 233, 0.15);
}

/* Glow Effects */
.glow-sky {
  box-shadow: 0 0 25px -5px rgba(56, 189, 248, 0.3);
}

.glow-green {
  box-shadow: 0 0 25px -5px rgba(34, 197, 94, 0.4);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.05); }
}

.animate-pulse-soft {
  animation: pulse-soft 2.5s ease-in-out infinite;
}

/* Active Nav Links */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #38bdf8;
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Badge Styles */
.badge-pronta-entrega {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.badge-sob-encomenda {
  background: rgba(234, 179, 8, 0.15);
  color: #facc15;
  border: 1px solid rgba(234, 179, 8, 0.4);
}

.badge-montagem-propria {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.4);
}

/* WhatsApp Button Pulse */
.btn-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  background-color: var(--color-whatsapp);
  color: white;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.btn-whatsapp-float:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.6);
}

/* Modal styles */
.modal-overlay {
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(8px);
}
