/* Estilos Talleres Milton Morales - V20 */
.taller-milton-layout {
    display: flex;
    min-height: 100%;
    width: 100%;
    color: white;
    gap: 2rem;
}

.taller-sidebar {
    width: 320px;
    padding: 2.5rem;
    background: rgba(2, 6, 23, 0.9);
    border-right: 1px solid var(--glass-border);
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.taller-main {
    flex: 1;
    padding: 3rem 5rem;
    overflow-y: auto;
    background: rgba(15, 23, 42, 0.4);
}

.badge-taller {
    background: var(--gradiente-main);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(38, 166, 154, 0.2);
}

.taller-main h3 {
    color: var(--color-primario);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(38, 166, 154, 0.2);
    padding-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.taller-main p,
.pregunta-abierta-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
}

.pregunta-abierta-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 24px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.textarea-taller {
    width: 100%;
    height: 140px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: white;
    padding: 1.2rem;
    margin-top: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    resize: none;
    transition: all 0.3s ease;
}

.textarea-taller:focus {
    background: rgba(0, 0, 0, 0.35);
    border-color: var(--color-primario);
    box-shadow: 0 0 20px rgba(38, 166, 154, 0.1);
    outline: none;
}

.card-acceso h3 {
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    /* Fix for compatibility */
    -webkit-text-fill-color: transparent;
}

.grad-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-primario), transparent);
    border: none;
    margin: 3rem 0;
    opacity: 0.3;
}

.paso-ruta {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.2, 0, 0.2, 1);
    cursor: default;
}

.paso-ruta:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(8px);
}