@charset "UTF-8";
/**
 * Main SCSS - Hunter Price Panel Synergia
 * 
 * Archivo principal que importa todos los módulos SCSS
 * Este archivo se compila a assets/css/hp-styles.css
 * 
 * @package HunterPricePanel
 * @author Mariano Romero - Alrit
 * @since 1.0.0
 */
/* ==========================================================================
   CONFIGURACIÓN Y UTILIDADES
   ========================================================================== */
/**
 * Variables Globales - Hunter Price Panel Synergia
 * 
 * Definición de todas las variables CSS/SCSS del sistema
 * Paleta de colores: Verde y Azul (personalizada Hunter Price)
 * 
 * @package HunterPricePanel
 * @author Mariano Romero - Alrit
 * @since 1.0.0
 */
/* ==========================================================================
   COLORES PRINCIPALES
   ========================================================================== */
/* ==========================================================================
   ESCALA DE GRISES
   ========================================================================== */
/* ==========================================================================
   TIPOGRAFÍA
   ========================================================================== */
/* ==========================================================================
   ESPACIADO
   ========================================================================== */
/* ==========================================================================
   BORDES Y RADIOS
   ========================================================================== */
/* ==========================================================================
   SOMBRAS
   ========================================================================== */
/* ==========================================================================
   TRANSICIONES Y ANIMACIONES
   ========================================================================== */
/* ==========================================================================
   Z-INDEX
   ========================================================================== */
/* ==========================================================================
   BREAKPOINTS (Mobile First)
   ========================================================================== */
/* ==========================================================================
   GRID
   ========================================================================== */
/* ==========================================================================
   COMPONENTES - CONFIGURACIÓN ESPECÍFICA
   ========================================================================== */
/* ==========================================================================
   COLORES DE ESTADO PARA GRÁFICAS
   ========================================================================== */
/* ==========================================================================
   MAPA DE COLORES (para loops y funciones)
   ========================================================================== */
/* ==========================================================================
   MAPA DE ESPACIADO (para loops)
   ========================================================================== */
/**
 * Funciones SCSS Reutilizables - Hunter Price Panel Synergia
 * 
 * Colección de funciones útiles para cálculos y conversiones
 * Simplifica operaciones comunes en SCSS
 * 
 * @package HunterPricePanel
 * @author Mariano Romero - Alrit
 * @since 1.0.0
 */
/* ==========================================================================
   CONVERSIÓN DE UNIDADES
   ========================================================================== */
/**
 * Convierte px a rem
 * @param {number} $px - Valor en píxeles
 * @param {number} $base - Tamaño base de fuente (default: 16px)
 * @return {number} Valor en rem
 */
/**
 * Convierte px a em
 * @param {number} $px - Valor en píxeles
 * @param {number} $context - Contexto del tamaño de fuente
 * @return {number} Valor en em
 */
/* ==========================================================================
   COLORES
   ========================================================================== */
/**
 * Obtiene un color del mapa de colores
 * @param {string} $color-name - Nombre del color
 * @return {color} Color del mapa
 */
/**
 * Transparencia de color
 * @param {color} $color - Color base
 * @param {number} $opacity - Opacidad (0-1)
 * @return {color} Color con transparencia
 */
/**
 * Mezcla dos colores
 * @param {color} $color1 - Primer color
 * @param {color} $color2 - Segundo color
 * @param {number} $weight - Peso del primer color (0-100)
 * @return {color} Color mezclado
 */
/**
 * Tinte - Mezcla con blanco
 * @param {color} $color - Color base
 * @param {number} $percentage - Porcentaje de blanco
 * @return {color} Color aclarado
 */
/**
 * Sombra - Mezcla con negro
 * @param {color} $color - Color base
 * @param {number} $percentage - Porcentaje de negro
 * @return {color} Color oscurecido
 */
/* ==========================================================================
   ESPACIADO
   ========================================================================== */
/**
 * Obtiene un valor de espaciado del mapa
 * @param {string} $spacing-key - Clave del espaciado
 * @return {number} Valor del espaciado
 */
/**
 * Multiplicador de espaciado
 * @param {number} $base - Valor base
 * @param {number} $multiplier - Multiplicador
 * @return {number} Valor multiplicado
 */
/* ==========================================================================
   CÁLCULOS MATEMÁTICOS
   ========================================================================== */
/**
 * Potencia
 * @param {number} $base - Base
 * @param {number} $exponent - Exponente
 * @return {number} Resultado
 */
/**
 * Calcula porcentaje
 * @param {number} $value - Valor
 * @param {number} $total - Total
 * @return {number} Porcentaje
 */
/**
 * Clamp - Limita valor entre mín y máx
 * @param {number} $value - Valor a limitar
 * @param {number} $min - Valor mínimo
 * @param {number} $max - Valor máximo
 * @return {number} Valor limitado
 */
/* ==========================================================================
   STRINGS
   ========================================================================== */
/**
 * Reemplaza caracteres en string
 * @param {string} $string - String original
 * @param {string} $search - Carácter a buscar
 * @param {string} $replace - Carácter de reemplazo
 * @return {string} String modificado
 */
/**
 * Convierte string a lowercase
 * @param {string} $string - String a convertir
 * @return {string} String en minúsculas
 */
/**
 * Convierte string a uppercase
 * @param {string} $string - String a convertir
 * @return {string} String en mayúsculas
 */
/* ==========================================================================
   LISTAS Y MAPAS
   ========================================================================== */
/**
 * Verifica si un mapa contiene una clave
 * @param {map} $map - Mapa a verificar
 * @param {string} $key - Clave a buscar
 * @return {boolean} True si existe
 */
