/* Custom Styles for Agenda K */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  --primary-color: #4f46e5;
  --primary-hover: #4338ca;
  --bg-gradient-start: #0f172a;
  --bg-gradient-end: #1e1b4b;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  background-color: #0b0f19;
  color: #f3f4f6;
  min-height: 100vh;
}

/* Glassmorphism effects */
.glass-panel {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card:hover {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Deactivated Nickpage Card Styling */
.nickpage-card-deactivated {
  opacity: 0.55;
  filter: grayscale(0.4);
  background-color: rgba(15, 23, 42, 0.5) !important;
  border-color: rgba(239, 68, 68, 0.3) !important;
}

.nickpage-card-deactivated:hover {
  opacity: 0.85;
  filter: grayscale(0.1);
}

/* Pricing Banner Gradient */
.pricing-banner-gradient {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(147, 51, 234, 0.15) 50%, rgba(236, 72, 153, 0.15) 100%);
  border: 1px solid rgba(129, 140, 248, 0.3);
}

/* Phone Preview Simulator */
.phone-frame {
  width: 360px;
  height: 720px;
  border: 12px solid #1e293b;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 0 2px rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  background: #000;
}

.phone-notch {
  width: 140px;
  height: 24px;
  background: #1e293b;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 50;
}

/* Nickpage Layout Styles */
/* Layout 1: Card Moderno */
.nickpage-layout-card {
  max-width: 500px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

/* Layout 2: Minimalista Elegante */
.nickpage-layout-minimalist {
  max-width: 650px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  font-family: 'Playfair Display', serif;
}

/* Time slot buttons */
.time-slot-btn {
  transition: all 0.2s ease;
}
.time-slot-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.time-slot-btn.selected {
  background-color: var(--np-accent, #4f46e5) !important;
  color: #ffffff !important;
  border-color: var(--np-accent, #4f46e5) !important;
}

/* Badge styles */
.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-attended {
  background-color: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.badge-noshow {
  background-color: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.badge-registered {
  background-color: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
