@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Playfair+Display:wght@400;500;700&display=swap);

.text-caption ul[data-v-08084816] {
  margin-left: 16px;
}


.notification-bell[data-v-1bfc9ea4] {
  position: relative;
}
.notifications-panel[data-v-1bfc9ea4] {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.notification-unread[data-v-1bfc9ea4] {
  background-color: rgba(25, 118, 210, 0.04);
  border-left: 4px solid var(--v-theme-primary);
}
.notification-unread[data-v-1bfc9ea4]:hover {
  background-color: rgba(25, 118, 210, 0.08);
}
.notification-toast[data-v-1bfc9ea4] {
  z-index: 9999;
}
.notifications-container[data-v-1bfc9ea4] {
  position: relative;
}

/* Animación para nuevas notificaciones */
@keyframes notification-bounce-1bfc9ea4 {
0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
}
40% {
    transform: translateY(-10px);
}
60% {
    transform: translateY(-5px);
}
}
.notification-bell.has-new[data-v-1bfc9ea4] {
  animation: notification-bounce-1bfc9ea4 2s infinite;
}

/* Estilos responsivos */
@media (max-width: 600px) {
.notifications-panel[data-v-1bfc9ea4] {
    min-width: 300px;
    max-width: 300px;
}
}


.accessibility-controls[data-v-45c2bf8d] {
  display: flex;
  align-items: center;
  gap: 4px;
}
.theme-active[data-v-45c2bf8d],
.high-contrast-active[data-v-45c2bf8d],
.large-text-active[data-v-45c2bf8d],
.reduced-motion-active[data-v-45c2bf8d],
.enhanced-focus-active[data-v-45c2bf8d] {
  background-color: rgba(46, 139, 87, 0.2) !important;
  border: 2px solid #2E8B57 !important;
  transform: scale(1.05);
}
.theme-active[data-v-45c2bf8d] {
  border-color: #FFA726 !important;
  background-color: rgba(255, 167, 38, 0.2) !important;
}
.enhanced-focus-active[data-v-45c2bf8d] {
  border-color: #9C27B0 !important;
  background-color: rgba(156, 39, 176, 0.2) !important;
}


/* Estilos globales para modo de alto contraste */
.high-contrast-mode {
  --v-theme-background: #000000 !important;
  --v-theme-surface: #000000 !important;
  --v-theme-primary: #FFFF00 !important;
  --v-theme-secondary: #00FFFF !important;
  --v-theme-on-background: #FFFFFF !important;
  --v-theme-on-surface: #FFFFFF !important;
  --v-theme-on-primary: #000000 !important;
}
.high-contrast-mode .v-card {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  border: 2px solid #FFFFFF !important;
}
.high-contrast-mode .v-btn {
  border: 2px solid currentColor !important;
}
.high-contrast-mode .v-text-field input,
.high-contrast-mode .v-select__selection {
  color: #FFFFFF !important;
}
.high-contrast-mode .v-app-bar {
  border-bottom: 3px solid #FFFFFF !important;
}

/* Estilos para texto grande */
.large-text-mode {
  font-size: 120% !important;
}
.large-text-mode .text-h1 { font-size: 7.2rem !important;
}
.large-text-mode .text-h2 { font-size: 4.8rem !important;
}
.large-text-mode .text-h3 { font-size: 3.6rem !important;
}
.large-text-mode .text-h4 { font-size: 2.4rem !important;
}
.large-text-mode .text-h5 { font-size: 1.8rem !important;
}
.large-text-mode .text-h6 { font-size: 1.5rem !important;
}
.large-text-mode .text-body-1 { font-size: 1.2rem !important;
}
.large-text-mode .text-body-2 { font-size: 1.05rem !important;
}
.large-text-mode .v-btn { font-size: 1.1rem !important;
}
.large-text-mode .v-list-item-title { font-size: 1.1rem !important;
}

/* Estilos para movimiento reducido */
.reduced-motion-mode * {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}
.reduced-motion-mode .v-btn {
  transition: none !important;
}
.reduced-motion-mode .v-card {
  transition: none !important;
}

/* Estilos para enfoque mejorado */
.enhanced-focus-mode *:focus {
  outline: 4px solid #FF5722 !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 7px rgba(255, 87, 34, 0.4) !important;
  z-index: 1000 !important;
  position: relative !important;
}
.enhanced-focus-mode .v-btn:focus {
  outline: 4px solid #FF5722 !important;
  outline-offset: 3px !important;
  transform: scale(1.05) !important;
  z-index: 1000 !important;
}
.enhanced-focus-mode .v-text-field:focus-within {
  outline: 4px solid #FF5722 !important;
  outline-offset: 3px !important;
}
.enhanced-focus-mode .v-list-item:focus {
  background-color: rgba(255, 87, 34, 0.3) !important;
  outline: 4px solid #FF5722 !important;
  outline-offset: 3px !important;
  z-index: 1000 !important;
}
.enhanced-focus-mode .v-switch:focus-within {
  outline: 4px solid #FF5722 !important;
  outline-offset: 3px !important;
  border-radius: 8px !important;
}

/* Tooltips más accesibles */
.v-tooltip .v-overlay__content {
  background-color: rgba(0, 0, 0, 0.9) !important;
  color: white !important;
  font-size: 0.9rem !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
  max-width: 250px !important;
  text-align: center !important;
  line-height: 1.3 !important;
}

/* Estilos para estabilizar el menú de accesibilidad */
.accessibility-controls {
  position: relative;
}
.accessibility-menu {
  position: relative !important;
  z-index: 2000 !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
}

/* Estabilizar el menú dropdown */
.v-menu > .v-overlay__content {
  position: fixed !important;
  transform-origin: top right !important;
  max-width: 400px !important;
  min-width: 380px !important;
}
.accessibility-section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 16px;
}
.accessibility-section:last-of-type {
  border-bottom: none;
}
.accessibility-active {
  background-color: rgba(33, 150, 243, 0.1) !important;
}

/* ===================================================
   ESTILOS PARA BOTONES DE ACCESIBILIDAD CON ICONOS
   ================================================== */

