/* ==============================> ARCHIVO DE TALLERES */

.ac-bloque {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* -> Cabecera */

.ac-bloque .ac-cabecera {
    margin-bottom: 32px;
}

.ac-bloque .ac-etiqueta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--e-global-color-primary);
    margin: 0 0 10px;
}

.ac-bloque .ac-etiqueta::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--e-global-color-primary);
    flex-shrink: 0;
}

.ac-bloque .ac-etiqueta--clara {
    color: rgba(255, 255, 255, 0.85);
}

.ac-bloque .ac-etiqueta--clara::before {
    background: rgba(255, 255, 255, 0.85);
}

.ac-bloque .ac-titulo {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 6px;
}

.ac-bloque .ac-titulo em {
    font-style: normal;
    color: var(--e-global-color-primary);
}

.ac-bloque .ac-titulo--clara {
    color: #fff;
}

.ac-bloque .ac-subtitulo {
    font-size: 15px;
    color: #888;
    margin: 0;
}

.ac-bloque .ac-subtitulo--clara {
    color: rgba(255, 255, 255, 0.75);
}

/* -> Banner de categoria */

.ac-bloque .ac-banner {
    position: relative;
    width: 100%;
    min-height: 240px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.ac-bloque .ac-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ac-bloque .ac-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
}

.ac-bloque .ac-banner-cuerpo {
    position: relative;
    z-index: 1;
    padding: 32px 36px;
    width: 100%;
}

.ac-bloque .ac-banner-icono {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

/* -> Filtros */

.ac-bloque .ac-filtros {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid #eee;
}

.ac-bloque .ac-select-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.ac-bloque .ac-select {
    appearance: none;
    -webkit-appearance: none;
    padding: 8px 36px 8px 14px;
    border-radius: 50px;
    border: 1.5px solid #ddd;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 13px center;
    tallerr: pointer;
    outline: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
    -webkit-transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.ac-bloque .ac-select:hover {
    border-color: var(--e-global-color-primary);
}

.ac-bloque .ac-select:focus {
    border-color: var(--e-global-color-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--e-global-color-primary) 12%, transparent);
}

.ac-bloque .ac-select--activo {
    border-color: var(--e-global-color-primary);
    color: var(--e-global-color-primary);
    font-weight: 600;
}

.ac-bloque .ac-select-reset {
    position: absolute;
    right: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ccc;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.2s ease;
    -webkit-transition: background 0.2s ease;
}

.ac-bloque .ac-select-reset:hover {
    background: var(--e-global-color-primary);
}

/* -> Grid */

.ac-bloque .ac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 24px;
}

/* -> Tarjeta */

.ac-bloque .ac-tarjeta {
    opacity: 0;
    transform: translateY(18px);
    -webkit-transform: translateY(18px);
    animation: ac-entrada 0.48s ease forwards;
    -webkit-animation: ac-entrada 0.48s ease forwards;
}

@keyframes ac-entrada {
    to { opacity: 1; transform: translateY(0); }
}

@-webkit-keyframes ac-entrada {
    to { opacity: 1; -webkit-transform: translateY(0); }
}

.ac-bloque .ac-tarjeta-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

/* -> Imagen de tarjeta */

.ac-bloque .ac-imagen-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 2.4;
    overflow: hidden;
    border-radius: 6px;
    background: #f0f0f0;
}

.ac-bloque .ac-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
    -webkit-transition: -webkit-transform 0.45s ease;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.ac-bloque .ac-tarjeta:hover .ac-imagen {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.ac-bloque .ac-imagen-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ebebeb 0%, #d8d8d8 100%);
}

/* -> Badge nivel */

.ac-bloque .ac-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 50px;
}

.ac-bloque .ac-badge--basico {
    background: rgba(34, 197, 94, 0.14);
    color: #16a34a;
}

.ac-bloque .ac-badge--intermedio {
    background: rgba(234, 179, 8, 0.14);
    color: #b45309;
}

.ac-bloque .ac-badge--avanzado {
    background: rgba(239, 68, 68, 0.14);
    color: #b91c1c;
}

/* -> Cuerpo de tarjeta */

