/* Modern Styles for Accessibility Page */
.accessibility-section {
    background: var(--bg-section);
    padding: 4rem 0;
}

.accessibility-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accessibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.accessibility-text {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.shortcut-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shortcut-item {
    background: var(--shortcut-bg);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.shortcut-item:hover {
    background: var(--shortcut-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
    border-color: var(--border-color);
}

.shortcut-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.shortcut-content {
    flex: 1;
    color: var(--shortcut-content-color);
    font-size: 1rem;
}

.shortcut-key {
    background: var(--shortcut-key-bg);
    border: 1px solid var(--shortcut-key-border);
    border-radius: 6px;
    padding: 2px 8px;
    font-family: monospace;
    font-weight: 600;
    color: var(--shortcut-key-color);
    box-shadow: 0 2px 0 var(--shortcut-key-border);
    margin: 0 4px;
    font-size: 0.9rem;
}

.section-title {
    color: var(--title-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #3b82f6;
    border-radius: 2px;
}

/* Responsividade */
@media (max-width: 768px) {
    .accessibility-card {
        padding: 1.5rem;
    }
    
    .shortcut-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .shortcut-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}