/**
 * Obtiene valor de mapa con fallback
 * @param {map} $map - Mapa
 * @param {string} $key - Clave
 * @param {any} $fallback - Valor por defecto
 * @return {any} Valor del mapa o fallback
 */
/**
 * Deep get - Obtiene valor anidado en mapa
 * @param {map} $map - Mapa principal
 * @param {list} $keys - Lista de claves anidadas
 * @return {any} Valor anidado
 */
/* ==========================================================================
   Z-INDEX
   ========================================================================== */
/**
 * Calcula z-index desde un mapa
 * @param {string} $layer - Nombre de la capa
 * @return {number} Valor de z-index
 */
/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
/**
 * Obtiene valor de breakpoint
 * @param {string} $name - Nombre del breakpoint
 * @return {number} Valor del breakpoint
 */
/* ==========================================================================
   GRID
   ========================================================================== */
/**
 * Calcula ancho de columna de grid
 * @param {number} $columns - Número de columnas
 * @param {number} $total-columns - Total de columnas en grid
 * @return {percentage} Ancho en porcentaje
 */
/* ==========================================================================
   SOMBRAS
   ========================================================================== */
/**
 * Genera sombra personalizada
 * @param {number} $x - Offset X
 * @param {number} $y - Offset Y
 * @param {number} $blur - Blur radius
 * @param {color} $color - Color de la sombra
 * @param {number} $opacity - Opacidad
 * @return {shadow} Box shadow
 */
/* ==========================================================================
   UTILIDADES DE TIEMPO
   ========================================================================== */
/**
 * Convierte milisegundos a segundos
 * @param {number} $ms - Milisegundos
 * @return {number} Segundos
 */
/**
 * Convierte segundos a milisegundos
 * @param {number} $s - Segundos
 * @return {number} Milisegundos
 */
/* ==========================================================================
   VALIDACIONES
   ========================================================================== */
/**
 * Verifica si un valor es un número
 * @param {any} $value - Valor a verificar
 * @return {boolean} True si es número
 */
/**
 * Verifica si un valor es un color
 * @param {any} $value - Valor a verificar
 * @return {boolean} True si es color
 */
/**
 * Verifica si un valor es una lista
 * @param {any} $value - Valor a verificar
 * @return {boolean} True si es lista
 */
/* ==========================================================================
   STRIP UNITS
   ========================================================================== */
/**
 * Remueve unidades de un valor
 * @param {number} $value - Valor con unidades
 * @return {number} Valor sin unidades
 */
/**
 * Mixins Reutilizables - Hunter Price Panel Synergia
 * 
 * Colección de mixins SCSS para código DRY y mantenible
 * Incluye responsive, flexbox, grid, animaciones y más
 * 
 * @package HunterPricePanel
 * @author Mariano Romero - Alrit
 * @since 1.0.0
 */
/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
/**
 * Media query para pantallas pequeñas y mayores
 * @param {string} $breakpoint - Nombre del breakpoint
 */
/**
 * Media query para pantallas menores
 */
/**
 * Media query entre dos breakpoints
 */
/* ==========================================================================
   FLEXBOX
   ========================================================================== */
/**
 * Flex container básico
 */
/**
 * Flex center (horizontal y vertical)
 */
/**
 * Flex column
 */
/* ==========================================================================
   GRID
   ========================================================================== */
/**
 * Grid básico
 */
/**
 * Grid responsive automático
 */
/* ==========================================================================
   TIPOGRAFÍA
   ========================================================================== */
/**
 * Truncate text con ellipsis
 */
/**
 * Truncate multiline
 */
/**
 * Font smoothing
 */
/* ==========================================================================
   POSICIONAMIENTO
   ========================================================================== */
/**
 * Absolute center
 */
/**
 * Cover absoluto (fill parent)
 */
/**
 * Fixed cover
 */
/* ==========================================================================
   SOMBRAS Y ELEVACIÓN
   ========================================================================== */
/**
 * Box shadow con niveles
 */
/**
 * Text shadow suave
 */
/* ==========================================================================
   TRANSICIONES Y ANIMACIONES
   ========================================================================== */
/**
 * Transición estándar
 */
/**
 * Múltiples transiciones
 */
/**
 * Animación de fade in
 */
/* ==========================================================================
   BOTONES
   ========================================================================== */
/**
 * Botón base
 */
/**
 * Botón con variante de color
 */
/**
 * Botón outline
 */
/* ==========================================================================
   CARDS
   ========================================================================== */
/**
 * Card base
 */
/**
 * Card hover effect
 */
/* ==========================================================================
   INPUTS Y FORMS
   ========================================================================== */
/**
 * Input base
 */
/* ==========================================================================
   UTILIDADES
   ========================================================================== */
/**
 * Clearfix
 */
/**
 * Ocultar visualmente pero accesible
 */
/**
 * Reset de lista
 */
/**
 * Aspect ratio
 */
/**
 * Scrollbar personalizado
 */
/**
 * Placeholder styling
 */
/**
 * Selection styling
 */
/* ==========================================================================
   GRADIENTES
   ========================================================================== */
/**
 * Gradiente lineal
 */
/**
 * Gradiente radial
 */
/* ==========================================================================
   BASE Y RESET
   ========================================================================== */
/**
 * Base Styles - Hunter Price Panel Synergia
 * 
 * Reset CSS y estilos base del sistema
 * Normalización cross-browser
 * 
 * @package HunterPricePanel
 * @author Mariano Romero - Alrit
 * @since 1.0.0
 */
