/* Unie Canarias - Custom styles on top of Tailwind */
:root {
  --orange: #f59e0b;
  --orange-dark: #d97706;
  --orange-light: #fbbf24;
  --navy: #0f172a;
  --slate: #1e293b;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Logo circle */
.logo-circle {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

/* Hero gradients */
.hero-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #334155 100%);
}

.orange-gradient {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Cards hover */
.card-hover {
  transition: all 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

/* Feature icons */
.feature-icon {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #d97706;
}

/* Intranet mock dashboard */
.dashboard-mock {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
}

/* Sticky header */
.header-scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  transition: all 0.25s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.5);
}

.btn-outline {
  border: 2px solid #f59e0b;
  color: #f59e0b;
  transition: all 0.25s ease;
}
.btn-outline:hover {
  background: #f59e0b;
  color: white;
}

/* Mobile menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-menu.open {
  max-height: 500px;
}

/* Form focus */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
  animation: fadeInUp 0.7s ease forwards;
}

/* Stats counter style */
.stat-number {
  font-variant-numeric: tabular-nums;
}

/* Footer */
.footer-link:hover {
  color: #fbbf24;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
  }
}
