  /* Colores personalizados */
  :root {
    --custom-blue-dark: #0A2463;
    --custom-blue-mid: #3E92CC;
    --custom-blue-light: #D8E6F3;
    --custom-gray: #F8F9FA;
    --custom-text: #212529;
  }
  
  /* Clases de colores */
  .bg-custom-blue-light { background-color: var(--custom-blue-light) !important; }
  .bg-custom-blue-mid { background-color: var(--custom-blue-mid) !important; }
  .bg-custom-blue-dark { background-color: var(--custom-blue-dark) !important; }
  .text-custom-blue-dark { color: var(--custom-blue-dark) !important; }
  .text-custom-blue-mid { color: var(--custom-blue-mid) !important; }
  .text-custom-text { color: var(--custom-text) !important; }
  
  /* Efectos hover */
  .hover-bg-custom-blue-light:hover { background-color: var(--custom-blue-light) !important; }
  .hover-text-custom-blue-dark:hover { color: var(--custom-blue-dark) !important; }
  
  /* Transiciones */
  .transition-colors {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  }
  
  .transition-shadow {
    transition: box-shadow 0.3s ease;
  }
  
  /* Sombras */
  .shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }
  
  .hover-shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }
  
  /* Bordes redondeados */
  .rounded-lg { border-radius: 0.5rem !important; }
  .rounded-md { border-radius: 0.375rem !important; }
  
  /* Espaciado */
  .space-y-6 > * + * { margin-top: 1.5rem; }
  .space-x-2 > * + * { margin-left: 0.5rem; }
  
  /* Tipografía */
  .text-xl { font-size: 1.25rem !important; }
  .text-3xl { font-size: 1.875rem !important; }
  .font-semibold { font-weight: 600 !important; }
  .font-medium { font-weight: 500 !important; }
  .font-bold { font-weight: 700 !important; }
  .leading-relaxed { line-height: 1.625 !important; }
  
  /* Layout */
  .grid { display: grid !important; }
  .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
  .flex { display: flex !important; }
  .inline-flex { display: inline-flex !important; }
  .items-center { align-items: center !important; }
  .items-end { align-items: end !important; }
  .justify-center { justify-content: center !important; }
  .w-full { width: 100% !important; }
  
  /* Responsive grid */
  @media (min-width: 768px) {
    .md-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    .md-py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
  }
  
  @media (min-width: 1024px) {
    .lg-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  }
  
  /* Espaciado */
  .gap-4 { gap: 1rem !important; }
  .p-6 { padding: 1.5rem !important; }
  .px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
  .py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
  .px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
  .p-2 { padding: 0.5rem !important; }
  .py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  .py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
  
  .mb-1 { margin-bottom: 0.25rem !important; }
  .mb-2 { margin-bottom: 0.5rem !important; }
  .mb-3 { margin-bottom: 0.75rem !important; }
  .mb-4 { margin-bottom: 1rem !important; }
  .mb-8 { margin-bottom: 2rem !important; }
  .mt-8 { margin-top: 2rem !important; }
  .mt-12 { margin-top: 3rem !important; }
  .mr-2 { margin-right: 0.5rem !important; }
  .mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }
  
  /* Bordes */
  .border { border-width: 1px !important; }
  .border-gray-300 { border-color: #d1d5db !important; }
  
  /* Colores de texto */
  .text-gray-600 { color: #4b5563 !important; }
  .text-gray-700 { color: #374151 !important; }
  .text-white { color: #ffffff !important; }
  .bg-white { background-color: #ffffff !important; }
  .bg-gray-500 { background-color: #6b7280 !important; }
  
  /* Efectos hover */
  .hover-bg-gray-600:hover { background-color: #4b5563 !important; }
  .hover-bg-custom-blue-light:hover { background-color: var(--custom-blue-light) !important; }
  
  /* Focus states */
  .focus-outline-none:focus { outline: 2px solid transparent !important; outline-offset: 2px !important; }
  .focus-ring-2:focus { 
    box-shadow: 0 0 0 2px var(--custom-blue-mid) !important;
  }
  .focus-border-custom-blue-mid:focus { border-color: var(--custom-blue-mid) !important; }
  
  /* Estados disabled */
  .disabled-opacity-50:disabled { opacity: 0.5 !important; }
  .disabled-cursor-not-allowed:disabled { cursor: not-allowed !important; }
  
  /* Container */
  .container { width: 100% !important; }
  @media (min-width: 640px) { .container { max-width: 640px !important; } }
  @media (min-width: 768px) { .container { max-width: 768px !important; } }
  @media (min-width: 1024px) { .container { max-width: 1024px !important; } }
  @media (min-width: 1280px) { .container { max-width: 1280px !important; } }
  .mx-auto { margin-left: auto !important; margin-right: auto !important; }
  .px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  
  /* Utilidades */
  .text-center { text-align: center !important; }
  .block { display: block !important; }
  .text-sm { font-size: 0.875rem !important; }
  .h-4 { height: 1rem !important; }
  .h-5 { height: 1.25rem !important; }
  .w-4 { width: 1rem !important; }
  .w-5 { width: 1.25rem !important; }
  
  /* Sombras */
  .shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; }
  
  /* Flexbox utilities */
  .flex-wrap { flex-wrap: wrap !important; }
  .gap-2 { gap: 0.5rem !important; }
  
  /* Estilos para palabras clave */
  .keyword-tag {
    display: inline-flex !important;
    align-items: center !important;
    padding: 0.15rem 0.5rem !important;
    border-radius: 0.375rem !important;
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
  }
  
  .keyword-tag:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  }
  
  .keyword-tag-type {
    background-color: #3E92CC !important;
    color: white !important;
  }
  
  .keyword-tag-agent {
    background-color: hsl(205, 82%, 23%) !important;
    color: white !important;
  }

  .keyword-tag-localization {
    background-color: #021733 !important;
  }

  /* Estilos adicionales para entradas recientes */
  .hover-scale-105:hover {
    transform: scale(1.05) !important;
  }
  
  .transition-transform {
    transition: transform 0.3s ease !important;
  }
  
  .duration-300 {
    transition-duration: 0.3s !important;
  }
  
  .btn-custom-blue-mid {
    background-color: var(--custom-blue-mid) !important;
    border-color: var(--custom-blue-mid) !important;
  }
  
  .btn-custom-blue-mid:hover {
    background-color: var(--custom-blue-dark) !important;
    border-color: var(--custom-blue-dark) !important;
  }
  
  .hover-bg-custom-blue-dark:hover {
    background-color: var(--custom-blue-dark) !important;
  }
  
  .text-decoration-none {
    text-decoration: none !important;
  }
  
  .btn-link {
    background: none !important;
    border: none !important;
    color: var(--custom-blue-mid) !important;
  }
  
  .btn-link:hover {
    color: var(--custom-blue-dark) !important;
    text-decoration: none !important;
  }
  
  /* Mejoras para las tarjetas */
  .card {
    transition: all 0.3s ease !important;
  }
  
  .card:hover {
    transform: translateY(-5px) !important;
  }
  
  /* Responsive text sizes */
  @media (min-width: 768px) {
    .text-3xl {
      font-size: 1.875rem !important;
    }
  }
  
  @media (max-width: 767px) {
    .text-3xl {
      font-size: 1.5rem !important;
    }
  }

  /* Banda azul para el lugar en las tarjetas */
  .location-band {
    background-color: var(--custom-blue-dark) !important;
    color: white !important;
    padding: 0.3rem !important;
    text-align: center !important;
    font-weight: 500 !important;
    font-size: 0.875rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  
  .location-band i {
    color: rgba(255, 255, 255, 0.8) !important;
  }
  
  /* Asegurar que la banda esté siempre en la parte inferior */
  .card {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .card-body {
    flex: 1 !important;
  }
  
  .location-band {
    margin-top: auto !important;
  }