/* Transiciones suaves para iconos */
.theme-icon-transition,
.contrast-icon-transition,
.motion-icon-transition,
.focus-icon-transition {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Efectos hover para botones de accesibilidad */
.theme-toggle-btn:hover .theme-icon-transition {
  transform: rotate(15deg) scale(1.1);
}
.contrast-toggle-btn:hover .contrast-icon-transition {
  transform: scale(1.2);
}
.motion-toggle-btn:hover .motion-icon-transition {
  transform: scale(1.1);
}
.focus-toggle-btn:hover .focus-icon-transition {
  transform: scale(1.1) rotate(5deg);
}

/* Efectos de activación/click */
.theme-toggle-btn:active .theme-icon-transition {
  transform: rotate(360deg) scale(0.9);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.contrast-toggle-btn:active .contrast-icon-transition {
  transform: scale(0.8);
  transition: transform 0.2s ease-out;
}
.motion-toggle-btn:active .motion-icon-transition {
  transform: scale(0.8);
  transition: transform 0.2s ease-out;
}
.focus-toggle-btn:active .focus-icon-transition {
  transform: scale(0.8) rotate(15deg);
  transition: transform 0.2s ease-out;
}

/* Estilos específicos para estados activos */
.theme-toggle-btn[variant="tonal"] {
  background-color: rgba(255, 193, 7, 0.12) !important;
  border: 1px solid rgba(255, 193, 7, 0.3) !important;
}
.contrast-toggle-btn[variant="tonal"] {
  background-color: rgba(255, 235, 59, 0.12) !important;
  border: 1px solid rgba(255, 235, 59, 0.3) !important;
}
.motion-toggle-btn[variant="tonal"] {
  background-color: rgba(255, 152, 0, 0.12) !important;
  border: 1px solid rgba(255, 152, 0, 0.3) !important;
}
.focus-toggle-btn[variant="tonal"] {
  background-color: rgba(156, 39, 176, 0.12) !important;
  border: 1px solid rgba(156, 39, 176, 0.3) !important;
}

/* Efectos de brillo para estados activos */
.theme-toggle-btn[variant="tonal"] .theme-icon-transition {
  filter: drop-shadow(0 0 4px rgba(255, 193, 7, 0.5));
}
.contrast-toggle-btn[variant="tonal"] .contrast-icon-transition {
  filter: drop-shadow(0 0 4px rgba(255, 235, 59, 0.5));
}
.motion-toggle-btn[variant="tonal"] .motion-icon-transition {
  filter: drop-shadow(0 0 4px rgba(255, 152, 0, 0.5));
}
.focus-toggle-btn[variant="tonal"] .focus-icon-transition {
  filter: drop-shadow(0 0 4px rgba(156, 39, 176, 0.5));
}

/* Animación de pulso para indicar cambio de estado */
@keyframes accessibility-pulse {
0% { transform: scale(1);
}
50% { transform: scale(1.1);
}
100% { transform: scale(1);
}
}

/* Aplicar pulso cuando cambia el estado */
.theme-toggle-btn.state-changed .theme-icon-transition,
.contrast-toggle-btn.state-changed .contrast-icon-transition,
.motion-toggle-btn.state-changed .motion-icon-transition,
.focus-toggle-btn.state-changed .focus-icon-transition {
  animation: accessibility-pulse 0.6s ease-in-out;
}

/* Mejorar visibilidad en modo oscuro */
.v-theme--dark .theme-toggle-btn[variant="outlined"],
.v-theme--dark .contrast-toggle-btn[variant="outlined"],
.v-theme--dark .motion-toggle-btn[variant="outlined"],
.v-theme--dark .focus-toggle-btn[variant="outlined"] {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: rgba(255, 255, 255, 0.8) !important;
}
.v-theme--dark .theme-toggle-btn[variant="outlined"]:hover,
.v-theme--dark .contrast-toggle-btn[variant="outlined"]:hover,
.v-theme--dark .motion-toggle-btn[variant="outlined"]:hover,
.v-theme--dark .focus-toggle-btn[variant="outlined"]:hover {
  border-color: rgba(255, 255, 255, 0.6) !important;
  color: rgba(255, 255, 255, 1) !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Tamaño uniforme para todos los botones de accesibilidad */
.theme-toggle-btn,
.contrast-toggle-btn,
.motion-toggle-btn,
.focus-toggle-btn {
  min-width: 40px !important;
  height: 40px !important;
  border-radius: 8px !important;
}


/* Logo vertical alignment fix */
.navbar-title[data-v-08f43784] {
  font-size: 1.25rem;
  font-weight: 500;
  margin-left: 8px;
}

/* Ensure proper mobile menu display */
.v-navigation-drawer[data-v-08f43784] {
  z-index: 9999 !important;
}

/* Mobile Accessibility Controls Styling */
.mobile-accessibility-controls[data-v-08f43784] {
  max-width: 100%;
}
.mobile-accessibility-controls .v-switch[data-v-08f43784] {
  flex: 0 0 auto;
}
.mobile-accessibility-controls .text-body-2[data-v-08f43784] {
  flex: 1;
  min-width: 0;
}

/* Compact switches for mobile */
.mobile-accessibility-controls .v-switch--density-compact[data-v-08f43784] {
  --v-input-control-height: 24px;
}

/* Better text size controls */
.mobile-accessibility-controls .v-btn[data-v-08f43784] {
  min-width: 36px;
}

/* Mobile menu debug styles */
@media (max-width: 767px) {
.mobile-menu-debug[data-v-08f43784] {
    border: 2px solid red;
    background-color: rgba(255, 0, 0, 0.1);
}
}

/* Accessibility enhancements */
.sr-only[data-v-08f43784] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus indicators */
.v-btn[data-v-08f43784]:focus,
.v-list-item[data-v-08f43784]:focus {
  outline: 2px solid #2196F3;
  outline-offset: 2px;
}

/* High contrast support */
@media (prefers-contrast: high) {
.v-app-bar[data-v-08f43784] {
    border-bottom: 2px solid currentColor;
}
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
.v-navigation-drawer[data-v-08f43784] {
    transition: none !important;
}
}

/* ===================================================
   ESTILOS PARA BOTONES DE ACCESIBILIDAD CON ICONOS
   ================================================== */

/* Transiciones suaves para iconos */
.theme-icon-transition[data-v-08f43784],
.contrast-icon-transition[data-v-08f43784],
.motion-icon-transition[data-v-08f43784],
.focus-icon-transition[data-v-08f43784] {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Efectos hover para botones de accesibilidad */
.theme-toggle-btn:hover .theme-icon-transition[data-v-08f43784] {
  transform: rotate(15deg) scale(1.1);
}
.contrast-toggle-btn:hover .contrast-icon-transition[data-v-08f43784] {
  transform: scale(1.2);
}
.motion-toggle-btn:hover .motion-icon-transition[data-v-08f43784] {
  transform: scale(1.1);
}
.focus-toggle-btn:hover .focus-icon-transition[data-v-08f43784] {
  transform: scale(1.1) rotate(5deg);
}

/* Efectos de activación/click */
.theme-toggle-btn:active .theme-icon-transition[data-v-08f43784] {
  transform: rotate(360deg) scale(0.9);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.contrast-toggle-btn:active .contrast-icon-transition[data-v-08f43784] {
  transform: scale(0.8);
  transition: transform 0.2s ease-out;
}
.motion-toggle-btn:active .motion-icon-transition[data-v-08f43784] {
  transform: scale(0.8);
  transition: transform 0.2s ease-out;
}
.focus-toggle-btn:active .focus-icon-transition[data-v-08f43784] {
  transform: scale(0.8) rotate(15deg);
  transition: transform 0.2s ease-out;
}

/* Estilos específicos para estados activos */
.theme-toggle-btn[variant="tonal"][data-v-08f43784] {
  background-color: rgba(var(--v-theme-amber), 0.12) !important;
  border: 1px solid rgba(var(--v-theme-amber), 0.3) !important;
}
.contrast-toggle-btn[variant="tonal"][data-v-08f43784] {
  background-color: rgba(var(--v-theme-yellow), 0.12) !important;
  border: 1px solid rgba(var(--v-theme-yellow), 0.3) !important;
}
.motion-toggle-btn[variant="tonal"][data-v-08f43784] {
  background-color: rgba(var(--v-theme-green), 0.12) !important;
  border: 1px solid rgba(var(--v-theme-green), 0.3) !important;
}
.focus-toggle-btn[variant="tonal"][data-v-08f43784] {
  background-color: rgba(var(--v-theme-purple), 0.12) !important;
  border: 1px solid rgba(var(--v-theme-purple), 0.3) !important;
}

/* Efectos de brillo para estados activos */
.theme-toggle-btn[variant="tonal"] .theme-icon-transition[data-v-08f43784] {
  filter: drop-shadow(0 0 4px rgba(var(--v-theme-amber), 0.5));
}
.contrast-toggle-btn[variant="tonal"] .contrast-icon-transition[data-v-08f43784] {
  filter: drop-shadow(0 0 4px rgba(var(--v-theme-yellow), 0.5));
}
.motion-toggle-btn[variant="tonal"] .motion-icon-transition[data-v-08f43784] {
  filter: drop-shadow(0 0 4px rgba(var(--v-theme-green), 0.5));
}
.focus-toggle-btn[variant="tonal"] .focus-icon-transition[data-v-08f43784] {
  filter: drop-shadow(0 0 4px rgba(var(--v-theme-purple), 0.5));
}

/* Animación de pulso para indicar cambio de estado */
@keyframes accessibility-pulse-08f43784 {
0% { transform: scale(1);
}
50% { transform: scale(1.1);
}
100% { transform: scale(1);
}
}

/* Aplicar pulso cuando cambia el estado */
.theme-toggle-btn.state-changed .theme-icon-transition[data-v-08f43784],
.contrast-toggle-btn.state-changed .contrast-icon-transition[data-v-08f43784],
.motion-toggle-btn.state-changed .motion-icon-transition[data-v-08f43784],
.focus-toggle-btn.state-changed .focus-icon-transition[data-v-08f43784] {
  animation: accessibility-pulse-08f43784 0.6s ease-in-out;
}

/* Mejorar visibilidad en modo oscuro */
.v-theme--dark .theme-toggle-btn[variant="outlined"][data-v-08f43784],
.v-theme--dark .contrast-toggle-btn[variant="outlined"][data-v-08f43784],
.v-theme--dark .motion-toggle-btn[variant="outlined"][data-v-08f43784],
.v-theme--dark .focus-toggle-btn[variant="outlined"][data-v-08f43784] {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: rgba(255, 255, 255, 0.8) !important;
}
.v-theme--dark .theme-toggle-btn[variant="outlined"][data-v-08f43784]:hover,
.v-theme--dark .contrast-toggle-btn[variant="outlined"][data-v-08f43784]:hover,
.v-theme--dark .motion-toggle-btn[variant="outlined"][data-v-08f43784]:hover,
.v-theme--dark .focus-toggle-btn[variant="outlined"][data-v-08f43784]:hover {
  border-color: rgba(255, 255, 255, 0.6) !important;
  color: rgba(255, 255, 255, 1) !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
}

/* ===================================================
   ESTILOS PARA ALTO CONTRASTE EN NAVIGATION DRAWER
   ================================================== */

/* Drawer en alto contraste - Con mayor especificidad */
.high-contrast-drawer.v-navigation-drawer[data-v-08f43784] {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  border: 3px solid #FFFF00 !important;
}
.high-contrast-drawer .v-navigation-drawer__content[data-v-08f43784] {
  background-color: #000000 !important;
}

/* Header del drawer en alto contraste */
.high-contrast-header[data-v-08f43784] {
  background-color: #000000 !important;
  color: #FFFF00 !important;
  border-bottom: 2px solid #FFFF00 !important;
}

/* Lista en alto contraste - Con mayor especificidad */
.high-contrast-drawer .v-list[data-v-08f43784],
.high-contrast-drawer .v-list.v-list[data-v-08f43784] {
  background-color: #000000 !important;
  color: #FFFFFF !important;
}
.high-contrast-drawer .v-list-item[data-v-08f43784],
.high-contrast-drawer .v-list-item.v-list-item[data-v-08f43784] {
  color: #FFFFFF !important;
  border-bottom: 1px solid #333333 !important;
  background-color: transparent !important;
}
.high-contrast-drawer .v-list-item-title[data-v-08f43784],
.high-contrast-drawer .v-list-item-title.v-list-item-title[data-v-08f43784] {
  color: #FFFFFF !important;
  font-weight: 500 !important;
}
.high-contrast-drawer .v-list-item[data-v-08f43784]:hover,
.high-contrast-drawer .v-list-item.v-list-item[data-v-08f43784]:hover {
  background-color: #FFFF00 !important;
  color: #000000 !important;
}
.high-contrast-drawer .v-list-item:hover .v-list-item-title[data-v-08f43784],
.high-contrast-drawer .v-list-item.v-list-item:hover .v-list-item-title[data-v-08f43784] {
  color: #000000 !important;
}
.high-contrast-drawer .v-list-item .v-icon[data-v-08f43784],
.high-contrast-drawer .v-list-item.v-list-item .v-icon[data-v-08f43784] {
  color: #FFFF00 !important;
}
.high-contrast-drawer .v-list-item:hover .v-icon[data-v-08f43784],
.high-contrast-drawer .v-list-item.v-list-item:hover .v-icon[data-v-08f43784] {
  color: #000000 !important;
}

/* Focus states para alto contraste */
.high-contrast-drawer .v-list-item[data-v-08f43784]:focus,
.high-contrast-drawer .v-list-item.v-list-item[data-v-08f43784]:focus {
  background-color: #FFFFFF !important;
  color: #000000 !important;
  outline: 3px solid #FF0000 !important;
  outline-offset: 2px !important;
}
.high-contrast-drawer .v-list-item:focus .v-list-item-title[data-v-08f43784],
.high-contrast-drawer .v-list-item.v-list-item:focus .v-list-item-title[data-v-08f43784] {
  color: #000000 !important;
}
.high-contrast-drawer .v-list-item:focus .v-icon[data-v-08f43784],
.high-contrast-drawer .v-list-item.v-list-item:focus .v-icon[data-v-08f43784] {
  color: #000000 !important;
}

/* Dividers en alto contraste */
.high-contrast-drawer .v-divider[data-v-08f43784],
.high-contrast-drawer .v-divider.v-divider[data-v-08f43784] {
  border-color: #FFFF00 !important;
  opacity: 1 !important;
  border-width: 2px !important;
}

/* Expansion panels en alto contraste */
.high-contrast-drawer .v-expansion-panels[data-v-08f43784],
.high-contrast-drawer .v-expansion-panels.v-expansion-panels[data-v-08f43784] {
  background-color: #000000 !important;
}
.high-contrast-drawer .v-expansion-panel[data-v-08f43784],
.high-contrast-drawer .v-expansion-panel.v-expansion-panel[data-v-08f43784] {
  background-color: #000000 !important;
  border: 2px solid #FFFF00 !important;
  margin-bottom: 8px !important;
}
.high-contrast-drawer .v-expansion-panel-title[data-v-08f43784],
.high-contrast-drawer .v-expansion-panel-title.v-expansion-panel-title[data-v-08f43784] {
  background-color: #000000 !important;
  color: #FFFF00 !important;
  border-bottom: 1px solid #FFFF00 !important;
  font-weight: bold !important;
}
.high-contrast-drawer .v-expansion-panel-text[data-v-08f43784],
.high-contrast-drawer .v-expansion-panel-text.v-expansion-panel-text[data-v-08f43784] {
  background-color: #000000 !important;
  color: #FFFFFF !important;
}

/* Texto dentro de expansion panels */
.high-contrast-drawer .v-expansion-panel-text .text-body-2[data-v-08f43784] {
  color: #FFFFFF !important;
}

/* Botones en alto contraste dentro del drawer - Con mayor especificidad */
.high-contrast-drawer .theme-toggle-btn[data-v-08f43784],
.high-contrast-drawer .contrast-toggle-btn[data-v-08f43784],
.high-contrast-drawer .motion-toggle-btn[data-v-08f43784],
.high-contrast-drawer .focus-toggle-btn[data-v-08f43784],
.high-contrast-drawer .v-btn.theme-toggle-btn[data-v-08f43784],
.high-contrast-drawer .v-btn.contrast-toggle-btn[data-v-08f43784],
.high-contrast-drawer .v-btn.motion-toggle-btn[data-v-08f43784],
.high-contrast-drawer .v-btn.focus-toggle-btn[data-v-08f43784] {
  border: 2px solid #FFFF00 !important;
  background-color: #000000 !important;
  color: #FFFF00 !important;
}
.high-contrast-drawer .theme-toggle-btn[data-v-08f43784]:hover,
.high-contrast-drawer .contrast-toggle-btn[data-v-08f43784]:hover,
.high-contrast-drawer .motion-toggle-btn[data-v-08f43784]:hover,
.high-contrast-drawer .focus-toggle-btn[data-v-08f43784]:hover,
.high-contrast-drawer .v-btn.theme-toggle-btn[data-v-08f43784]:hover,
.high-contrast-drawer .v-btn.contrast-toggle-btn[data-v-08f43784]:hover,
.high-contrast-drawer .v-btn.motion-toggle-btn[data-v-08f43784]:hover,
.high-contrast-drawer .v-btn.focus-toggle-btn[data-v-08f43784]:hover {
  background-color: #FFFF00 !important;
  color: #000000 !important;
}
.high-contrast-drawer .theme-toggle-btn[variant="tonal"][data-v-08f43784],
.high-contrast-drawer .contrast-toggle-btn[variant="tonal"][data-v-08f43784],
.high-contrast-drawer .motion-toggle-btn[variant="tonal"][data-v-08f43784],
.high-contrast-drawer .focus-toggle-btn[variant="tonal"][data-v-08f43784],
.high-contrast-drawer .v-btn.theme-toggle-btn[variant="tonal"][data-v-08f43784],
.high-contrast-drawer .v-btn.contrast-toggle-btn[variant="tonal"][data-v-08f43784],
.high-contrast-drawer .v-btn.motion-toggle-btn[variant="tonal"][data-v-08f43784],
.high-contrast-drawer .v-btn.focus-toggle-btn[variant="tonal"][data-v-08f43784] {
  background-color: #FFFF00 !important;
  color: #000000 !important;
  border: 2px solid #FFFF00 !important;
}

/* Iconos en botones de accesibilidad */
.high-contrast-drawer .theme-toggle-btn .v-icon[data-v-08f43784],
.high-contrast-drawer .contrast-toggle-btn .v-icon[data-v-08f43784],
.high-contrast-drawer .motion-toggle-btn .v-icon[data-v-08f43784],
.high-contrast-drawer .focus-toggle-btn .v-icon[data-v-08f43784] {
  color: inherit !important;
}

/* Switches en alto contraste */
.high-contrast-drawer .v-switch[data-v-08f43784],
.high-contrast-drawer .v-switch.v-switch[data-v-08f43784] {
  color: #FFFFFF !important;
}
.high-contrast-drawer .v-switch .v-selection-control__wrapper[data-v-08f43784] {
  color: #FFFFFF !important;
}
.high-contrast-drawer .v-switch .v-switch__track[data-v-08f43784] {
  background-color: #333333 !important;
  border: 1px solid #FFFF00 !important;
}
.high-contrast-drawer .v-switch .v-switch__thumb[data-v-08f43784] {
  background-color: #FFFF00 !important;
  border: 1px solid #000000 !important;
}
.high-contrast-drawer .v-switch--inset .v-switch__track[data-v-08f43784] {
  background-color: #000000 !important;
  border: 2px solid #FFFF00 !important;
}

/* Avatar en alto contraste */
.high-contrast-drawer .v-avatar[data-v-08f43784],
.high-contrast-drawer .v-avatar.v-avatar[data-v-08f43784] {
  border: 2px solid #FFFF00 !important;
  background-color: #FFFF00 !important;
}
.high-contrast-drawer .v-avatar .v-icon[data-v-08f43784] {
  color: #000000 !important;
}

/* ===================================================
   ESTILOS PARA ALTO CONTRASTE EN APP BAR
   ================================================== */

/* App bar en alto contraste - Con mayor especificidad */
.high-contrast-app-bar.v-app-bar[data-v-08f43784] {
  background-color: #000000 !important;
  color: #FFFF00 !important;
  border-bottom: 3px solid #FFFF00 !important;
}
.high-contrast-app-bar .v-toolbar__content[data-v-08f43784] {
  background-color: #000000 !important;
}
.high-contrast-app-bar .navbar-title[data-v-08f43784] {
  color: #FFFF00 !important;
  font-weight: bold !important;
}
.high-contrast-app-bar .v-btn[data-v-08f43784],
.high-contrast-app-bar .v-btn.v-btn[data-v-08f43784] {
  color: #FFFF00 !important;
  border: 1px solid #FFFF00 !important;
  background-color: #000000 !important;
}
.high-contrast-app-bar .v-btn[data-v-08f43784]:hover,
.high-contrast-app-bar .v-btn.v-btn[data-v-08f43784]:hover {
  background-color: #FFFF00 !important;
  color: #000000 !important;
}
.high-contrast-app-bar .v-icon[data-v-08f43784],
.high-contrast-app-bar .v-icon.v-icon[data-v-08f43784] {
  color: #FFFF00 !important;
}
.high-contrast-app-bar .v-btn:hover .v-icon[data-v-08f43784] {
  color: #000000 !important;
}

/* Logo en alto contraste */
.high-contrast-app-bar .v-img[data-v-08f43784] {
  border: 2px solid #FFFF00 !important;
  background-color: #FFFFFF !important;
}

/* Focus states para app bar */
.high-contrast-app-bar .v-btn[data-v-08f43784]:focus,
.high-contrast-app-bar .v-btn.v-btn[data-v-08f43784]:focus {
  outline: 3px solid #FF0000 !important;
  outline-offset: 2px !important;
  background-color: #FFFFFF !important;
  color: #000000 !important;
}
.high-contrast-app-bar .v-btn:focus .v-icon[data-v-08f43784] {
  color: #000000 !important;
}


.footer[data-v-5261052a] {
  background-color: #2A3B5F;
  color: #ffffff;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.container[data-v-5261052a] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.footer-text[data-v-5261052a] {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  opacity: 1;
  order: 1;
}
.footer-links[data-v-5261052a] {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  order: 2;
}
.footer-link[data-v-5261052a] {
  color: #FFA500;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  opacity: 0.9;
  font-weight: 500;
}
.footer-link[data-v-5261052a]:hover {
  color: #FFB84D;
  opacity: 1;
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
.container[data-v-5261052a] {
    gap: 10px;
}
.footer-links[data-v-5261052a] {
    gap: 20px;
}
}
@media (max-width: 480px) {
.footer[data-v-5261052a] {
    padding: 15px 0;
}
.footer-links[data-v-5261052a] {
    flex-direction: column;
    gap: 10px;
}
}

/* Tema oscuro */
.v-theme--dark .footer[data-v-5261052a] {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
  border-top-color: #404040 !important;
}
.v-theme--dark .footer .footer-text[data-v-5261052a] {
  color: #ffffff !important;
}
.v-theme--dark .footer .footer-link[data-v-5261052a] {
  color: #64b5f6 !important;
}
.v-theme--dark .footer .footer-link[data-v-5261052a]:hover {
  color: #90CAF9 !important;
}

/* Alto contraste */
.high-contrast-mode .footer[data-v-5261052a] {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-top: 3px solid #ffffff !important;
}
.high-contrast-mode .footer .footer-text[data-v-5261052a] {
  color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 600;
}
.high-contrast-mode .footer .footer-link[data-v-5261052a] {
  color: #FFFF00 !important;
  opacity: 1 !important;
  font-weight: 600;
  text-decoration: underline;
}
.high-contrast-mode .footer .footer-link[data-v-5261052a]:hover,
.high-contrast-mode .footer .footer-link[data-v-5261052a]:focus {
  background-color: #FFFF00 !important;
  color: #000000 !important;
  padding: 4px 8px;
  border-radius: 3px;
  outline: 3px solid #FFFF00;
  outline-offset: 2px;
  text-decoration: none;
}


.cart-button[data-v-765b86a1] {
  position: relative;
}
.cart-item[data-v-765b86a1] {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.cart-item[data-v-765b86a1]:last-child {
  border-bottom: none;
}
@media (max-width: 600px) {
.cart-item .v-list-item-title[data-v-765b86a1] {
    font-size: 0.9rem;
}
}

/* **Paleta de colores** */
$color-primary: #2E8B57; /* Verde Esmeralda */
$color-secondary: #2A3B5F; /* Azul Marino */
$color-accent: #FFA500; /* Naranja */
$color-light: #ffffff;
$color-dark: #333333;
$color-background: #f5f5f5;
$color-text: #000000;
$color-border: #dddddd;

/* Fuentes */
$font-primary: 'Roboto', sans-serif;
$font-secondary: 'Playfair Display', serif;
$font-size-base: 16px;
$font-size-small: 14px;
$font-size-large: 18px;
$font-size-xlarge: 24px;
$font-size-xxlarge: 32px;

/* Espaciados */
$spacing-xs: 0.25rem;
$spacing-sm: 0.5rem;
$spacing-md: 1rem;
$spacing-lg: 1.5rem;
$spacing-xl: 2rem;

/* Breakpoints para media queries */
$breakpoint-sm: 576px;
$breakpoint-md: 768px;
$breakpoint-lg: 992px;
$breakpoint-xl: 1200px;

/* Bordes y sombras */
$border-radius: 5px;
$box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

/* Import variables first */

/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Estilos globales */
body {
  font-family: $font-primary;
  background-color: $color-background;
  color: $color-text;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  font-size: $font-size-base;
}

h1, h2, h3, h4, h5, h6 {
  font-family: $font-secondary;
  color: $color-primary;
  line-height: 1.2;
  margin: 0 0 0.5em 0;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
  line-height: 1.5;
}

a {
  color: $color-primary;
  text-decoration: none;
  transition: color 0.3s ease;
  
  &:hover {
    text-decoration: underline;
    color: darken($color-primary, 10%);
  }
}

/* Common utility classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.text-center {
  text-align: center;
}

/* Margin utilities */
.mt-1 { margin-top: 4px !important; }
.mt-2 { margin-top: 8px !important; }
.mt-3 { margin-top: 12px !important; }
.mt-4 { margin-top: 16px !important; }
.mt-5 { margin-top: 20px !important; }
.mt-6 { margin-top: 24px !important; }

.mb-1 { margin-bottom: 4px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-3 { margin-bottom: 12px !important; }
.mb-4 { margin-bottom: 16px !important; }
.mb-5 { margin-bottom: 20px !important; }
.mb-6 { margin-bottom: 24px !important; }

.ms-1 { margin-left: 4px !important; }
.ms-2 { margin-left: 8px !important; }
.ms-3 { margin-left: 12px !important; }
.ms-4 { margin-left: 16px !important; }

.me-1 { margin-right: 4px !important; }
.me-2 { margin-right: 8px !important; }
.me-3 { margin-right: 12px !important; }
.me-4 { margin-right: 16px !important; }

/* Display utilities */
.d-flex { display: flex !important; }
.justify-space-between { justify-content: space-between !important; }
.align-center { align-items: center !important; }
.text-center { text-align: center !important; }

/* Buttons */
.btn {
  display: inline-block;
  padding: $spacing-sm $spacing-md;
  font-size: $font-size-base;
  text-align: center;
  text-decoration: none;
  border-radius: $border-radius;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: $color-primary;
  color: $color-light;
  border-color: $color-primary;
  
  &:hover {
    background-color: darken($color-primary, 10%);
    border-color: darken($color-primary, 10%);
  }
}

.btn-secondary {
  background-color: $color-secondary;
  color: $color-light;
  border-color: $color-secondary;
  
  &:hover {
    background-color: darken($color-secondary, 10%);
    border-color: darken($color-secondary, 10%);
  }
}

/* Forms */
.form-group {
  margin-bottom: $spacing-md;
}

.form-control {
  display: block;
  width: 100%;
  padding: $spacing-sm;
  font-size: $font-size-base;
  line-height: 1.5;
  color: $color-dark;
  background-color: $color-light;
  border: 1px solid $color-border;
  border-radius: $border-radius;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  
  &:focus {
    border-color: $color-primary;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba($color-primary, 0.25);
  }
}

/* Alerts */
.alert {
  position: relative;
  padding: $spacing-sm $spacing-md;
  margin-bottom: $spacing-md;
  border: 1px solid transparent;
  border-radius: $border-radius;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

/* Dashboard styles */
.dashboard-card {
  margin-bottom: 20px;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

/* Add box shadow to all cards */
.v-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
  transition: transform 0.2s, box-shadow 0.2s;
}

.v-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-2px);
}

/* Make sure buttons have proper spacing */
.v-btn {
  text-transform: none !important; /* Prevents all-caps button text */
}

/* Fix icon alignment in buttons */
.v-btn .v-icon {
  margin-right: 4px;
}


/* Google Fonts Import */

/* Import global styles */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#app {
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  transition: all 0.3s ease;
}

/* ===== TEMA CLARO - GLOBAL ===== */
.v-theme--light {
  --v-theme-background: #FFFFFF;
  --v-theme-surface: #FFFFFF;
  --v-theme-primary: #2E8B57;
  --v-theme-secondary: #424242;
  --v-theme-on-background: #000000;
  --v-theme-on-surface: #000000;
}
.v-theme--light body {
  background-color: #FFFFFF;
  color: #000000;
}
.v-theme--light .v-application {
  background: #FFFFFF !important;
  color: #000000 !important;
}

/* ===== TEMA OSCURO - GLOBAL ===== */
.v-theme--dark {
  --v-theme-background: #121212;
  --v-theme-surface: #1E1E1E;
  --v-theme-primary: #4CAF50;
  --v-theme-secondary: #616161;
  --v-theme-on-background: #FFFFFF;
  --v-theme-on-surface: #FFFFFF;
}
.v-theme--dark body {
  background-color: #121212;
  color: #E2E8F0;
}
.v-theme--dark .v-application {
  background: #121212 !important;
  color: #E2E8F0 !important;
}

/* ===== ALTO CONTRASTE - GLOBAL ===== */
.high-contrast-mode {
  --v-theme-background: #FFFFFF !important;
  --v-theme-surface: #FFFFFF !important;
  --v-theme-primary: #000000 !important;
  --v-theme-secondary: #000000 !important;
  --v-theme-on-background: #000000 !important;
  --v-theme-on-surface: #000000 !important;
}
.high-contrast-mode body {
  background-color: #FFFFFF !important;
  color: #000000 !important;
}
.high-contrast-mode .v-application {
  background: #FFFFFF !important;
  color: #000000 !important;
}
.v-card {
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

/* ===== CARDS RESPONSIVE A TEMAS ===== */
.v-theme--light .v-card {
  background-color: #FFFFFF;
  color: #000000;
}
.v-theme--dark .v-card {
  background-color: #1E1E1E;
  color: #E2E8F0;
}
.high-contrast-mode .v-card {
  background-color: #FFFFFF !important;
  color: #000000 !important;
  border: 2px solid #000000 !important;
}

/* Accessibility improvements */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 9999;
  border-radius: 4px;
}
.skip-link:focus {
  top: 6px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
.v-btn {
    border: 2px solid currentColor !important;
}
.v-card {
    border: 1px solid currentColor !important;
}
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
* {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}
}

/* Focus indicators - Solo aplicar cuando foco mejorado NO está activo */
:not(.enhanced-focus-mode) *:focus {
  outline: 2px solid #2E8B57;
  outline-offset: 2px;
}
:not(.enhanced-focus-mode) button:focus,
:not(.enhanced-focus-mode) .v-btn:focus {
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.3);
}

/* ===== TRANSICIONES SUAVES PARA CAMBIOS DE TEMA ===== */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Mejorar transiciones para elementos Vuetify */
.v-btn,
.v-card,
.v-app-bar,
.v-navigation-drawer,
.v-main,
.v-application {
  transition: all 0.3s ease !important;
}

/* ===== BOTÓN FLOTANTE DEL CARRITO ===== */
.floating-cart-button {
  position: fixed !important;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  border-radius: 50% !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.floating-cart-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
}

/* Estado vacío - Verde */
.floating-cart-button.cart-empty {
  background-color: #2E8B57 !important;
}
.v-theme--dark .floating-cart-button.cart-empty {
  background-color: #4CAF50 !important;
}

/* Estado con items - Rojo con animación pulsante */
.floating-cart-button.cart-has-items {
  background-color: #f44336 !important;
  animation: cartPulse 2s infinite;
}
.v-theme--dark .floating-cart-button.cart-has-items {
  background-color: #ff5252 !important;
  animation: cartPulse 2s infinite;
}

/* Animación de pulso */
@keyframes cartPulse {
0% {
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.3), 0 0 0 0 rgba(244, 67, 54, 0.7);
}
50% {
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.4), 0 0 0 10px rgba(244, 67, 54, 0);
}
100% {
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.3), 0 0 0 0 rgba(244, 67, 54, 0);
}
}

/* Animación para tema oscuro */
@keyframes cartPulseDark {
0% {
    box-shadow: 0 6px 20px rgba(255, 82, 82, 0.3), 0 0 0 0 rgba(255, 82, 82, 0.7);
}
50% {
    box-shadow: 0 6px 20px rgba(255, 82, 82, 0.4), 0 0 0 10px rgba(255, 82, 82, 0);
}
100% {
    box-shadow: 0 6px 20px rgba(255, 82, 82, 0.3), 0 0 0 0 rgba(255, 82, 82, 0);
}
}
.v-theme--dark .floating-cart-button.cart-has-items {
  animation: cartPulseDark 2s infinite;
}

/* Responsive para móvil */
@media (max-width: 768px) {
.floating-cart-button {
    bottom: 16px;
    right: 16px;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
}
}

/* Alto contraste para botón flotante */
.high-contrast-mode .floating-cart-button.cart-empty {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  border: 3px solid #FFFFFF !important;
}
.high-contrast-mode .floating-cart-button.cart-has-items {
  background-color: #FF0000 !important;
  color: #FFFFFF !important;
  border: 3px solid #FFFFFF !important;
  animation: cartPulseHighContrast 2s infinite;
}

/* Animación para alto contraste */
@keyframes cartPulseHighContrast {
0% {
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5), 0 0 0 0 rgba(255, 0, 0, 0.8);
}
50% {
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.7), 0 0 0 12px rgba(255, 0, 0, 0);
}
100% {
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5), 0 0 0 0 rgba(255, 0, 0, 0);
}
}