/* ==========================================================================
   BOX SIZING
   ========================================================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ==========================================================================
   RESET BÁSICO
   ========================================================================== */
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1A1A1A;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   TIPOGRAFÍA BASE
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.25;
  color: #1A1A1A;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* ==========================================================================
   ENLACES
   ========================================================================== */
a {
  color: #0066CC;
  text-decoration: none;
  -webkit-transition: color 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: color 200ms cubic-bezier(0, 0, 0.2, 1);
}
a:hover {
  color: #0059B3;
  text-decoration: underline;
}
a:focus {
  outline: 2px solid #0066CC;
  outline-offset: 2px;
}

/* ==========================================================================
   LISTAS
   ========================================================================== */
ul, ol {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.25rem;
}

/* ==========================================================================
   IMÁGENES Y MEDIA
   ========================================================================== */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

/* ==========================================================================
   TABLAS
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th {
  text-align: left;
  font-weight: 600;
}

/* ==========================================================================
   FORMULARIOS
   ========================================================================== */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* ==========================================================================
   UTILIDADES DE ACCESIBILIDAD
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

[hidden] {
  display: none !important;
}

/* ==========================================================================
   SELECCIÓN DE TEXTO
   ========================================================================== */
::-moz-selection {
  background-color: #0066CC;
  color: #FFFFFF;
}
::selection {
  background-color: #0066CC;
  color: #FFFFFF;
}

::-moz-selection {
  background-color: #0066CC;
  color: #FFFFFF;
}

/* ==========================================================================
   FOCUS VISIBLE (Accesibilidad)
   ========================================================================== */
:focus-visible {
  outline: 2px solid #0066CC;
  outline-offset: 2px;
}

/* ==========================================================================
   REDUCIR MOVIMIENTO (Accesibilidad)
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ==========================================================================
   SCROLLBAR PERSONALIZADO
   ========================================================================== */
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background: #F5F5F5;
}
*::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 9999px;
}
*::-webkit-scrollbar-thumb:hover {
  background: rgb(127.5, 127.5, 127.5);
}

/* ==========================================================================
   CÓDIGO Y PRE
   ========================================================================== */
code,
kbd,
samp,
pre {
  font-family: "Courier New", Courier, monospace;
  font-size: 1em;
}

code {
  padding: 0.2em 0.4em;
  font-size: 85%;
  color: #00A382;
  background-color: #F5F5F5;
  border-radius: 0.25rem;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  padding: 1rem;
  overflow: auto;
  font-size: 87.5%;
  color: #1A1A1A;
  background-color: #FAFAFA;
  border: 1px solid #E0E0E0;
  border-radius: 0.375rem;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
  border-radius: 0;
}

/* ==========================================================================
   HR
   ========================================================================== */
hr {
  margin: 1.5rem 0;
  border: 0;
  border-top: 1px solid #E0E0E0;
}

/* ==========================================================================
   BLOCKQUOTE
   ========================================================================== */
blockquote {
  margin: 0 0 1rem;
  padding: 1rem 1.5rem;
  border-left: 4px solid #0066CC;
  background-color: #FAFAFA;
  font-style: italic;
}

/* ==========================================================================
   MARK
   ========================================================================== */
mark {
  padding: 0.2em;
  background-color: #E6F9F4;
  color: #1A1A1A;
}

/* ==========================================================================
   SMALL
   ========================================================================== */
small {
  font-size: 80%;
}

/**
 * Typography Styles - Hunter Price Panel Synergia
 * 
 * Clases de utilidad para tipografía
 * Tamaños, pesos, estilos y alineación
 * 
 * @package HunterPricePanel
 * @author Mariano Romero - Alrit
 * @since 1.0.0
 */
/* ==========================================================================
   FONT SIZES
   ========================================================================== */
.text-xs {
  font-size: 0.75rem !important;
}

.text-sm {
  font-size: 0.875rem !important;
}

.text-base {
  font-size: 1rem !important;
}

.text-lg {
  font-size: 1.125rem !important;
}

.text-xl {
  font-size: 1.25rem !important;
}

.text-2xl {
  font-size: 1.5rem !important;
}

.text-3xl {
  font-size: 1.875rem !important;
}

.text-4xl {
  font-size: 2.25rem !important;
}

.text-5xl {
  font-size: 3rem !important;
}

/* ==========================================================================
   FONT WEIGHTS
   ========================================================================== */
