/* ==========================================================================
   Estilos Personalizados - Olive Branch Health Care International
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --color-olive-50: #f4f7f1;
  --color-olive-100: #e6eedf;
  --color-olive-500: #557b3e;
  --color-olive-600: #446430;
  --color-olive-700: #364e26;
  --color-olive-800: #2c3e21;

  --color-teal-500: #0d9488;
  --color-teal-600: #0f766e;
  
  --color-gold-500: #f59e0b;
  --color-gold-600: #d97706;
}

body {
  font-family: var(--font-body);
  color: #1e293b;
  background-color: #f8fafc;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
}

/* Gradientes de Identidad Olive HCI */
.bg-olive-gradient {
  background: linear-gradient(135deg, #364e26 0%, #4a6b35 50%, #0f766e 100%);
}

.text-olive-gradient {
  background: linear-gradient(135deg, #2d421e 0%, #4a6b35 60%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Hero Video Overlay */
.hero-video-overlay {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.65) 50%, rgba(15, 23, 42, 0.85) 100%);
}

.hero-slide {
  transition: opacity 1000ms cubic-bezier(0.4, 0, 0.2, 1), transform 1200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}

/* Ocultar barra de scroll para sliders horizontales pero permitir scroll táctil */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Animaciones suaves */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(74, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(74, 107, 53, 0.75);
  }
}

.pulse-glow {
  animation: pulseGlow 3s infinite ease-in-out;
}

/* Estilos de Insignia de Estado */
.badge-completed {
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.badge-active {
  background-color: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.badge-planning {
  background-color: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

/* Efectos de Hover en Tarjetas */
.card-hover-effect {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover-effect:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Controles de Carrousel */
.carousel-btn {
  transition: all 0.2s ease;
}
.carousel-btn:hover {
  transform: scale(1.1);
}
