mudanças

This commit is contained in:
2025-08-18 16:47:16 -03:00
parent e3e83a3f40
commit 1ce9aaac6a
11 changed files with 250 additions and 228 deletions

21
css/button.css Normal file
View File

@@ -0,0 +1,21 @@
.btn {
padding: 8px 16px;
border: 1px solid transparent;
border-radius: 8px;
font-weight: 400;
font-size: 15px;
color: var(--text-color);
background: var(--primary-gradient);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.btn:hover {
background: var(--primary-gradient);
transform: translateY(-2px);
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
}