.font-light {
  font-weight: 300 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.font-extrabold {
  font-weight: 800 !important;
}

/* ==========================================================================
   TEXT ALIGNMENT
   ========================================================================== */
.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

/* ==========================================================================
   TEXT TRANSFORM
   ========================================================================== */
.uppercase {
  text-transform: uppercase !important;
}

.lowercase {
  text-transform: lowercase !important;
}

.capitalize {
  text-transform: capitalize !important;
}

.normal-case {
  text-transform: none !important;
}

/* ==========================================================================
   LINE HEIGHTS
   ========================================================================== */
.leading-none {
  line-height: 1 !important;
}

.leading-tight {
  line-height: 1.25 !important;
}

.leading-snug {
  line-height: 1.375 !important;
}

.leading-normal {
  line-height: 1.5 !important;
}

.leading-relaxed {
  line-height: 1.625 !important;
}

.leading-loose {
  line-height: 2 !important;
}

/* ==========================================================================
   TEXT COLORS
   ========================================================================== */
.text-primary-blue {
  color: #0066CC !important;
}

.text-primary-green {
  color: #00B894 !important;
}

.text-success {
  color: #00B894 !important;
}

.text-error {
  color: #E74C3C !important;
}

.text-warning {
  color: #FFA500 !important;
}

.text-gray-900 {
  color: #1A1A1A !important;
}

.text-gray-800 {
  color: #333333 !important;
}

.text-gray-700 {
  color: #4D4D4D !important;
}

.text-gray-600 {
  color: #666666 !important;
}

.text-gray-500 {
  color: #808080 !important;
}

.text-white {
  color: #FFFFFF !important;
}

/* ==========================================================================
   TEXT UTILITIES
   ========================================================================== */
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.truncate-2-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-3-lines {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/**
 * Utility Classes - Hunter Price Panel Synergia
 * 
 * Clases de utilidad para spacing, display, flexbox, etc.
 * Sistema atómico de utilidades
 * 
 * @package HunterPricePanel
 * @author Mariano Romero - Alrit
 * @since 1.0.0
 */
/* ==========================================================================
   DISPLAY
   ========================================================================== */
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.d-grid {
  display: grid !important;
}

/* ==========================================================================
   FLEXBOX
   ========================================================================== */
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.justify-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 0.75rem !important;
}

.gap-4 {
  gap: 1rem !important;
}

.gap-6 {
  gap: 1.5rem !important;
}

.gap-8 {
  gap: 2rem !important;
}

/* ==========================================================================
   MARGIN Y PADDING
   ========================================================================== */
.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.m-5 {
  margin: 1.25rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.ml-5 {
  margin-left: 1.25rem !important;
}

.mr-5 {
  margin-right: 1.25rem !important;
}

.mx-5 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}

.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.p-5 {
  padding: 1.25rem !important;
}

.pt-5 {
  padding-top: 1.25rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem !important;
}

.pl-5 {
  padding-left: 1.25rem !important;
}

.pr-5 {
  padding-right: 1.25rem !important;
}

.px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.m-6 {
  margin: 1.5rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.ml-6 {
  margin-left: 1.5rem !important;
}

.mr-6 {
  margin-right: 1.5rem !important;
}

.mx-6 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.p-6 {
  padding: 1.5rem !important;
}

.pt-6 {
  padding-top: 1.5rem !important;
}

.pb-6 {
  padding-bottom: 1.5rem !important;
}

.pl-6 {
  padding-left: 1.5rem !important;
}

.pr-6 {
  padding-right: 1.5rem !important;
}

.px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.m-8 {
  margin: 2rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.ml-8 {
  margin-left: 2rem !important;
}

.mr-8 {
  margin-right: 2rem !important;
}

.mx-8 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.p-8 {
  padding: 2rem !important;
}

.pt-8 {
  padding-top: 2rem !important;
}

.pb-8 {
  padding-bottom: 2rem !important;
}

.pl-8 {
  padding-left: 2rem !important;
}

.pr-8 {
  padding-right: 2rem !important;
}

.px-8 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.m-10 {
  margin: 2.5rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.ml-10 {
  margin-left: 2.5rem !important;
}

.mr-10 {
  margin-right: 2.5rem !important;
}

.mx-10 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.p-10 {
  padding: 2.5rem !important;
}

.pt-10 {
  padding-top: 2.5rem !important;
}

.pb-10 {
  padding-bottom: 2.5rem !important;
}

.pl-10 {
  padding-left: 2.5rem !important;
}

.pr-10 {
  padding-right: 2.5rem !important;
}

.px-10 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.m-12 {
  margin: 3rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.ml-12 {
  margin-left: 3rem !important;
}

.mr-12 {
  margin-right: 3rem !important;
}

.mx-12 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-12 {
  padding: 3rem !important;
}

.pt-12 {
  padding-top: 3rem !important;
}

.pb-12 {
  padding-bottom: 3rem !important;
}

.pl-12 {
  padding-left: 3rem !important;
}

.pr-12 {
  padding-right: 3rem !important;
}

.px-12 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.m-16 {
  margin: 4rem !important;
}

.mt-16 {
  margin-top: 4rem !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.ml-16 {
  margin-left: 4rem !important;
}

.mr-16 {
  margin-right: 4rem !important;
}

.mx-16 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my-16 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.p-16 {
  padding: 4rem !important;
}

.pt-16 {
  padding-top: 4rem !important;
}

.pb-16 {
  padding-bottom: 4rem !important;
}

.pl-16 {
  padding-left: 4rem !important;
}

.pr-16 {
  padding-right: 4rem !important;
}

.px-16 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.py-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.m-20 {
  margin: 5rem !important;
}

.mt-20 {
  margin-top: 5rem !important;
}

.mb-20 {
  margin-bottom: 5rem !important;
}

.ml-20 {
  margin-left: 5rem !important;
}

.mr-20 {
  margin-right: 5rem !important;
}

.mx-20 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.my-20 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.p-20 {
  padding: 5rem !important;
}

.pt-20 {
  padding-top: 5rem !important;
}

.pb-20 {
  padding-bottom: 5rem !important;
}

.pl-20 {
  padding-left: 5rem !important;
}

.pr-20 {
  padding-right: 5rem !important;
}

.px-20 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.py-20 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.m-24 {
  margin: 6rem !important;
}

.mt-24 {
  margin-top: 6rem !important;
}

.mb-24 {
  margin-bottom: 6rem !important;
}

.ml-24 {
  margin-left: 6rem !important;
}

.mr-24 {
  margin-right: 6rem !important;
}

.mx-24 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.my-24 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.p-24 {
  padding: 6rem !important;
}

.pt-24 {
  padding-top: 6rem !important;
}

.pb-24 {
  padding-bottom: 6rem !important;
}

.pl-24 {
  padding-left: 6rem !important;
}

.pr-24 {
  padding-right: 6rem !important;
}

.px-24 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.py-24 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ==========================================================================
   WIDTH Y HEIGHT
   ========================================================================== */
.w-full {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.w-screen {
  width: 100vw !important;
}

.h-full {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.h-screen {
  height: 100vh !important;
}

.min-h-screen {
  min-height: 100vh !important;
}

.max-w-full {
  max-width: 100% !important;
}

/* ==========================================================================
   POSITION
   ========================================================================== */
.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

.sticky {
  position: sticky !important;
}

/* ==========================================================================
   OVERFLOW
   ========================================================================== */
.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

/* ==========================================================================
   BORDER RADIUS
   ========================================================================== */
.rounded-none {
  border-radius: 0 !important;
}

.rounded-sm {
  border-radius: 0.25rem !important;
}

.rounded {
  border-radius: 0.375rem !important;
}

.rounded-md {
  border-radius: 0.5rem !important;
}

.rounded-lg {
  border-radius: 0.75rem !important;
}

.rounded-xl {
  border-radius: 1rem !important;
}

.rounded-full {
  border-radius: 9999px !important;
}

/* ==========================================================================
   SHADOWS
   ========================================================================== */
.shadow-none {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.shadow-sm {
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.shadow {
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.shadow-md {
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.shadow-xl {
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

/* ==========================================================================
   BACKGROUND COLORS
   ========================================================================== */
.bg-primary-blue {
  background-color: #0066CC !important;
}

.bg-primary-green {
  background-color: #00B894 !important;
}

.bg-success {
  background-color: #00B894 !important;
}

.bg-error {
  background-color: #E74C3C !important;
}

.bg-warning {
  background-color: #FFA500 !important;
}

.bg-white {
  background-color: #FFFFFF !important;
}

.bg-gray-50 {
  background-color: #FAFAFA !important;
}

.bg-gray-100 {
  background-color: #F5F5F5 !important;
}

.bg-gray-200 {
  background-color: #E0E0E0 !important;
}

/* ==========================================================================
   OPACITY
   ========================================================================== */
.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

/* ==========================================================================
   CURSOR
   ========================================================================== */
.cursor-pointer {
  cursor: pointer !important;
}

.cursor-default {
  cursor: default !important;
}

.cursor-not-allowed {
  cursor: not-allowed !important;
}

/* ==========================================================================
   POINTER EVENTS
   ========================================================================== */
.pointer-events-none {
  pointer-events: none !important;
}

.pointer-events-auto {
  pointer-events: auto !important;
}

/* ==========================================================================
   USER SELECT
   ========================================================================== */
.select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.select-text {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

.select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
}

/* ==========================================================================
   RESPONSIVE UTILITIES
   ========================================================================== */
@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hidden-desktop {
    display: none !important;
  }
}
/* ==========================================================================
   COMPONENTES
   ========================================================================== */
/**
 * Buttons Component - Hunter Price Panel Synergia
 * 
 * Estilos para botones con metodología BEM
 * Múltiples variantes y estados
 * 
 * @package HunterPricePanel
 * @author Mariano Romero - Alrit
 * @since 1.0.0
 */
/* ==========================================================================
   BOTÓN BASE (.hp-btn)
   ========================================================================== */
.hp-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: all 200ms cubic-bezier(0, 0, 0.2, 1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.hp-btn:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.hp-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.hp-btn {
  gap: 0.5rem;
}
.hp-btn__icon {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.hp-btn__text {
  font-weight: 500;
}
.hp-btn {
  /* Modificadores de Tamaño
     ====================================================================== */
}
.hp-btn--sm {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
}
.hp-btn--lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}
.hp-btn--xl {
  padding: 1rem 2rem;
  font-size: 1.25rem;
}
.hp-btn {
  /* Modificadores de Variante
     ====================================================================== */
}
.hp-btn--primary {
  background-color: #0066CC;
  color: #FFFFFF;
  border-color: #0066CC;
}
.hp-btn--primary:hover:not(:disabled) {
  background-color: rgb(0, 76.5, 153);
  border-color: rgb(0, 76.5, 153);
}
.hp-btn--primary:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.3);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.3);
}
.hp-btn--success {
  background-color: #00B894;
  color: #FFFFFF;
  border-color: #00B894;
}
.hp-btn--success:hover:not(:disabled) {
  background-color: rgb(0, 133, 106.9782608696);
  border-color: rgb(0, 133, 106.9782608696);
}
.hp-btn--success:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.3);
  box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.3);
}
.hp-btn--warning {
  background-color: #FFA500;
  color: #FFFFFF;
  border-color: #FFA500;
}
.hp-btn--warning:hover:not(:disabled) {
  background-color: #cc8400;
  border-color: #cc8400;
}
.hp-btn--warning:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.3);
}
.hp-btn--error {
  background-color: #E74C3C;
  color: #FFFFFF;
  border-color: #E74C3C;
}
.hp-btn--error:hover:not(:disabled) {
  background-color: rgb(213.698630137, 43.8356164384, 26.301369863);
  border-color: rgb(213.698630137, 43.8356164384, 26.301369863);
}
.hp-btn--error:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3);
}
.hp-btn--secondary {
  background-color: #666666;
  color: #FFFFFF;
  border-color: #666666;
}
.hp-btn--secondary:hover:not(:disabled) {
  background-color: rgb(76.5, 76.5, 76.5);
  border-color: rgb(76.5, 76.5, 76.5);
}
.hp-btn--secondary:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(102, 102, 102, 0.3);
  box-shadow: 0 0 0 3px rgba(102, 102, 102, 0.3);
}
.hp-btn {
  /* Modificadores Outline
     ====================================================================== */
}
.hp-btn--outline-primary {
  background-color: transparent;
  color: #0066CC;
  border-color: #0066CC;
}
.hp-btn--outline-primary:hover:not(:disabled) {
  background-color: #0066CC;
  color: #FFFFFF;
}
.hp-btn--outline-primary:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.3);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.3);
}
.hp-btn--outline-success {
  background-color: transparent;
  color: #00B894;
  border-color: #00B894;
}
.hp-btn--outline-success:hover:not(:disabled) {
  background-color: #00B894;
  color: #FFFFFF;
}
.hp-btn--outline-success:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.3);
  box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.3);
}
.hp-btn--outline-error {
  background-color: transparent;
  color: #E74C3C;
  border-color: #E74C3C;
}
.hp-btn--outline-error:hover:not(:disabled) {
  background-color: #E74C3C;
  color: #FFFFFF;
}
.hp-btn--outline-error:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3);
}
.hp-btn {
  /* Modificador Ghost (texto sin fondo)
     ====================================================================== */
}
.hp-btn--ghost {
  background-color: transparent;
  border-color: transparent;
  color: #0066CC;
}
.hp-btn--ghost:hover:not(:disabled) {
  background-color: #F5F5F5;
}
.hp-btn {
  /* Modificador Link (estilo enlace)
     ====================================================================== */
}
.hp-btn--link {
  background-color: transparent;
  border-color: transparent;
  color: #0066CC;
  padding: 0;
}
.hp-btn--link:hover:not(:disabled) {
  text-decoration: underline;
  background-color: transparent;
}
.hp-btn {
  /* Modificador Block (ancho completo)
     ====================================================================== */
}
.hp-btn--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.hp-btn {
  /* Modificador Icon Only (solo icono)
     ====================================================================== */
}
.hp-btn--icon-only {
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}
.hp-btn--icon-only.hp-btn--sm {
  width: 32px;
  height: 32px;
  padding: 0.25rem;
}
.hp-btn--icon-only.hp-btn--lg {
  width: 48px;
  height: 48px;
  padding: 0.75rem;
}
.hp-btn {
  /* Modificador Loading
     ====================================================================== */
}
.hp-btn--loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}
.hp-btn--loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  border-top-color: transparent;
  -webkit-animation: hp-spin 700ms linear infinite;
  animation: hp-spin 700ms linear infinite;
}

