Spaces:
Sleeping
Sleeping
File size: 710 Bytes
f8c31ae |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
/* Customizações finas */
body {
background-color: #f0f2f5 !important;
}
.card {
transition: transform 0.3s ease;
}
textarea {
min-height: 200px;
border-color: #dee2e6;
}
/* Animação suave para o resultado aparecer */
.animate-up {
animation: slideUp 0.5s ease-out;
}
@keyframes slideUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.badge {
padding: 0.5em 1.2em;
border-radius: 50px;
}
.bg-primary {
background-color: #2c3e50 !important; /* Azul petróleo mais sóbrio/financeiro */
}
.btn-primary {
background-color: #2c3e50;
border: none;
}
.btn-primary:hover {
background-color: #1a252f;
} |