    :root {
      --dendro-black: #1A1A1A;
      --dendro-primary: #FF8500;
      --font-heading: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      --font-body: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }

    body.talleres-page {
      background: var(--dendro-black) !important;
      color: rgba(255, 255, 255, .92);
      font-family: var(--font-body);
    }

    /* ===== Hero (mínimo, para que no dependa de estilos duplicados) ===== */
    .workshops-hero {
      padding: clamp(48px, 6vw, 96px) 0 18px;
      background: transparent;
    }

    .workshops-hero-inner {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 22px;
      align-items: stretch;
    }

    .workshops-hero-text .workshops-kicker {
      display: inline-block;
      font-family: var(--font-heading);
      font-weight: 800;
      letter-spacing: .14em;
      font-size: .78rem;
      color: rgba(255, 255, 255, .62);
      margin-bottom: 10px;
    }

    .workshops-hero-text h1 {
      margin: 0 0 10px;
      font-family: var(--font-heading);
      font-weight: 900;
      letter-spacing: -0.02em;
      font-size: clamp(1.8rem, 3.2vw, 3rem);
      line-height: 1.12;
    }

    .workshops-hero-text p {
      margin: 0;
      color: rgba(255, 255, 255, .78);
      line-height: 1.65;
      max-width: 62ch;
    }

    .hero-cta {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    .catalog-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 14px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, .12);
      background: rgba(255, 255, 255, .05);
      color: rgba(255, 255, 255, .92);
      text-decoration: none;
      font-weight: 800;
      font-family: var(--font-heading);
      font-size: .92rem;
    }

    .catalog-btn.primary {
      border-color: rgba(255, 133, 0, .35);
      background: linear-gradient(180deg, rgba(255, 138, 0, .95), rgba(200, 95, 0, .92));
      color: #111;
    }

    .glass-panel {
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, .10);
      background: rgba(255, 255, 255, .04);
      padding: 18px;
    }

    .glass-panel h3 {
      margin: 0 0 8px;
      font-family: var(--font-heading);
      font-weight: 900;
      letter-spacing: -0.01em;
      font-size: 1.2rem;
    }

    .glass-panel p {
      margin: 0 0 14px;
      color: rgba(255, 255, 255, .72);
      line-height: 1.6;
    }

    .panel-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .panel-item {
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, .10);
      background: rgba(0, 0, 0, .22);
      padding: 12px;
    }

    .panel-item .label {
      color: rgba(255, 255, 255, .62);
      font-weight: 800;
      font-size: .85rem;
      margin-bottom: 4px;
    }

    .panel-item .value {
      color: rgba(255, 255, 255, .92);
      font-weight: 900;
      font-family: var(--font-heading);
    }

    @media (max-width: 980px) {
      .workshops-hero-inner {
        grid-template-columns: 1fr;
      }
    }

    /* ===== Catálogo ===== */
    .catalog-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }

    .catalog-head h2 {
      margin: 0;
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: clamp(1.35rem, 2.4vw, 2rem);
      line-height: 1.2;
    }

    .catalog-head .sub {
      margin: 6px 0 0;
      color: rgba(244, 244, 244, .82);
      max-width: 900px;
      line-height: 1.6;
    }

    .catalog-filters {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
    }

    .filter {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, .12);
      background: rgba(255, 255, 255, .05);
      color: rgba(244, 244, 244, .88);
    }

    .filter i {
      color: rgba(255, 133, 0, .95);
    }

    /* 4 por línea en desktop */
    .catalog-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      align-items: stretch;
    }

    @media (max-width: 680px) {
      .filter {
        width: 100%;
        justify-content: space-between;
      }

      .filter select {
        width: 55%;
        text-align: right;
      }
    }

    /* ===== Card ===== */
    .workshop-card {
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, .10);
      background: var(--dendro-black);
      box-shadow: none !important;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .workshop-card[hidden] {
      display: none !important;
    }

    .wc-body {
      background: var(--dendro-black);
      flex: 1 1 auto;
      display: flex;
      flex-direction: column;
      text-align: left;
    }

    .wc-top {
      display: flex;
      justify-content: flex-start;
      gap: 10px;
      flex-wrap: wrap;
    }

    .wc-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .12);
      background: rgba(255, 255, 255, .06);
      color: rgba(255, 255, 255, .92);
      font-weight: 700;
      font-size: .85rem;
      line-height: 1;
      white-space: nowrap;
    }

    .wc-chip i {
      font-size: .9rem;
      opacity: .95;
    }

    /* colores chips */
    .workshop-card[data-mode="virtual"] .wc-chip--mode {
      background: rgba(60, 120, 255, .18);
      border-color: rgba(60, 120, 255, .35);
      color: rgba(235, 245, 255, .98);
    }

    .workshop-card[data-mode="presencial"] .wc-chip--mode {
      background: rgba(170, 120, 255, .18);
      border-color: rgba(170, 120, 255, .38);
      color: rgba(246, 240, 255, .98);
    }

    .workshop-card[data-cost="gratis"] .wc-chip--cost {
      background: rgba(40, 210, 120, .16);
      border-color: rgba(40, 210, 120, .35);
      color: rgba(232, 255, 244, .98);
    }

    .workshop-card[data-cost="pago"] .wc-chip--cost {
      background: rgba(255, 133, 0, .18);
      border-color: rgba(255, 133, 0, .40);
      color: rgba(255, 243, 230, .98);
    }

    .wc-title {
      margin: 4px 0 0;
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 1.35rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
      text-align: left;
    }

    .wc-desc {
      margin: 0;
      color: rgba(255, 255, 255, .72);
      font-size: 1rem;
      line-height: 1.5;
    }

    .wc-meta {
      margin-top: 10px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .wc-row {
      display: grid;
      gap: 10px;
      align-items: center;
    }

    .wc-row i {
      color: var(--dendro-primary);
      font-size: 1rem;
    }

    .wc-k {
      color: rgba(255, 255, 255, .55);
      font-weight: 700;
    }

    .wc-v {
      color: rgba(255, 255, 255, .92);
      font-weight: 700;
      overflow-wrap: anywhere;
    }

    @media (max-width: 680px) {
      .wc-title {
        font-size: 1.2rem;
      }
    }

    /* CTA: siempre dentro del card */
    .wc-cta {
      margin: 16px 18px 18px;
      height: 54px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      background: linear-gradient(180deg, #cecdcd, #cecdcd);
      color: #111;
      font-family: var(--font-heading);
      font-size: .90rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      box-shadow: none !important;
      user-select: none;
    }

    .catalog-empty {
      display: none;
      margin-top: 14px;
      padding: 16px;
      border-radius: 14px;
      border: 1px dashed rgba(255, 255, 255, .20);
      color: rgba(244, 244, 244, .82);
      background: rgba(255, 255, 255, .04);
    }

    /* ========= MÁS AIRE + MENOS DENSIDAD (Talleres) ========= */

    /* 1) Aire vertical del catálogo */
    .workshop-catalog {
      padding: 42px 0 84px;
      /* antes 18px 0 72px */
    }

    .catalog-head {
      margin-bottom: 24px;
    }

    .catalog-grid {
      margin-top: 20px;
      /* antes 14px */
      gap: 24px;
      /* antes 18px */
    }

    /* 2) Responsive “premium”: 4 solo cuando hay ancho real */
    @media (max-width: 1399px) {
      .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 1100px) {
      .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 680px) {
      .catalog-grid {
        grid-template-columns: 1fr;
      }
    }

    /* 3) Card menos rígida y con mejor respiración */
    .workshop-card {
      min-height: 0;
      /* antes 520px */
    }

    .wc-body {
      padding: 20px 20px 16px;
      /* antes 18px 18px 16px */
      gap: 12px;
      /* antes 10px */
    }

    /* 4) Texto: menos “bloque” */
    .wc-desc {
      text-align: left;
      /* antes justify */
      text-justify: auto;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      /* muestra 3 líneas */
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* 5) Títulos largos: máximo 2 líneas para que no “aplasten” */
    .wc-title {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* 6) Meta: recupera ancho para el valor */
    .wc-row {
      grid-template-columns: 18px 58px 1fr;
      /* antes 18px 70px 1fr */
    }

    /* Más espacio entre los botones del hero y "Talleres programados" */
    .workshops-hero {
      padding-bottom: 80px !important;
      /* antes 18px */
    }

    /* (Opcional) si quieres todavía más aire visual */
    .workshop-catalog {
      padding-top: 56px !important;
      /* ya lo tienes en 42px */
    }

    /* ===== Selects (filtros) estilo DENDRO, sin look Windows ===== */
    .filter {
      position: relative;
      padding-right: 38px;
      /* espacio para flecha */
    }

    .filter select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background: transparent;
      border: 0;
      outline: none;
      color: rgba(244, 244, 244, .92);
      font-family: var(--font-body);
      font-size: .95rem;
      font-weight: 800;
      cursor: pointer;
      padding-right: 28px;
      /* evita que el texto choque con la flecha */
    }

    /* Flecha custom */
    .filter::after {
      content: "";
      position: absolute;
      right: 14px;
      top: 50%;
      width: 8px;
      height: 8px;
      border-right: 2px solid rgba(255, 255, 255, .55);
      border-bottom: 2px solid rgba(255, 255, 255, .55);
      transform: translateY(-55%) rotate(45deg);
      pointer-events: none;
      opacity: .95;
    }

    .filter:hover {
      background: rgba(255, 255, 255, .07);
      border-color: rgba(255, 255, 255, .18);
    }

    .filter:focus-within {
      border-color: rgba(87, 87, 86, 0.4);
      box-shadow: 0 0 0 3px rgba(255, 133, 0, .14);
    }

    /* Dropdown (opciones) en tema oscuro */
    .filter select option {
      background: #101010;
      color: rgba(255, 255, 255, .92);
    }

    /* legacy (si aplica) */
    .filter select::-ms-expand {
      display: none;
    }

    .form-submit {
      padding: 12px 14px;
      border: 1px solid rgba(255, 133, 0, .35);
      background: linear-gradient(180deg, rgba(255, 138, 0, .95), rgba(200, 95, 0, .92));
      color: #111;
      font-weight: 900;
      font-family: "Montserrat", sans-serif;
    }

    .form-submit:hover {
      box-shadow: 0 0 0 4px rgba(255, 133, 0, .12);
    }

    /* ===== Custom Select DENDRO (sin look Windows) ===== */

    /* cuando activamos el custom, anulamos la flecha anterior */
    .filter.filter--custom::after {
      display: none !important;
    }

    /* ocultamos el select nativo (se mantiene para que tu JS siga filtrando) */
    .filter.filter--custom select {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    /* contenedor del select custom */
    .filter .dselect {
      flex: 1 1 auto;
      position: relative;
      min-width: 190px;
    }

    /* botón del select */
    .filter .dselect-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 2px 0;
      background: transparent;
      border: 0;
      color: rgba(244, 244, 244, .92);
      font-family: var(--font-body);
      font-size: .95rem;
      font-weight: 800;
      cursor: pointer;
    }

    .filter .dselect-btn .dselect-label {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* flecha */
    .filter .dselect-btn .dselect-arrow {
      width: 10px;
      height: 10px;
      border-right: 2px solid rgba(255, 255, 255, .55);
      border-bottom: 2px solid rgba(255, 255, 255, .55);
      transform: rotate(45deg);
      transition: transform .18s ease, opacity .18s ease;
      opacity: .9;
    }

    .filter.filter--open .dselect-btn .dselect-arrow {
      transform: rotate(-135deg);
      opacity: 1;
    }

    /* menú */
    .dselect-menu {
      position: absolute;
      left: -8px;
      right: -8px;
      top: calc(100% + 10px);
      z-index: 60;

      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, .14);
      background: rgba(10, 10, 10, .92);
      backdrop-filter: blur(14px);
      padding: 8px;

      box-shadow: 0 28px 80px rgba(0, 0, 0, .70);
      display: none;

      max-height: 320px;
      overflow: auto;
    }

    .filter.filter--open .dselect-menu {
      display: block;
      animation: dselectIn .16s ease-out;
    }

    @keyframes dselectIn {
      from {
        opacity: 0;
        transform: translateY(-6px) scale(.99);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    /* opciones */
    .dselect-option {
      width: 100%;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;

      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid transparent;
      background: transparent;

      color: rgba(255, 255, 255, .88);
      font-family: var(--font-body);
      font-weight: 700;
      cursor: pointer;
    }

    .dselect-option:hover {
      background: rgba(255, 255, 255, .06);
      border-color: rgba(255, 255, 255, .10);
    }

    .dselect-option[aria-selected="true"] {
      background: rgba(255, 255, 255, .12);
      border-color: rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .94);
    }

    .dselect-option:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 255, 255, .12);
    }

    @media (max-width: 680px) {
      .filter .dselect {
        min-width: 0;
      }

      .dselect-menu {
        left: 0;
        right: 0;
      }
    }

    /* ===== Fix autofill blanco (Chrome) ===== */
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus {
      -webkit-text-fill-color: rgba(255, 255, 255, .92) !important;
      box-shadow: 0 0 0px 1000px var(--dendro-black) inset !important;
      transition: background-color 9999s ease-in-out 0s;
    }
