/* Migas de pan y botones para compartir */
.breadcrumb-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #dee2e6;
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    font-size: 18px;
    vertical-align: middle;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-buttons span {
    font-weight: 600;
    color: var(--dark);
    margin-right: 5px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: white;
}

.share-facebook { background: #3b5998; }
.share-twitter { background: #1da1f2; }
.share-whatsapp { background: #25d366; }
.share-email { background: #ea4335; }

.share-facebook:hover { background: #2d4373; border-color: #3b5998; }
.share-twitter:hover { background: #0c85d0; border-color: #1da1f2; }
.share-whatsapp:hover { background: #128c7e; border-color: #25d366; }
.share-email:hover { background: #d33425; border-color: #ea4335; }

/* Botón de accesibilidad */
.accessibility-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.accessibility-toggle:hover,
.accessibility-toggle.active {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.accessibility-panel {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9999;
    background: white