.ac-bloque .ac-tarjeta-cuerpo {
    padding: 14px 2px 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ac-bloque .ac-tarjeta-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--e-global-color-primary);
    margin-bottom: 5px;
    opacity: 0.75;
}

.ac-bloque .ac-tarjeta-titulo {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 8px;
    transition: opacity 0.22s ease;
}

.ac-bloque .ac-tarjeta:hover .ac-tarjeta-titulo {
    opacity: 0.7;
}

.ac-bloque .ac-tarjeta-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.55;
    margin: 0 0 12px;
    flex: 1;
}

/* -> Meta de tarjeta */

.ac-bloque .ac-tarjeta-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.ac-bloque .ac-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #aaa;
}

/* -> Sin resultados */

.ac-bloque .ac-vacio {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 72px 24px;
    text-align: center;
    color: #ccc;
}

.ac-bloque .ac-vacio p {
    font-size: 15px;
    color: #888;
    margin: 0;
}

.ac-bloque .ac-vacio-link {
    display: inline-flex;
    align-items: center;
    padding: 9px 22px;
    border-radius: 50px;
    border: 1.5px solid var(--e-global-color-primary);
    color: var(--e-global-color-primary);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.22s ease, color 0.22s ease;
    -webkit-transition: background 0.22s ease, color 0.22s ease;
}

.ac-bloque .ac-vacio-link:hover {
    background: var(--e-global-color-primary);
    color: #fff;
}

/* -> Tablet */

@media (max-width: 1024px) {
    .ac-bloque .ac-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ac-bloque .ac-titulo {
        font-size: 28px;
    }
}

/* -> Movil */

@media (max-width: 768px) {
    .ac-bloque {
    }

    .ac-bloque .ac-grid {
        grid-template-columns: 1fr;
    }

    .ac-bloque .ac-titulo {
        font-size: 24px;
    }

    .ac-bloque .ac-filtros {
        gap: 8px;
    }

    .ac-bloque .ac-select {
        font-size: 13px;
    }

    .ac-bloque .ac-banner {
        min-height: 190px;
    }

    .ac-bloque .ac-banner-cuerpo {
        padding: 20px 20px;
    }
}


/* ==============================> CARRUSEL DE TALLERES */

.cc-bloque {
    width: 100%;
    overflow: hidden;
}

/* -> Cabecera contenida */

.cc-cabecera-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cc-cabecera-etiqueta:before{
    content: "";
    display: block;
    width: 7.75px;
    height: 7.75px;
    background: var(--e-global-color-primary);
    border-radius: 50px;
}

.cc-cabecera-etiqueta {
    display: flex;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var( --e-global-color-accent);
    align-items: center;
    gap: 12px;
}

