
.page-hero {
    background: var(--carbon);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}
.page-hero-z { position: relative; z-index: 2; }

.page-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 64px);
    color: #fff;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 16px;
}
.page-sub {
    color: rgba(255,255,255,.56);
    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
}
.breadcrumb-cul { margin-top: 22px; }
.breadcrumb-cul a {
    color: var(--morado-claro);
    text-decoration: none;
    font-size: 13px;
}
.breadcrumb-cul span {
    color: rgba(255,255,255,.35);
    font-size: 13px;
    margin: 0 8px;
}
.breadcrumb-cul em {
    color: rgba(255,255,255,.5);
    font-size: 13px;
    font-style: normal;
}

/* ---- FILTROS ---- */
.filtros {
    background: var(--crema);
    padding: 24px 0;
    border-bottom: 1px solid #e0d0f8;
    position: sticky;
    top: 62px;
    z-index: 100;
}
.btn-filtro {
    background: transparent;
    border: 1px solid #c9a8f0;
    color: var(--terra);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 0;
    cursor: pointer;
    transition: all .2s;
}
.btn-filtro.active,
.btn-filtro:hover {
    background: var(--ocre);
    border-color: var(--ocre);
    color: #fff;
}

/* ---- GRID TALLERES ---- */
.talleres-grid { padding: 72px 0; background: #fff; }

.tc {
    background: #fff;
    border: 1px solid #e0d0f8;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.tc:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(124,63,191,.15);
    border-color: var(--ocre);
}
.tc-icon {
    background: var(--crema);
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--ocre);
    transition: background .3s;
}
.tc:hover .tc-icon { background: var(--ocre); color: #fff; }
.tc-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.tc-cat {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ocre);
    font-weight: 700;
    margin-bottom: 8px;
}
.tc-nombre {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--negro);
    line-height: 1.3;
    margin-bottom: 12px;
    flex: 1;
}
.tc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f0e8ff;
}
.tc-ver {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ocre);
}
.tc-arrow {
    width: 28px; height: 28px;
    background: var(--crema);
    display: flex; align-items: center; justify-content: center;
    color: var(--ocre);
    font-size: 14px;
    transition: background .2s;
}
.tc:hover .tc-arrow { background: var(--ocre); color: #fff; }

/* ---- MODAL TALLER ---- */
.modal-taller .modal-content {
    border: none;
    border-radius: 0;
    overflow: hidden;
}
.modal-header-taller {
    background: var(--carbon);
    padding: 28px 32px;
    position: relative;
}
.modal-cat {
    font-size: 10.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--morado-claro);
    font-weight: 600;
    margin-bottom: 10px;
}
.modal-nombre {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 32px);
    color: #fff;
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
}
.modal-body-taller { padding: 32px; }
.dato-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0e8ff;
}
.dato-row:last-child { border-bottom: none; }
.dato-ic {
    width: 38px; height: 38px;
    background: var(--crema);
    display: flex; align-items: center; justify-content: center;
    color: var(--ocre);
    font-size: 16px;
    flex-shrink: 0;
}
.dato-label {
    font-size: 10.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gris);
    font-weight: 600;
    margin-bottom: 2px;
}
.dato-val {
    font-size: 15px;
    color: var(--negro);
    font-weight: 500;
}
.desc-box {
    background: var(--crema);
    padding: 20px 24px;
    margin-top: 20px;
    border-left: 3px solid var(--ocre);
}
.desc-box p {
    font-size: 15px;
    color: #3a3a3a;
    line-height: 1.8;
    margin: 0;
}
.inscribirse-btn {
    background: var(--ocre);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 14px 30px;
    border: none;
    border-radius: 0;
    width: 100%;
    margin-top: 24px;
    transition: background .2s;
    cursor: pointer;
}
.inscribirse-btn:hover { background: var(--terra); }