<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Estilos para el panel de accesibilidad */
.accessibility-panel {
  position: fixed;
  top: 100px;
  right: -300px;
  width: 280px;
  background-color: white;
  border-radius: 10px 0 0 10px;
  box-shadow: -3px 0 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 15px;
  font-family: var(--font-primary);
}

.accessibility-panel.open {
  right: 0;
}

.accessibility-toggle {
  position: fixed;
  top: 100px;
  right: 0;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 10px 0 0 10px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
}

.accessibility-toggle i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.accessibility-panel h3 {
  margin-top: 0;
  color: var(--color-primary-dark);
  border-bottom: 2px solid var(--color-primary-light);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.accessibility-option {
  margin-bottom: 20px;
}

.accessibility-option h4 {
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 1rem;
}

.btn-group {
  display: flex;
  gap: 5px;
}

.btn-access {
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
  flex: 1;
  transition: all 0.2s ease;
}

.btn-access:hover {
  background-color: #e0e0e0;
}

.btn-access.active {
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
  font-weight: bold;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--color-primary);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.toggle-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.toggle-label {
  font-size: 0.9rem;
}

/* Estilos para los diferentes modos de accesibilidad */

/* Alto contraste */
body.high-contrast {
  background-color: black;
  color: white;
}

body.high-contrast header,
body.high-contrast footer {
  background: #000;
  color: white;
}

body.high-contrast .section-card {
  background-color: #222;
  color: white;
  border-color: yellow;
}

body.high-contrast a,
body.high-contrast h1,
body.high-contrast h2,
body.high-contrast h3,
body.high-contrast h4,
body.high-contrast .section-card h2,
body.high-contrast .recurso-card h3 {
  color: yellow;
}

body.high-contrast .btn-submit,
body.high-contrast .btn-volver,
body.high-contrast nav ul li a:hover {
  background: yellow;
  color: black;
}

body.high-contrast input,
body.high-contrast textarea {
  background: #333;
  color: white;
  border: 1px solid yellow;
}

body.high-contrast .section-icon {
  background-color: #333;
  color: yellow;
  border-color: yellow;
}

body.high-contrast .especialistas-list li,
body.high-contrast .recurso-card,
body.high-contrast .contacto-info,
body.high-contrast .contacto-form {
  background-color: #333;
  color: white;
  border: 1px solid #555;
}

/* TamaÃ±os de texto */
body.text-large {
  font-size: 18px;
}

body.text-larger {
  font-size: 20px;
}

body.text-largest {
  font-size: 22px;
}

/* Espaciado de texto */
body.spacing-medium {
  letter-spacing: 1px;
  word-spacing: 3px;
}

body.spacing-large {
  letter-spacing: 2px;
  word-spacing: 4px;
}

/* Fuente legible */
body.readable-font {
  font-family: Arial, sans-serif;
}

/* Cursor grande */
body.big-cursor {
  cursor: url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none" stroke="black" stroke-width="3"&gt;&lt;circle cx="16" cy="16" r="14" fill="white"/&gt;&lt;/svg&gt;')
    16 16, auto;
}

/* Resaltar enlaces */
body.highlight-links a {
  background-color: yellow;
  color: black;
  text-decoration: underline;
  padding: 0 3px;
}

/* Animaciones reducidas */
body.reduce-motion * {
  animation: none !important;
  transition: none !important;
}

/* Ajustes para lectores de pantalla */
.sr-description {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Enfoque visible mejorado */
body.focus-visible *:focus {
  outline: 3px solid yellow !important;
  outline-offset: 3px !important;
}

@media (max-width: 768px) {
  .accessibility-panel {
    width: 250px;
  }

  .accessibility-toggle {
    padding: 8px 12px;
  }

  .accessibility-toggle span {
    display: none;
  }

  .accessibility-toggle i {
    margin-right: 0;
  }
}
</pre></body></html>