/* ==========================================================================
   GRUPO DE BOTONES
   ========================================================================== */
.hp-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}
.hp-btn-group--vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.hp-btn-group--attached {
  gap: 0;
}
.hp-btn-group--attached .hp-btn {
  border-radius: 0;
}
.hp-btn-group--attached .hp-btn:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.hp-btn-group--attached .hp-btn:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.hp-btn-group--attached .hp-btn + .hp-btn {
  margin-left: -1px;
}

/**
 * Cards Component - Hunter Price Panel Synergia
 * 
 * Componente de tarjetas con metodología BEM
 * Usado para métricas del dashboard y contenedores
 * 
 * @package HunterPricePanel
 * @author Mariano Romero - Alrit
 * @since 1.0.0
 */
/* ==========================================================================
   CARD BASE (.hp-card)
   ========================================================================== */
.hp-card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  -webkit-transition: -webkit-box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1), -webkit-box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);
  /* Elementos del Card
     ====================================================================== */
}
.hp-card__header {
  padding: 1.5rem;
  border-bottom: 1px solid #E0E0E0;
  background: -webkit-gradient(linear, left top, left bottom, from(#FAFAFA), to(#FFFFFF));
  background: linear-gradient(to bottom, #FAFAFA, #FFFFFF);
}
.hp-card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1A1A;
}
.hp-card__subtitle {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: #666666;
}
.hp-card__icon {
  font-size: 1.5rem;
  line-height: 1;
  -webkit-animation: hp-wave 1.5s ease-in-out infinite;
  animation: hp-wave 1.5s ease-in-out infinite;
}
.hp-card__body {
  padding: 1.5rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.hp-card__footer {
  padding: 1.5rem;
  border-top: 1px solid #F5F5F5;
  background: #FAFAFA;
}
.hp-card {
  /* Modificadores de Color
     ====================================================================== */
}
.hp-card--primary {
  border-top: 4px solid #0066CC;
}
.hp-card--success {
  border-top: 4px solid #00B894;
}
.hp-card--warning {
  border-top: 4px solid #FFA500;
}
.hp-card--error {
  border-top: 4px solid #E74C3C;
}
.hp-card {
  /* Modificador Hover
     ====================================================================== */
}
.hp-card--hoverable:hover {
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.hp-card--hoverable {
  cursor: pointer;
}
.hp-card {
  /* Modificador Sin Padding
     ====================================================================== */
}
.hp-card--no-padding {
  padding: 0;
}
.hp-card {
  /* Modificador Flat (sin sombra)
     ====================================================================== */
}
.hp-card--flat {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* ==========================================================================
   METRIC CARD (.hp-metric-card)
   Tarjeta específica para métricas del dashboard
   ========================================================================== */
.hp-metric-card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  -webkit-transition: -webkit-box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1), -webkit-box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);
}
.hp-metric-card:hover {
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.hp-metric-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  min-height: 120px;
  border-top: 4px solid #0066CC;
  cursor: pointer;
  /* Elementos
     ====================================================================== */
}
.hp-metric-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
}
.hp-metric-card__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4D4D4D;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hp-metric-card__icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0.75rem;
  background: #E6F2FF;
  color: #0066CC;
  font-size: 1.25rem;
}
.hp-metric-card__icon svg {
  width: 24px;
  height: 24px;
}
.hp-metric-card__body {
  margin-bottom: 1rem;
}
.hp-metric-card__value {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}
.hp-metric-card__label {
  font-size: 0.875rem;
  color: #666666;
}
.hp-metric-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #F5F5F5;
}
.hp-metric-card__trend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.hp-metric-card__trend--up {
  color: #00B894;
}
.hp-metric-card__trend--down {
  color: #E74C3C;
}
.hp-metric-card__trend--neutral {
  color: #666666;
}
.hp-metric-card__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #0066CC;
  text-decoration: none;
  -webkit-transition: color 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: color 200ms cubic-bezier(0, 0, 0.2, 1);
}
.hp-metric-card__action:hover {
  color: #0059B3;
}
.hp-metric-card__action svg {
  width: 16px;
  height: 16px;
  -webkit-transition: -webkit-transform 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-transform 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 200ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 200ms cubic-bezier(0, 0, 0.2, 1);
}
.hp-metric-card__action:hover svg {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}
.hp-metric-card {
  /* Modificadores de Color
     ====================================================================== */
}
.hp-metric-card--primary {
  border-top-color: #0066CC;
}
.hp-metric-card--primary .hp-metric-card__icon {
  background: #E6F2FF;
  color: #0066CC;
}
.hp-metric-card--success {
  border-top-color: #00B894;
}
.hp-metric-card--success .hp-metric-card__icon {
  background: #E6F9F4;
  color: #00B894;
}
.hp-metric-card--warning {
  border-top-color: #FFA500;
}
.hp-metric-card--warning .hp-metric-card__icon {
  background: rgba(255, 165, 0, 0.1);
  color: #FFA500;
}
.hp-metric-card--error {
  border-top-color: #E74C3C;
}
.hp-metric-card--error .hp-metric-card__icon {
  background: rgba(231, 76, 60, 0.1);
  color: #E74C3C;
}