/* Asegurar que el icono y badge se centren correctamente */
.floating-cart-button .v-btn__content {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Badge positioning para botón flotante */
.floating-cart-button .v-badge {
  width: 100% !important;
  height: 100% !important;
}
.floating-cart-button .v-badge__wrapper {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* =========================================
   ESTILOS GLOBALES DE ACCESIBILIDAD
   Academia Virtual - Sistema Simplificado
   ========================================= */

/* Variables CSS para accesibilidad */
:root {
  --accessibility-text-scale: 1;
  --focus-color: #2196F3;
  --focus-width: 3px;
}

/* =========================================
   ESTILOS GLOBALES PARA TODAS LAS VISTAS
   ========================================= */

/* Asegurar que todas las vistas respeten el tema */
.v-application {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Estilos base para vistas */
.v-main {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Fondo y texto para modo claro */
.v-theme--light .v-main {
  background-color: #FFFFFF !important;
  color: #000000 !important;
}

/* Fondo y texto para modo oscuro */
.v-theme--dark .v-main {
  background-color: #121212 !important;
  color: #E2E8F0 !important;
}

/* Fondo y texto para alto contraste */
.high-contrast-mode .v-main {
  background-color: #FFFFFF !important;
  color: #000000 !important;
}

/* =========================================
   SISTEMA DE ESCALADO DE TEXTO - SIMPLIFICADO
   ========================================= */

/* Variables de escalado */
html.text-scale-80 {
  --accessibility-text-scale: 0.8;
}

html.text-scale-90 {
  --accessibility-text-scale: 0.9;
}

html.text-scale-100 {
  --accessibility-text-scale: 1;
}

html.text-scale-110 {
  --accessibility-text-scale: 1.1;
}

html.text-scale-120 {
  --accessibility-text-scale: 1.2;
}

html.text-scale-130 {
  --accessibility-text-scale: 1.3;
}

/* ===== ESCALADO CONSERVADOR - SOLO CONTENIDO ===== */
/* Solo afectar elementos de contenido específicos, NO componentes de UI */

/* PÁRRAFOS Y TEXTO DE CONTENIDO */
html.text-scale-110 .v-main p,
html.text-scale-110 .v-card-text p,
html.text-scale-110 .content-area p,
html.text-scale-110 article p,
html.text-scale-110 .text-content {
  font-size: 17.6px !important;
  line-height: 1.6 !important;
}

html.text-scale-120 .v-main p,
html.text-scale-120 .v-card-text p,
html.text-scale-120 .content-area p,
html.text-scale-120 article p,
html.text-scale-120 .text-content {
  font-size: 19.2px !important;
  line-height: 1.6 !important;
}

html.text-scale-130 .v-main p,
html.text-scale-130 .v-card-text p,
html.text-scale-130 .content-area p,
html.text-scale-130 article p,
html.text-scale-130 .text-content {
  font-size: 20.8px !important;
  line-height: 1.6 !important;
}

/* TÍTULOS DE CONTENIDO - Solo en áreas de contenido */
html.text-scale-110 .v-main h1:not(.v-toolbar-title),
html.text-scale-110 .v-card-text h1,
html.text-scale-110 .content-area h1 {
  font-size: 35.2px !important;
}

html.text-scale-110 .v-main h2:not(.v-toolbar-title),
html.text-scale-110 .v-card-text h2,
html.text-scale-110 .content-area h2 {
  font-size: 26.4px !important;
}

html.text-scale-120 .v-main h1:not(.v-toolbar-title),
html.text-scale-120 .v-card-text h1,
html.text-scale-120 .content-area h1 {
  font-size: 38.4px !important;
}

html.text-scale-120 .v-main h2:not(.v-toolbar-title),
html.text-scale-120 .v-card-text h2,
html.text-scale-120 .content-area h2 {
  font-size: 28.8px !important;
}

html.text-scale-130 .v-main h1:not(.v-toolbar-title),
html.text-scale-130 .v-card-text h1,
html.text-scale-130 .content-area h1 {
  font-size: 41.6px !important;
}

html.text-scale-130 .v-main h2:not(.v-toolbar-title),
html.text-scale-130 .v-card-text h2,
html.text-scale-130 .content-area h2 {
  font-size: 31.2px !important;
}

/* ===== FORMULARIOS Y CAMPOS DE ENTRADA ===== */
/* Solo elementos de entrada de texto, NO botones ni navegación */
html.text-scale-110 .v-text-field input,
html.text-scale-110 .v-textarea textarea,
html.text-scale-110 .v-select input {
  font-size: 17.6px !important;
}

html.text-scale-120 .v-text-field input,
html.text-scale-120 .v-textarea textarea,
html.text-scale-120 .v-select input {
  font-size: 19.2px !important;
}

html.text-scale-130 .v-text-field input,
html.text-scale-130 .v-textarea textarea,
html.text-scale-130 .v-select input {
  font-size: 20.8px !important;
}

/* ===== LISTAS DE CONTENIDO ===== */
/* Solo listas de contenido, NO listas de navegación */
html.text-scale-110 .v-main .v-list-item-title,
html.text-scale-110 .content-area .v-list-item-title {
  font-size: 17.6px !important;
}

html.text-scale-120 .v-main .v-list-item-title,
html.text-scale-120 .content-area .v-list-item-title {
  font-size: 19.2px !important;
}

html.text-scale-130 .v-main .v-list-item-title,
html.text-scale-130 .content-area .v-list-item-title {
  font-size: 20.8px !important;
}

/* ===== EXCLUSIONES COMPLETAS - NO ESCALAR ===== */
/* Todos los elementos de navegación, UI y controles mantienen su tamaño original */
html[class*="text-scale-"] .v-app-bar,
html[class*="text-scale-"] .v-app-bar *,
html[class*="text-scale-"] .v-navigation-drawer,
html[class*="text-scale-"] .v-navigation-drawer *,
html[class*="text-scale-"] .v-toolbar,
html[class*="text-scale-"] .v-toolbar *,
html[class*="text-scale-"] .v-bottom-navigation,
html[class*="text-scale-"] .v-bottom-navigation *,
html[class*="text-scale-"] .v-tabs,
html[class*="text-scale-"] .v-tabs *,
html[class*="text-scale-"] .v-breadcrumbs,
html[class*="text-scale-"] .v-breadcrumbs *,
html[class*="text-scale-"] .v-btn,
html[class*="text-scale-"] .v-btn *,
html[class*="text-scale-"] .v-chip,
html[class*="text-scale-"] .v-chip *,
html[class*="text-scale-"] .v-badge,
html[class*="text-scale-"] .v-badge *,
html[class*="text-scale-"] .v-avatar,
html[class*="text-scale-"] .v-avatar *,
html[class*="text-scale-"] .v-menu,
html[class*="text-scale-"] .v-menu *,
html[class*="text-scale-"] .v-overlay,
html[class*="text-scale-"] .v-overlay *,
html[class*="text-scale-"] .v-dialog .v-card-actions,
html[class*="text-scale-"] .v-dialog .v-card-actions *,
html[class*="text-scale-"] .v-snackbar,
html[class*="text-scale-"] .v-snackbar *,
html[class*="text-scale-"] .v-alert .v-alert__prepend,
html[class*="text-scale-"] .v-alert .v-alert__append,
html[class*="text-scale-"] .v-pagination,
html[class*="text-scale-"] .v-pagination *,
html[class*="text-scale-"] .v-data-table-header,
html[class*="text-scale-"] .v-data-table-header *,
html[class*="text-scale-"] .navbar-title,
html[class*="text-scale-"] .accessibility-menu,
html[class*="text-scale-"] .accessibility-menu *,
html[class*="text-scale-"] .v-icon,
html[class*="text-scale-"] .mdi,
html[class*="text-scale-"] .material-icons,
html[class*="text-scale-"] [class*="icon"],
html[class*="text-scale-"] .v-card-title {
  font-size: inherit !important;
}

/* =========================================
   MENU DE ACCESIBILIDAD - ESTILOS MEJORADOS
   ========================================= */

/* Menú base - siempre visible y bien contrastado */
.accessibility-menu {
  background-color: #ffffff !important;
  color: #333333 !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
}

/* Títulos y texto del menú */
.accessibility-menu .v-card-title {
  color: #2E8B57 !important;
  font-weight: 600 !important;
}

.accessibility-menu .font-weight-medium {
  color: #333333 !important;
  font-weight: 500 !important;
}

.accessibility-menu .text-caption {
  color: #666666 !important;
  font-size: 12px !important;
}

/* Iconos del menú */
.accessibility-menu .v-icon {
  opacity: 1 !important;
}

/* Switches - mejorar visibilidad */
.accessibility-menu .v-switch {
  color: #2E8B57 !important;
}

.accessibility-menu .v-switch .v-selection-control__wrapper {
  background-color: transparent !important;
}

.accessibility-menu .v-switch .v-switch__track {
  background-color: #e0e0e0 !important;
  opacity: 1 !important;
  border: 1px solid #cccccc !important;
  min-width: 40px !important;
  height: 20px !important;
}

.accessibility-menu .v-switch--active .v-switch__track {
  background-color: #2E8B57 !important;
  border: 1px solid #2E8B57 !important;
}

/* Thumb del switch - base */
.accessibility-menu .v-switch__thumb {
  background-color: #FFFFFF !important;
  border: 2px solid #cccccc !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
  width: 18px !important;
  height: 18px !important;
  opacity: 1 !important;
}

.accessibility-menu .v-switch--active .v-switch__thumb {
  background-color: #FFFFFF !important;
  border: 2px solid #2E8B57 !important;
  box-shadow: 0 2px 6px rgba(46, 139, 87, 0.3) !important;
}

.accessibility-menu .v-switch__thumb {
  background-color: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
  border: 1px solid #cccccc !important;
  width: 18px !important;
  height: 18px !important;
}

.accessibility-menu .v-switch--active .v-switch__thumb {
  background-color: #ffffff !important;
  border: 1px solid #2E8B57 !important;
  box-shadow: 0 2px 6px rgba(46, 139, 87, 0.3) !important;
}

/* Botones del menú */
.accessibility-menu .v-btn {
  border: 1px solid #e0e0e0 !important;
  background-color: #f8f9fa !important;
  color: #333333 !important;
}

.accessibility-menu .v-btn:hover {
  background-color: #e9ecef !important;
  border-color: #2E8B57 !important;
}

.accessibility-menu .v-btn--disabled {
  opacity: 0.6 !important;
  background-color: #f1f1f1 !important;
  color: #999999 !important;
}

/* =========================================
   TEMA OSCURO - MENU DE ACCESIBILIDAD
   ========================================= */

.v-theme--dark .accessibility-menu {
  background-color: #1E1E1E !important;
  color: #ffffff !important;
  border: 1px solid #444444 !important;
}

.v-theme--dark .accessibility-menu .v-card-title {
  color: #4CAF50 !important;
}

.v-theme--dark .accessibility-menu .font-weight-medium {
  color: #ffffff !important;
}

.v-theme--dark .accessibility-menu .text-caption {
  color: #cccccc !important;
}

.v-theme--dark .accessibility-menu .v-switch .v-switch__track {
  background-color: #2D2D2D !important;
  border: 2px solid #555555 !important;
  opacity: 1 !important;
  min-width: 44px !important;
  height: 24px !important;
}

.v-theme--dark .accessibility-menu .v-switch--active .v-switch__track {
  background-color: #2D4A35 !important;
  border: 2px solid #4CAF50 !important;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.3) !important;
}

.v-theme--dark .accessibility-menu .v-switch__thumb {
  background-color: #FFFFFF !important;
  border: 3px solid #E0E0E0 !important;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.8) !important;
  width: 20px !important;
  height: 20px !important;
  opacity: 1 !important;
}

.v-theme--dark .accessibility-menu .v-switch--active .v-switch__thumb {
  background-color: #FFFFFF !important;
  border: 3px solid #4CAF50 !important;
  box-shadow: 0 3px 12px rgba(76, 175, 80, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.9) !important;
  width: 20px !important;
  height: 20px !important;
}

.v-theme--dark .accessibility-menu .v-switch .v-selection-control__wrapper {
  opacity: 1 !important;
}

.v-theme--dark .accessibility-menu .v-switch .v-selection-control__input {
  opacity: 1 !important;
}

/* Reglas adicionales para máxima visibilidad en modo oscuro */
.v-theme--dark .accessibility-menu .v-switch {
  opacity: 1 !important;
}

.v-theme--dark .accessibility-menu .v-switch .v-selection-control {
  opacity: 1 !important;
}

.v-theme--dark .accessibility-menu .v-switch__loader {
  display: none !important;
}

/* Asegurar que el input del switch funcione correctamente */
.v-theme--dark .accessibility-menu .v-switch input[type="checkbox"] {
  opacity: 0 !important;
  position: absolute !important;
}

/* Mejorar el contraste del wrapper completo */
.v-theme--dark .accessibility-menu .v-selection-control__wrapper::before {
  background-color: transparent !important;
}

.v-theme--dark .accessibility-menu .v-selection-control__wrapper::after {
  background-color: transparent !important;
}

.v-theme--dark .accessibility-menu .v-btn {
  background-color: #2D2D2D !important;
  color: #ffffff !important;
  border-color: #444444 !important;
}

.v-theme--dark .accessibility-menu .v-btn:hover {
  background-color: #404040 !important;
  border-color: #4CAF50 !important;
}

.v-theme--dark .accessibility-menu .v-btn--disabled {
  background-color: #1A1A1A !important;
  color: #666666 !important;
}

/* Chips en tema oscuro */
.v-theme--dark .accessibility-menu .v-chip {
  background-color: #2D2D2D !important;
  color: #ffffff !important;
  border-color: #444444 !important;
}

/* =========================================
   ALTO CONTRASTE - MENU DE ACCESIBILIDAD
   ========================================= */

.high-contrast-mode .accessibility-menu {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  border: 3px solid #FFFFFF !important;
}

.high-contrast-mode .accessibility-menu .v-card-title {
  color: #FFFF00 !important;
}

.high-contrast-mode .accessibility-menu .font-weight-medium {
  color: #FFFFFF !important;
}

.high-contrast-mode .accessibility-menu .text-caption {
  color: #FFFFFF !important;
}

.high-contrast-mode .accessibility-menu .v-switch .v-switch__track {
  background-color: #FFFFFF !important;
}

.high-contrast-mode .accessibility-menu .v-switch--active .v-switch__track {
  background-color: #FFFF00 !important;
}

.high-contrast-mode .accessibility-menu .v-switch__thumb {
  background-color: #000000 !important;
  border: 2px solid #FFFFFF !important;
}

.high-contrast-mode .accessibility-menu .v-btn {
  background-color: #000000 !important;
  color: #FFFF00 !important;
  border: 2px solid #FFFF00 !important;
}

.high-contrast-mode .accessibility-menu .v-btn:hover {
  background-color: #FFFF00 !important;
  color: #000000 !important;
}

.high-contrast-mode .accessibility-menu .v-icon {
  color: #FFFF00 !important;
}

/* =========================================
   RESPONSIVE - MENU DE ACCESIBILIDAD
   ========================================= */

@media (max-width: 768px) {
  .accessibility-menu {
    min-width: 320px !important;
    max-width: 90vw !important;
    margin: 8px !important;
  }
  
  /* Overlay del menú en móvil */
  .v-menu > .v-overlay__content {
    position: fixed !important;
    top: 60px !important;
    right: 10px !important;
    left: 10px !important;
    width: auto !important;
    max-width: none !important;
    min-width: 300px !important;
    z-index: 9999 !important;
  }
  
  /* Fondo del overlay en móvil */
  .v-overlay__scrim {
    background-color: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(2px) !important;
  }
  
  .v-theme--dark .v-overlay__scrim {
    background-color: rgba(0, 0, 0, 0.8) !important;
  }
  
  .high-contrast-mode .v-overlay__scrim {
    background-color: rgba(0, 0, 0, 0.9) !important;
  }
}

/* =========================================
   MODO ALTO CONTRASTE
   ========================================= */
.high-contrast-mode {
  --v-theme-background: #000000 !important;
  --v-theme-surface: #000000 !important;
  --v-theme-primary: #FFFF00 !important;
  --v-theme-secondary: #00FFFF !important;
  --v-theme-on-background: #FFFFFF !important;
  --v-theme-on-surface: #FFFFFF !important;
  --v-theme-on-primary: #000000 !important;
  --v-theme-error: #FF0000 !important;
  --v-theme-success: #00FF00 !important;
  --v-theme-warning: #FFFF00 !important;
  --v-theme-info: #00FFFF !important;
}

.high-contrast-mode {
  background-color: #000000 !important;
  color: #FFFFFF !important;
}

.high-contrast-mode .v-application {
  background-color: #000000 !important;
  color: #FFFFFF !important;
}

.high-contrast-mode .v-main {
  background-color: #000000 !important;
  color: #FFFFFF !important;
}

.high-contrast-mode .v-card {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  border: 2px solid #FFFFFF !important;
}

.high-contrast-mode .v-btn {
  border: 2px solid currentColor !important;
  background-color: #000000 !important;
  color: #FFFF00 !important;
}

.high-contrast-mode .v-btn:hover {
  background-color: #FFFF00 !important;
  color: #000000 !important;
}

.high-contrast-mode .v-text-field input,
.high-contrast-mode .v-select__selection,
.high-contrast-mode .v-textarea textarea {
  color: #FFFFFF !important;
  background-color: #000000 !important;
  border: 2px solid #FFFFFF !important;
}

.high-contrast-mode .v-app-bar {
  background-color: #000000 !important;
  border-bottom: 3px solid #FFFFFF !important;
}

.high-contrast-mode .v-list {
  background-color: #000000 !important;
}

.high-contrast-mode .v-list-item {
  color: #FFFFFF !important;
  border-bottom: 1px solid #333333 !important;
}

.high-contrast-mode .v-list-item:hover {
  background-color: #FFFF00 !important;
  color: #000000 !important;
}

.high-contrast-mode .v-navigation-drawer {
  background-color: #000000 !important;
  border-right: 3px solid #FFFFFF !important;
}

/* =========================================
   MOVIMIENTO REDUCIDO
   ========================================= */
.reduced-motion-mode,
.reduced-motion-mode * {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

.reduced-motion-mode .v-btn {
  transition: none !important;
}

.reduced-motion-mode .v-card {
  transition: none !important;
}

.reduced-motion-mode .v-list-item {
  transition: none !important;
}

.reduced-motion-mode .v-navigation-drawer {
  transition: none !important;
}

.reduced-motion-mode .v-overlay {
  transition: none !important;
}

/* =========================================
   ENFOQUE MEJORADO
   ========================================= */
.enhanced-focus-mode *:focus {
  outline: 4px solid var(--focus-color) !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 6px rgba(33, 150, 243, 0.3) !important;
}

.enhanced-focus-mode .v-btn:focus {
  outline: 4px solid var(--focus-color) !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 6px rgba(33, 150, 243, 0.3) !important;
  transform: scale(1.05) !important;
}

.enhanced-focus-mode .v-text-field:focus-within {
  outline: 4px solid var(--focus-color) !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 6px rgba(33, 150, 243, 0.3) !important;
}

.enhanced-focus-mode .v-list-item:focus {
  outline: 4px solid var(--focus-color) !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 6px rgba(33, 150, 243, 0.3) !important;
  background-color: rgba(33, 150, 243, 0.1) !important;
}

.enhanced-focus-mode .v-card:focus {
  outline: 4px solid var(--focus-color) !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 6px rgba(33, 150, 243, 0.3) !important;
  transform: scale(1.02) !important;
}

.enhanced-focus-mode input:focus,
.enhanced-focus-mode textarea:focus,
.enhanced-focus-mode select:focus {
  outline: 4px solid var(--focus-color) !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 6px rgba(33, 150, 243, 0.3) !important;
}

/* =========================================
   TOOLTIPS MEJORADOS
   ========================================= */
.v-tooltip .v-overlay__content {
  background-color: rgba(0, 0, 0, 0.9) !important;
  color: white !important;
  font-size: 14px !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

/* =========================================
   TEMAS OSCUROS MEJORADOS
   ========================================= */
.v-theme--dark {
  --v-theme-background: #121212 !important;
  --v-theme-surface: #1E1E1E !important;
  --v-theme-primary: #4CAF50 !important;
  --v-theme-secondary: #616161 !important;
  --v-theme-on-background: #FFFFFF !important;
  --v-theme-on-surface: #FFFFFF !important;
}

.v-theme--dark .v-application {
  background-color: #121212 !important;
  color: #FFFFFF !important;
}

.v-theme--dark .v-main {
  background-color: #121212 !important;
  color: #FFFFFF !important;
}

.v-theme--dark .v-card {
  background-color: #1E1E1E !important;
  color: #FFFFFF !important;
}

.v-theme--dark .v-app-bar {
  background-color: #1E1E1E !important;
  color: #FFFFFF !important;
}

.v-theme--dark .v-navigation-drawer {
  background-color: #1E1E1E !important;
  color: #FFFFFF !important;
}

/* =========================================
   MODO CLARO MEJORADO
   ========================================= */
.v-theme--light {
  --v-theme-background: #FFFFFF !important;
  --v-theme-surface: #FFFFFF !important;
  --v-theme-primary: #2E8B57 !important;
  --v-theme-secondary: #424242 !important;
  --v-theme-on-background: #000000 !important;
  --v-theme-on-surface: #000000 !important;
}

.v-theme--light .v-application {
  background-color: #FFFFFF !important;
  color: #000000 !important;
}

.v-theme--light .v-main {
  background-color: #FFFFFF !important;
  color: #000000 !important;
}

.v-theme--light .v-app-bar {
  background-color: #FFFFFF !important;
  color: #000000 !important;
  border-bottom: 1px solid #E0E0E0 !important;
}

.v-theme--light .v-navigation-drawer {
  background-color: #FFFFFF !important;
  color: #000000 !important;
  border-right: 1px solid #E0E0E0 !important;
}

.v-theme--light .v-navigation-drawer .v-list-item {
  color: #000000 !important;
}

.v-theme--light .v-navigation-drawer .v-list-item:hover {
  background-color: #F5F5F5 !important;
}

.v-theme--light .v-app-bar .v-btn {
  color: #000000 !important;
}

.v-theme--light .v-app-bar .v-btn:hover {
  background-color: #F5F5F5 !important;
}

/* ===== ESTILOS ESPECÍFICOS PARA MODO CLARO - FORZADO ===== */
/* Estilos más específicos para asegurar que se apliquen */

.v-application .v-theme--light .v-app-bar,
.v-theme--light .v-app-bar[data-v-*] {
  background-color: #FFFFFF !important;
  color: #000000 !important;
  border-bottom: 1px solid #E0E0E0 !important;
}

.v-application .v-theme--light .v-navigation-drawer,
.v-theme--light .v-navigation-drawer[data-v-*] {
  background-color: #FFFFFF !important;
  color: #000000 !important;
  border-right: 1px solid #E0E0E0 !important;
}

.v-application .v-theme--light .v-app-bar .v-btn,
.v-theme--light .v-app-bar .v-btn[data-v-*] {
  color: #000000 !important;
}

.v-application .v-theme--light .v-app-bar .v-btn:hover,
.v-theme--light .v-app-bar .v-btn:hover[data-v-*] {
  background-color: #F5F5F5 !important;
}

.v-application .v-theme--light .v-navigation-drawer .v-list-item,
.v-theme--light .v-navigation-drawer .v-list-item[data-v-*] {
  color: #000000 !important;
}

.v-application .v-theme--light .v-navigation-drawer .v-list-item:hover,
.v-theme--light .v-navigation-drawer .v-list-item:hover[data-v-*] {
  background-color: #F5F5F5 !important;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 960px) {
  /* Ajustes adicionales para móviles */
  html[class*="text-scale-"] {
    font-size: calc(16px * var(--accessibility-text-scale)) !important;
  }
}

/* =========================================
   FOOTER THEME INTEGRATION
   ========================================= */

/* ===== HIGH CONTRAST MODE FOOTER STYLING ===== */
.high-contrast-mode footer.footer,
body.high-contrast-mode footer.footer,
html.high-contrast-mode footer.footer {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-top: 3px solid #ffffff !important;
}

.high-contrast-mode footer.footer .footer-text,
body.high-contrast-mode footer.footer .footer-text,
html.high-contrast-mode footer.footer .footer-text {
  color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 600 !important;
}

.high-contrast-mode footer.footer .footer-link,
body.high-contrast-mode footer.footer .footer-link,
html.high-contrast-mode footer.footer .footer-link {
  color: #FFFF00 !important;
  opacity: 1 !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
}

.high-contrast-mode footer.footer .footer-link:hover,
.high-contrast-mode footer.footer .footer-link:focus,
body.high-contrast-mode footer.footer .footer-link:hover,
body.high-contrast-mode footer.footer .footer-link:focus,
html.high-contrast-mode footer.footer .footer-link:hover,
html.high-contrast-mode footer.footer .footer-link:focus {
  background-color: #FFFF00 !important;
  color: #000000 !important;
  padding: 4px 8px !important;
  border-radius: 3px !important;
  outline: 3px solid #FFFF00 !important;
  outline-offset: 2px !important;
  text-decoration: none !important;
}

/* ===== DARK MODE FOOTER STYLING ===== */
.v-theme--dark footer.footer,
.theme--dark footer.footer {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
  border-top-color: #404040 !important;
  text-align: center !important;
}

.v-theme--dark footer.footer .container,
.theme--dark footer.footer .container {
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 10px !important;
}

.v-theme--dark footer.footer .footer-text,
.theme--dark footer.footer .footer-text {
  color: #ffffff !important;
  opacity: 1 !important;
  order: 1 !important;
}

.v-theme--dark footer.footer .footer-links,
.theme--dark footer.footer .footer-links {
  justify-content: center !important;
  order: 2 !important;
}

.v-theme--dark footer.footer .footer-link,
.theme--dark footer.footer .footer-link {
  color: #64b5f6 !important;
}

.v-theme--dark footer.footer .footer-link:hover,
.theme--dark footer.footer .footer-link:hover {
  color: #90CAF9 !important;
}

/* ===== LIGHT MODE FOOTER STYLING - MANTIENE #2A3B5F ===== */
.v-theme--light footer.footer,
.theme--light footer.footer {
  background-color: #2A3B5F !important;
  color: #ffffff !important;
  border-top-color: rgba(255, 255, 255, 0.1) !important;
  text-align: center !important;
}

.v-theme--light footer.footer .container,
.theme--light footer.footer .container {
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 10px !important;
}

.v-theme--light footer.footer .footer-text,
.theme--light footer.footer .footer-text {
  color: #ffffff !important;
  opacity: 1 !important;
  order: 1 !important;
}

.v-theme--light footer.footer .footer-links,
.theme--light footer.footer .footer-links {
  justify-content: center !important;
  order: 2 !important;
}

.v-theme--light footer.footer .footer-link,
.theme--light footer.footer .footer-link {
  color: #FFA500 !important;
}

.v-theme--light footer.footer .footer-link:hover,
.theme--light footer.footer .footer-link:hover {
  color: #FFB84D !important;
}

/* ===== FOOTER GENERAL ACCESSIBILITY ===== */
footer.footer {
  transition: all 0.3s ease;
  padding: 1rem 0;
  border-top: 1px solid #e0e0e0;
}

footer.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer.footer .footer-text {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.8;
}

footer.footer .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

footer.footer .footer-link {
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  opacity: 0.8;
}

/* ===== FOOTER RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  footer.footer .container {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  footer.footer .footer-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  footer.footer .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* =========================================
   CART BUTTONS THEME INTEGRATION
   ========================================= */

/* ===== BOTONES DEL CARRITO - MODO CLARO ===== */
.v-theme--light .v-btn--variant-elevated {
  background-color: #2E8B57 !important;
  color: white !important;
  box-shadow: 0 2px 8px rgba(46, 139, 87, 0.3) !important;
  border: 2px solid transparent !important;
  font-weight: 600 !important;
}

.v-theme--light .v-btn--variant-elevated:hover {
  background-color: #228B5A !important;
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.4) !important;
  transform: translateY(-1px);
}

.v-theme--light .v-btn--variant-outlined.v-btn--disabled {
  background-color: #E8F5E8 !important;
  color: #2E8B57 !important;
  border-color: #2E8B57 !important;
  border-width: 2px !important;
  opacity: 1 !important;
  font-weight: 600 !important;
}

/* ===== BOTONES DEL CARRITO - MODO OSCURO ===== */
.v-theme--dark .v-btn--variant-elevated {
  background-color: #4CAF50 !important;
  color: white !important;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3) !important;
  border: 2px solid transparent !important;
  font-weight: 600 !important;
}

.v-theme--dark .v-btn--variant-elevated:hover {
  background-color: #43A047 !important;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4) !important;
  transform: translateY(-1px);
}

.v-theme--dark .v-btn--variant-outlined.v-btn--disabled {
  background-color: #1E1E1E !important;
  color: #81C784 !important;
  border-color: #81C784 !important;
  border-width: 2px !important;
  opacity: 1 !important;
  font-weight: 600 !important;
}

/* ===== BOTONES DEL CARRITO - ALTO CONTRASTE ===== */
.high-contrast-mode .v-btn--variant-elevated,
body.high-contrast-mode .v-btn--variant-elevated,
html.high-contrast-mode .v-btn--variant-elevated {
  background-color: #FFFF00 !important;
  color: #000000 !important;
  border: 3px solid #000000 !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}

.high-contrast-mode .v-btn--variant-elevated:hover,
body.high-contrast-mode .v-btn--variant-elevated:hover,
html.high-contrast-mode .v-btn--variant-elevated:hover {
  background-color: #000000 !important;
  color: #FFFF00 !important;
  border-color: #FFFF00 !important;
}

.high-contrast-mode .v-btn--variant-outlined.v-btn--disabled,
body.high-contrast-mode .v-btn--variant-outlined.v-btn--disabled,
html.high-contrast-mode .v-btn--variant-outlined.v-btn--disabled {
  background-color: #000000 !important;
  color: #FFFF00 !important;
  border: 3px solid #FFFF00 !important;
  opacity: 1 !important;
  font-weight: 700 !important;
}

/* ===== ICONOS EN BOTONES ===== */
.v-btn .v-icon {
  margin-right: 8px !important;
}

/* ===== TRANSICIONES ===== */
.v-btn {
  transition: all 0.3s ease !important;
}

/* =========================================
   DROPDOWNS Y SELECTS - TEMA INTEGRATION
   ========================================= */

/* ===== V-SELECT MENU OVERLAY - MODO CLARO ===== */
.v-theme--light .v-overlay__content {
  background-color: #ffffff !important;
  color: #333 !important;
  border: 1px solid #e0e0e0 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.v-theme--light .v-list {
  background-color: #ffffff !important;
  color: #333 !important;
}

.v-theme--light .v-list-item {
  background-color: transparent !important;
  color: #333 !important;
}

.v-theme--light .v-list-item:hover {
  background-color: #f5f5f5 !important;
  color: #333 !important;
}

.v-theme--light .v-list-item--active {
  background-color: rgba(25, 118, 210, 0.12) !important;
  color: #1976d2 !important;
}

/* ===== V-SELECT MENU OVERLAY - MODO OSCURO ===== */
.v-theme--dark .v-overlay__content {
  background-color: #2d2d2d !important;
  color: #e0e0e0 !important;
  border: 1px solid #404040 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}

.v-theme--dark .v-list {
  background-color: #2d2d2d !important;
  color: #e0e0e0 !important;
}

.v-theme--dark .v-list-item {
  background-color: transparent !important;
  color: #e0e0e0 !important;
}

.v-theme--dark .v-list-item:hover {
  background-color: #404040 !important;
  color: #e0e0e0 !important;
}

.v-theme--dark .v-list-item--active {
  background-color: rgba(144, 202, 249, 0.12) !important;
  color: #90CAF9 !important;
}

/* ===== V-SELECT MENU OVERLAY - ALTO CONTRASTE ===== */
.high-contrast-mode .v-overlay__content,
body.high-contrast-mode .v-overlay__content,
html.high-contrast-mode .v-overlay__content {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 3px solid #000000 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.high-contrast-mode .v-list,
body.high-contrast-mode .v-list,
html.high-contrast-mode .v-list {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.high-contrast-mode .v-list-item,
body.high-contrast-mode .v-list-item,
html.high-contrast-mode .v-list-item {
  background-color: #ffffff !important;
  color: #000000 !important;
  border-bottom: 1px solid #000000 !important;
  font-weight: 500 !important;
}

.high-contrast-mode .v-list-item:hover,
body.high-contrast-mode .v-list-item:hover,
html.high-contrast-mode .v-list-item:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

.high-contrast-mode .v-list-item--active,
body.high-contrast-mode .v-list-item--active,
html.high-contrast-mode .v-list-item--active {
  background-color: #000000 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
}

/* ===== V-SELECT FIELD STYLING ===== */
.v-theme--light .v-select .v-field {
  background-color: #ffffff !important;
  color: #333 !important;
}

.v-theme--dark .v-select .v-field {
  background-color: #2d2d2d !important;
  color: #e0e0e0 !important;
}

.high-contrast-mode .v-select .v-field,
body.high-contrast-mode .v-select .v-field,
html.high-contrast-mode .v-select .v-field {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 2px solid #000000 !important;
  border-radius: 0 !important;
}

/* ===== V-SELECT ICONS ===== */
.v-theme--light .v-select .v-icon {
  color: #666 !important;
}

.v-theme--dark .v-select .v-icon {
  color: #b0b0b0 !important;
}

.high-contrast-mode .v-select .v-icon,
body.high-contrast-mode .v-select .v-icon,
html.high-contrast-mode .v-select .v-icon {
  color: #000000 !important;
}

/* ===== TEXT FIELDS STYLING ===== */
.v-theme--light .v-text-field .v-field {
  background-color: #ffffff !important;
  color: #333 !important;
}

.v-theme--dark .v-text-field .v-field {
  background-color: #2d2d2d !important;
  color: #e0e0e0 !important;
}

.high-contrast-mode .v-text-field .v-field,
body.high-contrast-mode .v-text-field .v-field,
html.high-contrast-mode .v-text-field .v-field {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 2px solid #000000 !important;
  border-radius: 0 !important;
}

/* ===== FORM LABELS ===== */
.v-theme--light .v-label {
  color: #666 !important;
}

.v-theme--dark .v-label {
  color: #b0b0b0 !important;
}

.high-contrast-mode .v-label,
body.high-contrast-mode .v-label,
html.high-contrast-mode .v-label {
  color: #000000 !important;
  font-weight: 700 !important;
}

/* ===== OVERLAY BACKDROP ===== */
.v-theme--light .v-overlay__scrim {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.v-theme--dark .v-overlay__scrim {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

.high-contrast-mode .v-overlay__scrim,
body.high-contrast-mode .v-overlay__scrim,
html.high-contrast-mode .v-overlay__scrim {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

/* ===== PAYMENT FORM SPECIFIC FIXES ===== */
.v-dialog .v-card {
  background-color: inherit !important;
}

.v-theme--light .v-dialog .v-card {
  background-color: #ffffff !important;
  color: #333 !important;
}

.v-theme--dark .v-dialog .v-card {
  background-color: #1e1e1e !important;
  color: #e0e0e0 !important;
}

.high-contrast-mode .v-dialog .v-card,
body.high-contrast-mode .v-dialog .v-card,
html.high-contrast-mode .v-dialog .v-card {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 3px solid #000000 !important;
  border-radius: 0 !important;
}

/* ===== SHOPPING CART DIALOG STYLING ===== */
.v-theme--light .shopping-cart .v-dialog .v-card-title {
  background-color: #f5f5f5 !important;
  color: #333 !important;
  border-bottom: 1px solid #e0e0e0 !important;
}

.v-theme--dark .shopping-cart .v-dialog .v-card-title {
  background-color: #2d2d2d !important;
  color: #e0e0e0 !important;
  border-bottom: 1px solid #404040 !important;
}

.high-contrast-mode .shopping-cart .v-dialog .v-card-title,
body.high-contrast-mode .shopping-cart .v-dialog .v-card-title,
html.high-contrast-mode .shopping-cart .v-dialog .v-card-title {
  background-color: #ffffff !important;
  color: #000000 !important;
  border-bottom: 3px solid #000000 !important;
  font-weight: 700 !important;
}

/* ===== DIALOG BUTTONS ===== */
.v-theme--light .v-dialog .v-btn {
  color: #333 !important;
}

.v-theme--dark .v-dialog .v-btn {
  color: #e0e0e0 !important;
}

.high-contrast-mode .v-dialog .v-btn,
body.high-contrast-mode .v-dialog .v-btn,
html.high-contrast-mode .v-dialog .v-btn {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 2px solid #000000 !important;
  border-radius: 0 !important;
  font-weight: 700 !important;
}

.high-contrast-mode .v-dialog .v-btn:hover,
body.high-contrast-mode .v-dialog .v-btn:hover,
html.high-contrast-mode .v-dialog .v-btn:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}

/* =========================================
   ABOUT PAGE THEME INTEGRATION
   ========================================= */

/* ===== ABOUT PAGE - MODO CLARO ===== */
.v-theme--light .about-page {
  background-color: #f8f9fa !important;
  color: #2a3b5f !important;
}

.v-theme--light .about-page h1 {
  color: #2e8b57 !important;
}

.v-theme--light .about-section {
  background-color: white !important;
  color: #333 !important;
  border-color: #e0e0e0 !important;
}

.v-theme--light .about-section h2 {
  color: #2e8b57 !important;
}

.v-theme--light .about-section p {
  color: #555 !important;
}

/* ===== ABOUT PAGE - MODO OSCURO ===== */
.v-theme--dark .about-page {
  background-color: #1e1e1e !important;
  color: #e0e0e0 !important;
}

.v-theme--dark .about-page h1 {
  color: #81C784 !important;
}

.v-theme--dark .about-section {
  background-color: #2d2d2d !important;
  color: #e0e0e0 !important;
  border-color: #404040 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.v-theme--dark .about-section h2 {
  color: #81C784 !important;
}

.v-theme--dark .about-section p {
  color: #e0e0e0 !important;
}

/* ===== ABOUT PAGE - ALTO CONTRASTE ===== */
.high-contrast-mode .about-page,
body.high-contrast-mode .about-page,
html.high-contrast-mode .about-page {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.high-contrast-mode .about-page h1,
body.high-contrast-mode .about-page h1,
html.high-contrast-mode .about-page h1 {
  color: #000000 !important;
  text-decoration: underline !important;
  font-weight: 700 !important;
}

.high-contrast-mode .about-section,
body.high-contrast-mode .about-section,
html.high-contrast-mode .about-section {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 3px solid #000000 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.high-contrast-mode .about-section h2,
body.high-contrast-mode .about-section h2,
html.high-contrast-mode .about-section h2 {
  color: #000000 !important;
  text-decoration: underline !important;
  font-weight: 700 !important;
}

.high-contrast-mode .about-section p,
body.high-contrast-mode .about-section p,
html.high-contrast-mode .about-section p {
  color: #000000 !important;
  font-weight: 500 !important;
}

.high-contrast-mode .about-section:focus,
body.high-contrast-mode .about-section:focus,
html.high-contrast-mode .about-section:focus {
  outline: 3px solid #000000 !important;
  outline-offset: 2px !important;
}