.cc-cabecera-fila {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.cc-cabecera-titulo {
    font-size: 32px;
    font-weight: 500;
    margin: 0;
    line-height: 34px;
}

/* -> Controles flechas */

.cc-controles {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #d0d0d0;
    color: #333;
    font-size: 16px;
    tallerr: pointer;
    user-select: none;
    -webkit-user-select: none;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    -webkit-transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, -webkit-transform 0.2s ease;
}

.cc-btn:hover {
    border-color: var(--e-global-color-primary);
    background: var(--e-global-color-primary);
    color: #fff;
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
}

.cc-btn:active {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
}

/* -> Pista ancho completo */

.cc-pista-outer {
    width: 100%;
    overflow: hidden;
    padding: 0 24px;
    box-sizing: border-box;
}

.cc-pista {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* -> Tarjeta */

.cc-tarjeta {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    opacity: 0;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    animation: cc-entrada 0.5s ease forwards;
    -webkit-animation: cc-entrada 0.5s ease forwards;
}

.cc-tarjeta:nth-child(1) { animation-delay: 0.05s; -webkit-animation-delay: 0.05s; }
.cc-tarjeta:nth-child(2) { animation-delay: 0.13s; -webkit-animation-delay: 0.13s; }
.cc-tarjeta:nth-child(3) { animation-delay: 0.21s; -webkit-animation-delay: 0.21s; }
.cc-tarjeta:nth-child(4) { animation-delay: 0.29s; -webkit-animation-delay: 0.29s; }
.cc-tarjeta:nth-child(5) { animation-delay: 0.37s; -webkit-animation-delay: 0.37s; }
.cc-tarjeta:nth-child(6) { animation-delay: 0.45s; -webkit-animation-delay: 0.45s; }

@keyframes cc-entrada {
    to { opacity: 1; transform: translateY(0); }
}
@-webkit-keyframes cc-entrada {
    to { opacity: 1; -webkit-transform: translateY(0); }
}

.cc-tarjeta-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* -> Imagen */

.cc-imagen-wrapper {
    width: 100%;
    aspect-ratio: 4 / 2;
    overflow: hidden;
    border-radius: 6px;
    background: #f0f0f0;
}

.cc-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
    -webkit-transition: -webkit-transform 0.45s ease;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.cc-tarjeta:hover .cc-imagen {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

/* -> Info texto */

.cc-info {
    padding: 14px 4px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
	gap: 4px;
}

.cc-titulo {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px;
    line-height: 22px;
    color: var(--e-global-color-secondary);
    transition: opacity 0.25s ease;
}

.cc-tarjeta:hover .cc-titulo {
    opacity: 0.8;
}

.cc-categoria {
	text-align: center;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #aaa;
}

/* -> Tablet */

@media (max-width: 1024px) {
    .cc-tarjeta {
        flex: 0 0 calc(50% - 12px);
    }
}

/* -> Móvil */

@media (max-width: 768px) {
    .cc-cabecera-titulo {
        font-size: 22px;
    }

    .cc-tarjeta {
        flex: 0 0 calc(100% - 0px);
    }

    .cc-pista-outer {
        padding: 0 16px;
    }

    .cc-cabecera-wrapper {
        padding: 0 16px;
    }
}



/* ==============================> CARRUSEL DE CATEGORÍAS DE TALLERES */

.ccc-bloque {
    width: 100%;
    overflow: hidden;
}

/* -> Cabecera */

.ccc-cabecera-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.ccc-cabecera-etiqueta {
    display: flex;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--e-global-color-accent);
    align-items: center;
    gap: 12px;
}

.ccc-cabecera-etiqueta:before {
    content: "";
    display: block;
    width: 7.75px;
    height: 7.75px;
    background: var(--e-global-color-primary);
    border-radius: 50px;
}

.ccc-cabecera-fila {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.ccc-cabecera-titulo {
    font-size: 32px;
    font-weight: 500;
    margin: 0;
    line-height: 34px;
}

/* -> Controles */

.ccc-controles {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.ccc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #d0d0d0;
    color: #333;
    font-size: 16px;
    tallerr: pointer;
    user-select: none;
    -webkit-user-select: none;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    -webkit-transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, -webkit-transform 0.2s ease;
}

.ccc-btn:hover {
    border-color: var(--e-global-color-primary);
    background: var(--e-global-color-primary);
    color: #fff;
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
}

.ccc-btn:active {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
}

/* -> Pista */

.ccc-pista-outer {
    width: 100%;
    overflow: hidden;
    padding: 0 24px;
    box-sizing: border-box;
}

.ccc-pista {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* -> Tarjeta */

.ccc-tarjeta {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    opacity: 0;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    animation: ccc-entrada 0.5s ease forwards;
    -webkit-animation: ccc-entrada 0.5s ease forwards;
}

.ccc-tarjeta:nth-child(1) { animation-delay: 0.05s; -webkit-animation-delay: 0.05s; }
.ccc-tarjeta:nth-child(2) { animation-delay: 0.13s; -webkit-animation-delay: 0.13s; }
.ccc-tarjeta:nth-child(3) { animation-delay: 0.21s; -webkit-animation-delay: 0.21s; }
.ccc-tarjeta:nth-child(4) { animation-delay: 0.29s; -webkit-animation-delay: 0.29s; }
.ccc-tarjeta:nth-child(5) { animation-delay: 0.37s; -webkit-animation-delay: 0.37s; }
.ccc-tarjeta:nth-child(6) { animation-delay: 0.45s; -webkit-animation-delay: 0.45s; }

@keyframes ccc-entrada {
    to { opacity: 1; transform: translateY(0); }
}

@-webkit-keyframes ccc-entrada {
    to { opacity: 1; -webkit-transform: translateY(0); }
}

.ccc-tarjeta-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* -> Imagen */

.ccc-imagen-wrapper {
    width: 100%;
    aspect-ratio: 4 / 2;
    overflow: hidden;
    border-radius: 6px;
    background: #f0f0f0;
    position: relative;
}

.ccc-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    -webkit-transform: scale(1);
    transition: transform 0.45s ease;
    -webkit-transition: -webkit-transform 0.45s ease;
}

.ccc-tarjeta:hover .ccc-imagen {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

/* -> Info */

.ccc-info {
    padding: 14px 4px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ccc-titulo {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px;
    line-height: 22px;
    color: var(--e-global-color-secondary);
    transition: opacity 0.25s ease;
    -webkit-transition: opacity 0.25s ease;
    text-align: center;
}

.ccc-tarjeta:hover .ccc-titulo {
    opacity: 0.8;
}

.ccc-cantidad {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #aaa;
    text-align: center;
}

/* -> Tablet */

@media (max-width: 1024px) {
    .ccc-tarjeta {
        flex: 0 0 calc(50% - 12px);
    }
}

/* -> Móvil */

@media (max-width: 768px) {
    .ccc-cabecera-titulo {
        font-size: 22px;
    }

    .ccc-tarjeta {
        flex: 0 0 calc(100% - 0px);
    }

    .ccc-pista-outer {
        padding: 0 16px;
    }

    .ccc-cabecera-wrapper {
        padding: 0 16px;
    }
}



/* ==============================> BUSCADOR DE TALLERES */

.bc-wrap {
    position: relative;
    display: inline-block;
}

/* -> Icono */

.bc-icono-wrap {
    display: flex;
    justify-content: center;
}

.bc-icono {
    background: none !important;
    font-size: 20px;
    margin-right: 8px;
    border: none;
    tallerr: pointer;
    padding: 0;
    color: inherit;
    transition: color 0.25s ease, transform 0.25s ease;
    -webkit-transition: color 0.25s ease, -webkit-transform 0.25s ease;
}

.bc-icono:hover {
    color: var(--e-global-color-primary);
    transform: scale(1.12);
    -webkit-transform: scale(1.12);
}

.bc-icono--activo {
    color: var(--e-global-color-primary);
    transform: rotate(90deg) scale(1.1);
    -webkit-transform: rotate(90deg) scale(1.1);
}

/* -> Panel: anclado al body, centrado horizontalmente en la página */

.bc-panel {
    position: absolute;
	top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    -webkit-transform: translateX(-50%) translateY(-6px);
    width: 1050px;
    max-width: 96vw;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    padding: 20px;
    box-sizing: border-box;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.bc-panel--visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    -webkit-transform: translateX(-50%) translateY(0);
}

/* -> Input */

.bc-input-wrap {
    position: relative;
}

.bc-input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 48px 13px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    color: #333;
    background: #fafafa;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.bc-input:focus {
    border-color: var(--e-global-color-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* -> Spinner */

.bc-spinner {
    position: absolute;
    right: 16px;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-top-color: var(--e-global-color-primary);
    border-radius: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.2s ease;
    -webkit-animation: bc-girar 0.7s linear infinite;
    animation: bc-girar 0.7s linear infinite;
}

.bc-spinner--activo {
    opacity: 1;
}

@-webkit-keyframes bc-girar {
    to { -webkit-transform: translateY(-50%) rotate(360deg); }
}
@keyframes bc-girar {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* -> Resultados */

.bc-resultados {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
    max-height: 420px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(6px);
    -webkit-transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    pointer-events: none;
}

.bc-resultados--visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

.bc-vacio {
    font-size: 14px;
    color: #999;
    padding: 6px 0;
    margin: 0;
}

/* -> Card */

.bc-card {
    display: flex;
    align-items: center;
    gap: 12px;
    width: calc(50% - 7px);
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 10px;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    -webkit-animation: bc-entrada 0.3s ease both;
    animation: bc-entrada 0.3s ease both;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    -webkit-transition: box-shadow 0.25s ease, -webkit-transform 0.25s ease, border-color 0.25s ease;
}

.bc-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    border-color: var(--e-global-color-primary);
}

@-webkit-keyframes bc-entrada {
    from { opacity: 0; -webkit-transform: translateY(8px); }
    to   { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes bc-entrada {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* -> Card imagen */

.bc-card-img {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f0;
}

.bc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s ease;
}

.bc-card:hover .bc-card-img img {
    transform: scale(1.06);
    -webkit-transform: scale(1.06);
}

.bc-card-img-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: #e4e4e4;
}

/* -> Card título */

.bc-card-info {
    flex: 1;
    min-width: 0;
}

.bc-card-titulo {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.bc-card:hover .bc-card-titulo {
    color: var(--e-global-color-primary);
}

/* -> Responsive 768px */

@media (max-width: 768px) {

    .bc-panel {
        width: 94vw;
        padding: 16px;
    }

    .bc-resultados {
        flex-direction: column;
        gap: 10px;
        max-height: 360px;
    }

    .bc-card {
        width: 100%;
    }

}

/* -> Responsive tablet */

@media (min-width: 769px) and (max-width: 1100px) {

    .bc-panel {
        width: 90vw;
    }

    .bc-card {
        width: calc(50% - 7px);
    }

}



/* ==============================> SHORTCODE: CATEGORÍAS DE TALLERES */

/* -> Grid principal */
.cdc-grid {
    display: grid;
    gap: 16px;
    width: 100%;
}

.cdc-cols-1 { grid-template-columns: repeat(1, 1fr); }
.cdc-cols-2 { grid-template-columns: repeat(2, 1fr); }
.cdc-cols-3 { grid-template-columns: repeat(3, 1fr); }
.cdc-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* -> Tarjeta */
.cdc-tarjeta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    opacity: 0.8;
    transform: translateY(16px);
    animation: cdcEntrada 0.4s ease forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    -webkit-transform: translateY(16px);
    -webkit-animation: cdcEntrada 0.4s ease forwards;
    -webkit-transition: -webkit-transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cdc-tarjeta:nth-child(1) { animation-delay: 0.05s; }
.cdc-tarjeta:nth-child(2) { animation-delay: 0.10s; }
.cdc-tarjeta:nth-child(3) { animation-delay: 0.15s; }
.cdc-tarjeta:nth-child(4) { animation-delay: 0.20s; }
.cdc-tarjeta:nth-child(5) { animation-delay: 0.25s; }
.cdc-tarjeta:nth-child(6) { animation-delay: 0.30s; }

.cdc-tarjeta:hover {
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
    border-color: var(--e-global-color-primary);
    text-decoration: none;
    opacity: 1;
}

/* -> Icono */
.cdc-icono {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s ease;
}

.cdc-tarjeta:hover .cdc-icono {
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
}

.cdc-icono img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* -> Contenido textual */
.cdc-contenido {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cdc-nombre {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: #FFFFFFBF;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
}

.cdc-nombre:hover {
	color: #fff;
}

.cdc-descripcion {
    font-size: 13px;
    margin: 0;
    color: #888;
    line-height: 1.5;
}

.cdc-cantidad {
    font-size: 12px;
    font-weight: 500;
    color: var(--e-global-color-primary);
    opacity: 0.85;
}

/* -> Sin resultados */
.cdc-sin-resultados {
    font-size: 14px;
    color: #999;
}

/* -> Animación de entrada */
@keyframes cdcEntrada {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes cdcEntrada {
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

/* -> Responsive tablets */
@media (max-width: 768px) {
    .cdc-cols-3,
    .cdc-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cdc-tarjeta {
        padding: 20px 18px;
        gap: 16px;
    }

    .cdc-icono {
        width: 52px;
        height: 52px;
    }

    .cdc-nombre {
        font-size: 15px;
    }
}

/* -> Responsive móvil */
@media (max-width: 480px) {
    .cdc-cols-2,
    .cdc-cols-3,
    .cdc-cols-4 {
        grid-template-columns: repeat(1, 1fr);
    }
}