/* ==========================================================================
   GRID DE CARDS
   ========================================================================== */
.hp-card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 576px) {
  .hp-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .hp-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .hp-card-grid--2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .hp-card-grid--4-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hp-form__group {
  margin-bottom: 1rem;
}
.hp-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1A1A1A;
  font-size: 0.875rem;
}
.hp-form__input {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #1A1A1A;
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 0.375rem;
  -webkit-transition: border-color 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: border-color 200ms cubic-bezier(0, 0, 0.2, 1);
}
.hp-form__input:focus {
  outline: none;
  border-color: #0066CC;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}
.hp-form__input::-webkit-input-placeholder {
  color: #999999;
}
.hp-form__input::-moz-placeholder {
  color: #999999;
}
.hp-form__input:-ms-input-placeholder {
  color: #999999;
}
.hp-form__input::-ms-input-placeholder {
  color: #999999;
}
.hp-form__input::placeholder {
  color: #999999;
}
.hp-form__input:disabled {
  background-color: #F5F5F5;
  cursor: not-allowed;
}
.hp-form__textarea {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #1A1A1A;
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 0.375rem;
  -webkit-transition: border-color 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: border-color 200ms cubic-bezier(0, 0, 0.2, 1);
}
.hp-form__textarea:focus {
  outline: none;
  border-color: #0066CC;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}
.hp-form__textarea::-webkit-input-placeholder {
  color: #999999;
}
.hp-form__textarea::-moz-placeholder {
  color: #999999;
}
.hp-form__textarea:-ms-input-placeholder {
  color: #999999;
}
.hp-form__textarea::-ms-input-placeholder {
  color: #999999;
}
.hp-form__textarea::placeholder {
  color: #999999;
}
.hp-form__textarea:disabled {
  background-color: #F5F5F5;
  cursor: not-allowed;
}
.hp-form__textarea {
  min-height: 100px;
  resize: vertical;
}
.hp-form__select {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #1A1A1A;
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 0.375rem;
  -webkit-transition: border-color 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: border-color 200ms cubic-bezier(0, 0, 0.2, 1);
}
.hp-form__select:focus {
  outline: none;
  border-color: #0066CC;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}
.hp-form__select::-webkit-input-placeholder {
  color: #999999;
}
.hp-form__select::-moz-placeholder {
  color: #999999;
}
.hp-form__select:-ms-input-placeholder {
  color: #999999;
}
.hp-form__select::-ms-input-placeholder {
  color: #999999;
}
.hp-form__select::placeholder {
  color: #999999;
}
.hp-form__select:disabled {
  background-color: #F5F5F5;
  cursor: not-allowed;
}
.hp-form__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23666" d="M6 9L1 4h10z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}
.hp-form__help {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #666666;
}
.hp-form__error {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #E74C3C;
}

.hp-chart__container {
  position: relative;
  width: 100%;
  min-height: 300px;
}
.hp-chart__canvas {
  width: 100% !important;
  height: auto !important;
}
.hp-chart__legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
.hp-chart__legend-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.hp-chart__legend-color {
  width: 16px;
  height: 16px;
  border-radius: 0.25rem;
}

.hp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.hp-table__head {
  background: #FAFAFA;
  border-bottom: 2px solid #E0E0E0;
}
.hp-table__header {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: #4D4D4D;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.hp-table__body tr {
  border-bottom: 1px solid #E0E0E0;
  -webkit-transition: background-color 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: background-color 200ms cubic-bezier(0, 0, 0.2, 1);
}
.hp-table__body tr:hover {
  background: #FAFAFA;
}
.hp-table__cell {
  padding: 0.75rem 1rem;
  color: #1A1A1A;
}
.hp-table--striped .hp-table__body tr:nth-child(even) {
  background: #FAFAFA;
}

.hp-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1050;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 200ms cubic-bezier(0, 0, 0.2, 1);
}
.hp-modal--active {
  opacity: 1;
  visibility: visible;
}
.hp-modal__dialog {
  background: #FFFFFF;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
  max-width: 90%;
  width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-transition: -webkit-transform 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-transform 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 200ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 200ms cubic-bezier(0, 0, 0.2, 1);
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.hp-modal--active .hp-modal__dialog {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.hp-modal__header {
  padding: 1.5rem;
  border-bottom: 1px solid #E0E0E0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hp-modal__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}
.hp-modal__close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: all 200ms cubic-bezier(0, 0, 0.2, 1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.hp-modal__close:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.hp-modal__close:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.hp-modal__close {
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  color: #666666;
}
.hp-modal__close:hover {
  background: #F5F5F5;
  color: #1A1A1A;
}
.hp-modal__body {
  padding: 1.5rem;
}
.hp-modal__footer {
  padding: 1.5rem;
  border-top: 1px solid #E0E0E0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.hp-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 576px) {
  .hp-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .hp-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .hp-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .hp-container {
    max-width: 1140px;
  }
}
.hp-container--fluid {
  max-width: 100%;
}

.hp-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.hp-col {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hp-col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.3333333333%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hp-col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.6666666667%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hp-col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hp-col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.3333333333%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hp-col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.6666666667%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hp-col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hp-col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.3333333333%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hp-col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.6666666667%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hp-col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hp-col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 83.3333333333%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hp-col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 91.6666666667%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hp-col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hp-dashboard {
  min-height: 100vh;
  background: #FAFAFA;
}
.hp-dashboard__header {
  background: #FFFFFF;
  border-bottom: 1px solid #E0E0E0;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.hp-dashboard__header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.hp-dashboard__header-title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  color: #1A1A1A;
}
.hp-dashboard__header-subtitle {
  margin: 0.25rem 0 0;
  font-size: 1rem;
  color: #666666;
}
.hp-dashboard__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.hp-dashboard__tabs-btn {
  padding: 0.5rem 1rem;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 0.5rem;
  color: #4D4D4D;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: all 200ms cubic-bezier(0, 0, 0.2, 1);
}
.hp-dashboard__tabs-btn:hover {
  background: #FAFAFA;
  border-color: #CCCCCC;
}
.hp-dashboard__tabs-btn--active {
  background: #0066CC;
  border-color: #0066CC;
  color: #FFFFFF;
}
.hp-dashboard__content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hp-dashboard__section {
  margin-bottom: 2rem;
}
.hp-dashboard__section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1A1A1A;
}

.hp-sidebar {
  width: 260px;
  background: #FFFFFF;
  border-right: 1px solid #E0E0E0;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding: 1.5rem;
  overflow-y: auto;
}
.hp-sidebar__nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hp-sidebar__nav-item {
  margin-bottom: 0.25rem;
}
.hp-sidebar__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.75rem 1rem;
  color: #4D4D4D;
  text-decoration: none;
  border-radius: 0.5rem;
  -webkit-transition: all 200ms cubic-bezier(0, 0, 0.2, 1);
  transition: all 200ms cubic-bezier(0, 0, 0.2, 1);
  gap: 0.75rem;
}
.hp-sidebar__nav-link:hover {
  background: #FAFAFA;
  color: #1A1A1A;
}
.hp-sidebar__nav-link--active {
  background: #E6F2FF;
  color: #0066CC;
  font-weight: 600;
}
.hp-sidebar__nav-icon {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   ANIMACIONES Y KEYFRAMES
   ========================================================================== */
@-webkit-keyframes hp-fade-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes hp-fade-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes hp-slide-in-right {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes hp-slide-in-right {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes hp-slide-in-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes hp-slide-in-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes hp-scale-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes hp-scale-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes hp-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes hp-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes hp-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes hp-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@-webkit-keyframes hp-wave {
  0%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  75% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
}
@keyframes hp-wave {
  0%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  75% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
}
/* ==========================================================================
   CLASES DE ANIMACIÓN
   ========================================================================== */
.animate-fade-in {
  -webkit-animation: hp-fade-in 300ms cubic-bezier(0, 0, 0.2, 1);
  animation: hp-fade-in 300ms cubic-bezier(0, 0, 0.2, 1);
}

.animate-slide-in-right {
  -webkit-animation: hp-slide-in-right 300ms cubic-bezier(0, 0, 0.2, 1);
  animation: hp-slide-in-right 300ms cubic-bezier(0, 0, 0.2, 1);
}

.animate-slide-in-left {
  -webkit-animation: hp-slide-in-left 300ms cubic-bezier(0, 0, 0.2, 1);
  animation: hp-slide-in-left 300ms cubic-bezier(0, 0, 0.2, 1);
}

.animate-scale-in {
  -webkit-animation: hp-scale-in 200ms cubic-bezier(0, 0, 0.2, 1);
  animation: hp-scale-in 200ms cubic-bezier(0, 0, 0.2, 1);
}

.animate-spin {
  -webkit-animation: hp-spin 1000ms linear infinite;
  animation: hp-spin 1000ms linear infinite;
}

.animate-pulse {
  -webkit-animation: hp-pulse 1000ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: hp-pulse 1000ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
/*# sourceMappingURL=main.css.map */
