wagtail-enap-designsystem 1.2.1.202__py3-none-any.whl → 1.2.1.204__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of wagtail-enap-designsystem might be problematic. Click here for more details.
- enap_designsystem/models.py +112 -48
- enap_designsystem/static/enap_designsystem/blocks/capsulas.css +1604 -40
- enap_designsystem/static/enap_designsystem/blocks/hero_animada_block.css +18 -0
- enap_designsystem/templates/enap_designsystem/pages/capsula_index.copy.html +351 -0
- enap_designsystem/templates/enap_designsystem/pages/capsula_index_page.html +473 -258
- enap_designsystem/templates/enap_designsystem/pages/capsula_page.html +390 -627
- enap_designsystem/templates/enap_designsystem/pages/mini/cards.html +0 -15
- enap_designsystem/templates/enap_designsystem/pages/quiz_rota_page.html +532 -308
- {wagtail_enap_designsystem-1.2.1.202.dist-info → wagtail_enap_designsystem-1.2.1.204.dist-info}/METADATA +1 -1
- {wagtail_enap_designsystem-1.2.1.202.dist-info → wagtail_enap_designsystem-1.2.1.204.dist-info}/RECORD +13 -12
- {wagtail_enap_designsystem-1.2.1.202.dist-info → wagtail_enap_designsystem-1.2.1.204.dist-info}/WHEEL +0 -0
- {wagtail_enap_designsystem-1.2.1.202.dist-info → wagtail_enap_designsystem-1.2.1.204.dist-info}/licenses/LICENSE +0 -0
- {wagtail_enap_designsystem-1.2.1.202.dist-info → wagtail_enap_designsystem-1.2.1.204.dist-info}/top_level.txt +0 -0
|
@@ -1,41 +1,1142 @@
|
|
|
1
|
-
/* Estilos
|
|
2
|
-
|
|
1
|
+
/* Estilos para a tela de resultado redesenhada */
|
|
2
|
+
|
|
3
|
+
.mapa-personalizado {
|
|
4
|
+
color: #024248;
|
|
5
|
+
padding: 2rem 0;
|
|
6
|
+
margin: 0 auto;
|
|
7
|
+
background: #F5F7FA;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.container {
|
|
11
|
+
width: 100%;
|
|
12
|
+
padding: 0 1.5rem;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/* Estilo do cabeçalho */
|
|
16
|
+
.header-icon {
|
|
17
|
+
display: flex;
|
|
18
|
+
justify-content: center;
|
|
19
|
+
margin-bottom: 1.5rem;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.icon-circle {
|
|
23
|
+
width: 70px;
|
|
24
|
+
height: 70px;
|
|
25
|
+
background-color: #024248;
|
|
26
|
+
border-radius: 50%;
|
|
27
|
+
display: flex;
|
|
28
|
+
align-items: center;
|
|
29
|
+
justify-content: center;
|
|
30
|
+
color: white;
|
|
31
|
+
font-size: 2rem;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.mapa-header {
|
|
35
|
+
text-align: center;
|
|
36
|
+
margin-bottom: 2.5rem;
|
|
37
|
+
border-radius: 20px;
|
|
38
|
+
border: 1px solid #C8D1E0;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.mapa-header h1 {
|
|
42
|
+
font-size: 2.5rem;
|
|
43
|
+
font-weight: 700;
|
|
44
|
+
color: #024248;
|
|
45
|
+
margin-bottom: 1rem;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.categoria-badge {
|
|
49
|
+
display: inline-block;
|
|
50
|
+
padding: 0.5rem 1rem;
|
|
51
|
+
background-color: #f0f8fa;
|
|
52
|
+
border-radius: 20px;
|
|
53
|
+
color: #024248;
|
|
54
|
+
font-weight: 500;
|
|
55
|
+
font-size: 0.9rem;
|
|
56
|
+
letter-spacing: 0.5px;
|
|
57
|
+
margin: 1rem 0;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.texto-resultado {
|
|
61
|
+
max-width: 700px;
|
|
62
|
+
margin: 1rem auto;
|
|
63
|
+
line-height: 1.5;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/* Estilo da cápsula principal */
|
|
67
|
+
.capsula-principal {
|
|
68
|
+
margin-bottom: 3rem;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.capsula-card-two {
|
|
72
|
+
background-color: white;
|
|
73
|
+
border-radius: 20px;
|
|
74
|
+
border: 1px solid #C8D1E0;
|
|
75
|
+
padding: 2rem;
|
|
76
|
+
display: flex;
|
|
77
|
+
flex-direction: column;
|
|
78
|
+
align-items: center;
|
|
79
|
+
position: relative;
|
|
80
|
+
overflow: hidden;
|
|
81
|
+
margin-bottom: 1rem;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.capsula-card {
|
|
85
|
+
background-color: white;
|
|
86
|
+
border-radius: 12px;
|
|
87
|
+
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
|
|
88
|
+
display: flex;
|
|
89
|
+
flex-direction: column;
|
|
90
|
+
align-items: center;
|
|
91
|
+
border: 1px solid #f0f0f0;
|
|
92
|
+
position: relative;
|
|
93
|
+
overflow: hidden;
|
|
94
|
+
margin-bottom: 1rem;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.card-icon {
|
|
98
|
+
margin-bottom: 1.5rem;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.icon-target {
|
|
102
|
+
width: 60px;
|
|
103
|
+
height: 60px;
|
|
104
|
+
background-color: #024248;
|
|
105
|
+
border-radius: 12px;
|
|
106
|
+
display: flex;
|
|
107
|
+
align-items: center;
|
|
108
|
+
justify-content: center;
|
|
109
|
+
color: white;
|
|
110
|
+
font-size: 1.5rem;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.card-content {
|
|
114
|
+
text-align: center;
|
|
115
|
+
width: 100%;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.comece-aqui {
|
|
119
|
+
color: #0d3950;
|
|
120
|
+
font-weight: 700;
|
|
121
|
+
margin-bottom: 1.5rem;
|
|
122
|
+
font-size: 1.2rem;
|
|
123
|
+
letter-spacing: 0.5px;
|
|
124
|
+
display: flex;
|
|
125
|
+
align-items: center;
|
|
126
|
+
justify-content: center;
|
|
127
|
+
gap: 0.5rem;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.rocket-icon {
|
|
131
|
+
font-size: 1.5rem;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.capsula-title {
|
|
135
|
+
font-size: 1.8rem;
|
|
136
|
+
font-weight: 700;
|
|
137
|
+
margin-bottom: 1rem;
|
|
138
|
+
color: #024248;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.capsula-subtitle {
|
|
142
|
+
color: #5a6c77;
|
|
143
|
+
margin-bottom: 2rem;
|
|
144
|
+
font-size: 1.1rem;
|
|
145
|
+
line-height: 1.6;
|
|
146
|
+
max-width: 700px;
|
|
147
|
+
margin-left: auto;
|
|
148
|
+
margin-right: auto;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.action-button {
|
|
152
|
+
margin-top: 1.5rem;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.btn-acessar {
|
|
156
|
+
display: inline-flex;
|
|
157
|
+
align-items: center;
|
|
158
|
+
gap: 8px;
|
|
159
|
+
background-color: #007D7A;
|
|
160
|
+
color: white;
|
|
161
|
+
padding: 0.8rem 1.5rem;
|
|
162
|
+
border-radius: 6px;
|
|
163
|
+
text-decoration: none;
|
|
164
|
+
font-weight: 600;
|
|
165
|
+
transition: all 0.2s ease;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.btn-acessar:hover {
|
|
169
|
+
background-color: #003e4e;
|
|
170
|
+
transform: translateY(-2px);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
/* Seção próximos passos */
|
|
174
|
+
.proximos-passos {
|
|
175
|
+
background-color: white;
|
|
176
|
+
border-radius: 12px;
|
|
177
|
+
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
|
|
178
|
+
padding: 2rem;
|
|
179
|
+
border: 1px solid #f0f0f0;
|
|
180
|
+
margin-bottom: 2rem;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.section-title {
|
|
184
|
+
display: flex;
|
|
185
|
+
align-items: center;
|
|
186
|
+
gap: 8px;
|
|
187
|
+
font-size: 1.3rem;
|
|
188
|
+
color: #0d3950;
|
|
189
|
+
font-weight: 700;
|
|
190
|
+
margin-bottom: 0.5rem;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.section-icon-two {
|
|
194
|
+
font-size: 1.5rem;
|
|
195
|
+
background-color: #024248;
|
|
196
|
+
color: white;
|
|
197
|
+
padding: 20px;
|
|
198
|
+
border-radius: 20px;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.section-subtitle {
|
|
202
|
+
color: #5a6c77;
|
|
203
|
+
margin-bottom: 2rem;
|
|
204
|
+
padding-left: 4.4rem;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.capsulas-complementares {
|
|
208
|
+
display: flex;
|
|
209
|
+
flex-direction: column;
|
|
210
|
+
gap: 1rem;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.capsula-item {
|
|
214
|
+
display: flex;
|
|
215
|
+
align-items: center;
|
|
216
|
+
padding: 1rem;
|
|
217
|
+
background-color: #f8fcfd;
|
|
218
|
+
border-radius: 8px;
|
|
219
|
+
transition: all 0.2s ease;
|
|
220
|
+
border: 1px solid #e0eef2;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.capsula-item:hover {
|
|
224
|
+
background-color: #f0f8fa;
|
|
225
|
+
transform: translateX(5px);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.item-number {
|
|
229
|
+
width: 36px;
|
|
230
|
+
height: 36px;
|
|
231
|
+
background-color: #024248;
|
|
232
|
+
color: white;
|
|
233
|
+
border-radius: 50%;
|
|
234
|
+
display: flex;
|
|
235
|
+
align-items: center;
|
|
236
|
+
justify-content: center;
|
|
237
|
+
font-weight: 600;
|
|
238
|
+
margin-right: 1rem;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.item-content {
|
|
242
|
+
flex-grow: 1;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.item-title {
|
|
246
|
+
font-size: 1.1rem;
|
|
247
|
+
font-weight: 600;
|
|
248
|
+
color: #0d3950;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.item-action {
|
|
252
|
+
margin-left: 1rem;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.item-link {
|
|
256
|
+
width: 36px;
|
|
257
|
+
height: 36px;
|
|
258
|
+
background-color: #e0f4f8;
|
|
259
|
+
color: #007D7A;
|
|
260
|
+
border-radius: 50%;
|
|
261
|
+
display: flex;
|
|
262
|
+
align-items: center;
|
|
263
|
+
justify-content: center;
|
|
264
|
+
text-decoration: none;
|
|
265
|
+
transition: all 0.2s ease;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.item-link:hover {
|
|
269
|
+
background-color: #006969;
|
|
270
|
+
color: white;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
/* Botões de ação */
|
|
274
|
+
.acoes-resultado {
|
|
275
|
+
display: flex;
|
|
276
|
+
justify-content: center;
|
|
277
|
+
gap: 1rem;
|
|
278
|
+
margin-top: 3rem;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.btn {
|
|
282
|
+
display: inline-flex;
|
|
283
|
+
align-items: center;
|
|
284
|
+
gap: 8px;
|
|
285
|
+
padding: 0.8rem 1.5rem;
|
|
286
|
+
border-radius: 6px;
|
|
287
|
+
text-decoration: none;
|
|
288
|
+
font-weight: 600;
|
|
289
|
+
transition: all 0.2s ease;
|
|
290
|
+
cursor: pointer;
|
|
291
|
+
border: none;
|
|
292
|
+
font-family: inherit;
|
|
293
|
+
font-size: 1rem;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
/* Responsividade */
|
|
298
|
+
@media (max-width: 768px) {
|
|
299
|
+
.mapa-header h1 {
|
|
300
|
+
font-size: 2rem;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.capsula-title {
|
|
304
|
+
font-size: 1.5rem;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.acoes-resultado {
|
|
308
|
+
flex-direction: column;
|
|
309
|
+
gap: 0.8rem;
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
/* Para FontAwesome ou melhor compatibilidade com os ícones */
|
|
314
|
+
.fa-star-sparkles:before {
|
|
315
|
+
content: "★";
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.fa-bullseye:before {
|
|
319
|
+
content: "◎";
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.fa-book-open:before {
|
|
323
|
+
content: "📖";
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.fa-refresh:before {
|
|
327
|
+
content: "↻";
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.fa-print:before {
|
|
331
|
+
content: "🖨️";
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.fa-arrow-right:before {
|
|
335
|
+
content: "→";
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
.quiz-header {
|
|
340
|
+
text-align: center;
|
|
341
|
+
color: #024248;
|
|
342
|
+
padding: 2rem 0;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.quiz-header h1 {
|
|
346
|
+
text-align: center;
|
|
347
|
+
font-size: 40px;
|
|
348
|
+
font-weight: 600;
|
|
349
|
+
color: #024248;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
.quiz-header p {
|
|
354
|
+
color: #555;
|
|
355
|
+
font-size: 1.1rem;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.question-block {
|
|
359
|
+
padding: 2rem;
|
|
360
|
+
margin-bottom: 2rem;
|
|
361
|
+
background-color: #f9f9f9;
|
|
362
|
+
border-radius: 8px;
|
|
363
|
+
border-left: 5px solid #024248;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.question-number {
|
|
367
|
+
display: inline-block;
|
|
368
|
+
width: 36px;
|
|
369
|
+
height: 36px;
|
|
370
|
+
background-color: #024248;
|
|
371
|
+
color: white;
|
|
372
|
+
border-radius: 50%;
|
|
373
|
+
text-align: center;
|
|
374
|
+
line-height: 36px;
|
|
375
|
+
font-weight: bold;
|
|
376
|
+
margin-right: 10px;
|
|
377
|
+
vertical-align: middle;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.question-title {
|
|
381
|
+
display: inline-block;
|
|
382
|
+
font-size: 20px;
|
|
383
|
+
margin-bottom: 0.5rem;
|
|
384
|
+
font-weight: 600;
|
|
385
|
+
vertical-align: middle;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
.question-subtitle {
|
|
389
|
+
margin-left: 46px;
|
|
390
|
+
margin-bottom: 1.5rem;
|
|
391
|
+
color: #666;
|
|
392
|
+
font-size: 0.95rem;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.options-grid {
|
|
396
|
+
display: grid;
|
|
397
|
+
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
|
|
398
|
+
gap: 1rem;
|
|
399
|
+
margin-top: 1rem;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.option-card {
|
|
403
|
+
background-color: white;
|
|
404
|
+
border: 1px solid #ddd;
|
|
405
|
+
border-radius: 8px;
|
|
406
|
+
padding: 1rem;
|
|
407
|
+
cursor: pointer;
|
|
408
|
+
transition: all 0.3s ease;
|
|
409
|
+
display: flex;
|
|
410
|
+
align-items: center;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.option-card:hover {
|
|
414
|
+
border-color: #024248;
|
|
415
|
+
box-shadow: 0 0 10px rgba(7, 29, 65, 0.1);
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.option-card.selected {
|
|
419
|
+
border-color: #024248;
|
|
420
|
+
background-color: rgba(7, 29, 65, 0.05);
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.option-checkbox {
|
|
424
|
+
margin-right: 12px;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.option-icon {
|
|
428
|
+
margin-right: 12px;
|
|
429
|
+
font-size: 1.2rem;
|
|
430
|
+
width: 24px;
|
|
431
|
+
color: #024248;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.option-text {
|
|
435
|
+
font-weight: 500;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.form-buttons {
|
|
439
|
+
display: flex;
|
|
440
|
+
align-items: center;
|
|
441
|
+
justify-content: center;
|
|
442
|
+
gap: 20px;
|
|
443
|
+
text-align: center;
|
|
444
|
+
margin-top: 2rem;
|
|
445
|
+
margin-bottom: 1rem;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
:root {
|
|
449
|
+
--primary-color: #0A6C76;
|
|
450
|
+
--primary-light: #e0f7fa;
|
|
451
|
+
--secondary-color: #0A6C76;
|
|
452
|
+
--accent-color: #f97316;
|
|
453
|
+
--background-color: #f8fafc;
|
|
454
|
+
--card-bg: #ffffff;
|
|
455
|
+
--text-color: #033540;
|
|
456
|
+
--text-light: #4a6572;
|
|
457
|
+
--border-color: #e2e8f0;
|
|
458
|
+
--shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.06);
|
|
459
|
+
--shadow-hover: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
|
|
460
|
+
--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
461
|
+
--radius: 12px;
|
|
462
|
+
--radius-sm: 8px;
|
|
463
|
+
--radius-full: 9999px;
|
|
464
|
+
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
* {
|
|
3
468
|
margin: 0;
|
|
4
|
-
|
|
5
|
-
|
|
469
|
+
padding: 0;
|
|
470
|
+
box-sizing: border-box;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
body {
|
|
474
|
+
font-family: var(--font-sans);
|
|
475
|
+
background-color: var(--background-color);
|
|
476
|
+
color: var(--text-color);
|
|
477
|
+
line-height: 1.6;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
/* Menu e cabeçalho */
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
.menu a {
|
|
484
|
+
color: white;
|
|
485
|
+
text-decoration: none;
|
|
486
|
+
font-size: 0.875rem;
|
|
487
|
+
transition: opacity 0.15s ease;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
.menu a:hover {
|
|
491
|
+
opacity: 0.8;
|
|
492
|
+
text-decoration: underline;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.separator {
|
|
496
|
+
height: 1rem;
|
|
497
|
+
width: 1px;
|
|
498
|
+
background-color: rgba(255, 255, 255, 0.5);
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.logo {
|
|
502
|
+
margin-right: auto;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
/* Main content container */
|
|
506
|
+
.acessibilidade-container-page {
|
|
507
|
+
background-color: #F5F7FA;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
.page-title-container {
|
|
511
|
+
padding: 2.5rem 0;
|
|
512
|
+
background-color: transparent;
|
|
513
|
+
position: relative;
|
|
514
|
+
max-width: 1142px;
|
|
515
|
+
margin: auto;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
.page-title-container::before {
|
|
519
|
+
content: '';
|
|
520
|
+
position: absolute;
|
|
521
|
+
width: 100vw;
|
|
522
|
+
left: 50%;
|
|
523
|
+
transform: translateX(-50%);
|
|
524
|
+
top: 0;
|
|
525
|
+
bottom: 0;
|
|
526
|
+
background-color: white;
|
|
527
|
+
z-index: -1;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
.page-title-capsulas{
|
|
531
|
+
color: var(--text-color);
|
|
532
|
+
font-weight: 800;
|
|
533
|
+
font-size: 32px;
|
|
534
|
+
margin-bottom: 0.75rem;
|
|
535
|
+
letter-spacing: -0.025em;
|
|
536
|
+
line-height: 1.2;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
/* Search and filter layout */
|
|
540
|
+
.acessibilidade-conteudo-container {
|
|
541
|
+
display: flex;
|
|
542
|
+
gap: 2.5rem;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
.page-containera-cessibilidade {
|
|
546
|
+
background: white;
|
|
547
|
+
width: 100%;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
/* Sidebar filters */
|
|
551
|
+
.filtros-lateral {
|
|
552
|
+
width: 340px;
|
|
553
|
+
flex-shrink: 0;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.search-box-container {
|
|
557
|
+
background-color: white;
|
|
558
|
+
padding: 1.25rem;
|
|
559
|
+
border-radius: var(--radius);
|
|
560
|
+
box-shadow: var(--shadow);
|
|
561
|
+
margin-bottom: 1.5rem;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.search-box {
|
|
565
|
+
display: flex;
|
|
566
|
+
align-items: center;
|
|
567
|
+
border: 1px solid var(--border-color);
|
|
568
|
+
border-radius: var(--radius-full);
|
|
569
|
+
padding: 0 0.75rem;
|
|
570
|
+
transition: var(--transition);
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.search-box:focus-within {
|
|
574
|
+
border-color: var(--primary-color);
|
|
575
|
+
box-shadow: 0 0 0 2px rgba(10, 108, 118, 0.15);
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.search-box input {
|
|
579
|
+
flex: 1;
|
|
580
|
+
padding: 0.75rem;
|
|
581
|
+
border: none;
|
|
582
|
+
outline: none;
|
|
583
|
+
font-size: 0.95rem;
|
|
584
|
+
border-radius: var(--radius-full);
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.search-icon {
|
|
588
|
+
color: var(--text-light);
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
/* Filtros avançados */
|
|
592
|
+
.filtros-avancados-container {
|
|
593
|
+
background-color: white;
|
|
594
|
+
padding: 1.25rem;
|
|
595
|
+
border-radius: var(--radius);
|
|
596
|
+
box-shadow: var(--shadow);
|
|
597
|
+
margin-bottom: 1.5rem;
|
|
598
|
+
position: relative;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
.filtros-header {
|
|
602
|
+
display: flex;
|
|
603
|
+
align-items: center;
|
|
604
|
+
justify-content: space-between;
|
|
605
|
+
padding: 0 0 0.75rem 0;
|
|
606
|
+
margin-bottom: 1.25rem;
|
|
607
|
+
border-bottom: 1px solid var(--border-color);
|
|
608
|
+
font-weight: 600;
|
|
609
|
+
color: var(--text-color);
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
.filtros-titulo {
|
|
613
|
+
display: flex;
|
|
614
|
+
align-items: center;
|
|
615
|
+
gap: 0.5rem;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
.filtros-header button {
|
|
619
|
+
display: flex;
|
|
620
|
+
align-items: center;
|
|
621
|
+
justify-content: center;
|
|
622
|
+
width: 2rem;
|
|
623
|
+
height: 2rem;
|
|
624
|
+
background: none;
|
|
625
|
+
border: none;
|
|
626
|
+
border-radius: var(--radius-full);
|
|
627
|
+
cursor: pointer;
|
|
628
|
+
color: var(--text-light);
|
|
629
|
+
transition: background-color 0.15s ease;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.filtros-header button:hover {
|
|
633
|
+
background-color: #f5f5f5;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
/* Categorias de filtros */
|
|
637
|
+
.categoria-filtro {
|
|
638
|
+
border: none;
|
|
639
|
+
margin-bottom: 2rem;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.categoria-titulo {
|
|
643
|
+
font-weight: 600;
|
|
644
|
+
margin-bottom: 0.9rem;
|
|
645
|
+
color: var(--text-color);
|
|
646
|
+
font-size: 0.95rem;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
/* Checkboxes */
|
|
650
|
+
.opcoes-filtro {
|
|
651
|
+
display: flex;
|
|
652
|
+
flex-direction: column;
|
|
653
|
+
gap: 0.625rem;
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.checkbox-item {
|
|
657
|
+
display: flex;
|
|
658
|
+
align-items: center;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
/* Estilização moderna dos checkboxes */
|
|
662
|
+
.checkbox-item input[type="checkbox"] {
|
|
663
|
+
position: absolute;
|
|
664
|
+
opacity: 0;
|
|
665
|
+
width: 0;
|
|
666
|
+
height: 0;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.checkbox-label {
|
|
670
|
+
position: relative;
|
|
671
|
+
padding-left: 1.75rem;
|
|
672
|
+
font-size: 0.9rem;
|
|
673
|
+
color: var(--text-color);
|
|
674
|
+
cursor: pointer;
|
|
675
|
+
display: inline-block;
|
|
676
|
+
user-select: none;
|
|
677
|
+
transition: color 0.15s ease;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.checkbox-label:before {
|
|
681
|
+
content: '';
|
|
682
|
+
position: absolute;
|
|
683
|
+
left: 0;
|
|
684
|
+
top: 0.15rem;
|
|
685
|
+
width: 1rem;
|
|
686
|
+
height: 1rem;
|
|
687
|
+
border: 1px solid #cbd5e1;
|
|
688
|
+
background-color: #fff;
|
|
689
|
+
border-radius: 4px;
|
|
690
|
+
transition: all 0.15s ease;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.checkbox-item input[type="checkbox"]:checked + .checkbox-label:before {
|
|
694
|
+
background-color: #024248;
|
|
695
|
+
border-color: var(--primary-color);
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
.checkbox-item input[type="checkbox"]:checked + .checkbox-label:after {
|
|
699
|
+
content: '';
|
|
700
|
+
position: absolute;
|
|
701
|
+
left: 0.35rem;
|
|
702
|
+
top: 0.45rem;
|
|
703
|
+
width: 0.35rem;
|
|
704
|
+
height: 0.6rem;
|
|
705
|
+
border: solid white;
|
|
706
|
+
border-width: 0 2px 2px 0;
|
|
707
|
+
transform: rotate(45deg);
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
.checkbox-item:hover .checkbox-label:before {
|
|
711
|
+
border-color: var(--primary-color);
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
/* Results area */
|
|
715
|
+
.resultados-container {
|
|
716
|
+
flex: 1;
|
|
717
|
+
animation: fadeIn 0.5s ease;
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
@keyframes fadeIn {
|
|
721
|
+
from { opacity: 0; transform: translateY(10px); }
|
|
722
|
+
to { opacity: 1; transform: translateY(0); }
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
.filtros-ativos-container {
|
|
726
|
+
margin-bottom: 1.25rem;
|
|
727
|
+
display: flex;
|
|
728
|
+
flex-wrap: wrap;
|
|
729
|
+
gap: 0.625rem;
|
|
730
|
+
align-items: center;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.resultados-header {
|
|
734
|
+
display: flex;
|
|
735
|
+
justify-content: space-between;
|
|
736
|
+
align-items: center;
|
|
737
|
+
margin-bottom: 1.75rem;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
.contagem-resultados {
|
|
741
|
+
font-size: 0.95rem;
|
|
742
|
+
font-weight: 500;
|
|
743
|
+
color: var(--text-color);
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
.ordenacao-dropdown {
|
|
747
|
+
position: relative;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.ordenacao-button {
|
|
751
|
+
display: flex;
|
|
752
|
+
align-items: center;
|
|
753
|
+
gap: 0.5rem;
|
|
754
|
+
padding: 0.5rem 1rem;
|
|
755
|
+
border: 1px solid var(--border-color);
|
|
756
|
+
border-radius: var(--radius-full);
|
|
757
|
+
background-color: white;
|
|
758
|
+
color: var(--text-color);
|
|
759
|
+
font-size: 0.9rem;
|
|
760
|
+
cursor: pointer;
|
|
761
|
+
transition: var(--transition);
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
.ordenacao-button:hover {
|
|
765
|
+
background-color: #f8f8f8;
|
|
766
|
+
border-color: #cbd5e1;
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
.tag-filtro {
|
|
770
|
+
display: inline-flex;
|
|
771
|
+
align-items: center;
|
|
772
|
+
gap: 0.5rem;
|
|
773
|
+
padding: 0.4rem 0.9rem;
|
|
774
|
+
background-color: #f1f5f9;
|
|
775
|
+
border-radius: var(--radius-full);
|
|
776
|
+
font-size: 0.875rem;
|
|
777
|
+
color: var(--text-color);
|
|
778
|
+
transition: var(--transition);
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.tag-filtro:hover {
|
|
782
|
+
background-color: #e2e8f0;
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
.tag-filtro button {
|
|
786
|
+
display: flex;
|
|
787
|
+
align-items: center;
|
|
788
|
+
justify-content: center;
|
|
789
|
+
background: none;
|
|
790
|
+
border: none;
|
|
791
|
+
cursor: pointer;
|
|
792
|
+
color: var(--text-light);
|
|
793
|
+
transition: color 0.15s ease;
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
.tag-filtro button:hover {
|
|
797
|
+
color: #ef4444;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
.limpar-todos {
|
|
801
|
+
font-size: 0.875rem;
|
|
802
|
+
color: var(--primary-color);
|
|
803
|
+
text-decoration: none;
|
|
804
|
+
margin-left: 0.5rem;
|
|
805
|
+
padding: 0.375rem 0.75rem;
|
|
806
|
+
border-radius: var(--radius-full);
|
|
807
|
+
transition: var(--transition);
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
.limpar-todos:hover {
|
|
811
|
+
background-color: rgba(10, 108, 118, 0.08);
|
|
812
|
+
text-decoration: none;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
.grade-resultados {
|
|
816
|
+
display: grid;
|
|
817
|
+
grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
|
|
818
|
+
gap: 2rem;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
.capsula-icone {
|
|
825
|
+
width: 3.25rem;
|
|
826
|
+
height: 3.25rem;
|
|
827
|
+
display: flex;
|
|
828
|
+
align-items: center;
|
|
829
|
+
justify-content: center;
|
|
830
|
+
background-color: var(--primary-light);
|
|
831
|
+
color: white;
|
|
832
|
+
border-radius: 10px;
|
|
833
|
+
margin-bottom: 1.25rem;
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
.capsula-icone svg {
|
|
838
|
+
width: 1.75rem;
|
|
839
|
+
height: 1.75rem;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
.capsula-conteudo {
|
|
843
|
+
padding: 20px;
|
|
844
|
+
display: flex;
|
|
845
|
+
flex-direction: column;
|
|
846
|
+
flex-grow: 1;
|
|
847
|
+
justify-content: space-between;
|
|
848
|
+
height: 100%;
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
.capsula-titulo {
|
|
852
|
+
color: var(--primary-color);
|
|
853
|
+
font-size: 1.35rem;
|
|
854
|
+
font-weight: 700;
|
|
855
|
+
margin-bottom: 10px;
|
|
856
|
+
line-height: 1.3;
|
|
857
|
+
transition: var(--transition);
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
.capsula-card:hover .capsula-titulo {
|
|
861
|
+
color: #085a63;
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
.capsula-descricao {
|
|
865
|
+
color: var(--text-light);
|
|
866
|
+
font-size: 0.95rem;
|
|
867
|
+
margin-bottom: 0px;
|
|
868
|
+
flex-grow: 1;
|
|
869
|
+
line-height: 1.6;
|
|
870
|
+
|
|
871
|
+
display: -webkit-box;
|
|
872
|
+
-webkit-line-clamp: 3;
|
|
873
|
+
-webkit-box-orient: vertical;
|
|
874
|
+
overflow: hidden;
|
|
875
|
+
text-overflow: ellipsis;
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
/* Tags de tipos */
|
|
879
|
+
.capsula-tipos {
|
|
880
|
+
display: flex;
|
|
881
|
+
gap: 1rem;
|
|
882
|
+
flex-wrap: wrap;
|
|
883
|
+
margin-bottom: 1.25rem;
|
|
884
|
+
display: flex;
|
|
885
|
+
align-items: center;
|
|
886
|
+
color: #024248;
|
|
887
|
+
margin-top: 10px;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
.capsula-tipo {
|
|
891
|
+
display: flex;
|
|
892
|
+
align-items: center;
|
|
893
|
+
gap: 0.35rem;
|
|
894
|
+
color: #024248;
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
.capsula-tipo-visual .tipo-dot {
|
|
898
|
+
width: 0.5rem;
|
|
899
|
+
height: 0.5rem;
|
|
900
|
+
background-color: var(--primary-color);
|
|
901
|
+
border-radius: 50%;
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
.capsula-tipo-visual .tipo-text {
|
|
905
|
+
font-size: 0.85rem;
|
|
906
|
+
font-weight: 500;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
/* Tags de recursos */
|
|
910
|
+
.capsula-recursos {
|
|
911
|
+
display: flex;
|
|
912
|
+
flex-wrap: wrap;
|
|
913
|
+
gap: 0.625rem;
|
|
914
|
+
margin-bottom: 1.75rem;
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
.recurso-tag {
|
|
918
|
+
display: inline-flex;
|
|
919
|
+
align-items: center;
|
|
920
|
+
gap: 0.35rem;
|
|
921
|
+
padding: 0.375rem 0.625rem;
|
|
922
|
+
background-color: #f1f5f9;
|
|
923
|
+
border-radius: var(--radius-sm);
|
|
924
|
+
font-size: 0.75rem;
|
|
925
|
+
color: var(--text-color);
|
|
926
|
+
transition: var(--transition);
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.capsula-card:hover .recurso-tag {
|
|
930
|
+
background-color: #e2e8f0;
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
.recurso-tag svg {
|
|
934
|
+
width: 0.85rem;
|
|
935
|
+
height: 0.85rem;
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
/* Priority badges */
|
|
939
|
+
.prioridade-tag {
|
|
940
|
+
display: inline-flex;
|
|
941
|
+
align-items: center;
|
|
942
|
+
gap: 0.35rem;
|
|
943
|
+
padding: 0.375rem 0.625rem;
|
|
944
|
+
border-radius: var(--radius-sm);
|
|
945
|
+
font-size: 0.8rem;
|
|
946
|
+
font-weight: 500;
|
|
947
|
+
margin-bottom: 1.25rem;
|
|
948
|
+
width: fit-content;
|
|
949
|
+
background: #E6EFFA;
|
|
950
|
+
color: #155BCB;
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
.prioridade-obrigatorio {
|
|
954
|
+
background-color: rgba(239, 68, 68, 0.1);
|
|
955
|
+
color: #ef4444;
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
/* Empty state */
|
|
959
|
+
.conteudo-vazio {
|
|
960
|
+
padding: 4rem 2rem;
|
|
961
|
+
text-align: center;
|
|
962
|
+
background-color: white;
|
|
963
|
+
border-radius: var(--radius);
|
|
964
|
+
box-shadow: var(--shadow);
|
|
965
|
+
border: 1px solid rgba(0, 0, 0, 0.03);
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
.conteudo-vazio-icone {
|
|
969
|
+
width: 4rem;
|
|
970
|
+
height: 4rem;
|
|
971
|
+
color: var(--text-light);
|
|
972
|
+
margin-bottom: 1.5rem;
|
|
973
|
+
opacity: 0.7;
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
.conteudo-vazio h2 {
|
|
977
|
+
font-size: 1.75rem;
|
|
978
|
+
margin-bottom: 0.75rem;
|
|
979
|
+
color: var(--text-color);
|
|
980
|
+
font-weight: 600;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
.conteudo-vazio p {
|
|
984
|
+
color: var(--text-light);
|
|
985
|
+
max-width: 400px;
|
|
986
|
+
margin: 0 auto;
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
.conteudo-vazio a {
|
|
990
|
+
color: var(--primary-color);
|
|
991
|
+
text-decoration: none;
|
|
992
|
+
font-weight: 500;
|
|
993
|
+
transition: color 0.15s ease;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
.conteudo-vazio a:hover {
|
|
997
|
+
color: #085a63;
|
|
998
|
+
text-decoration: underline;
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
/* Responsive styles */
|
|
1002
|
+
@media (max-width: 1100px) {
|
|
1003
|
+
.acessibilidade-conteudo-container {
|
|
1004
|
+
flex-direction: column;
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
.filtros-lateral {
|
|
1008
|
+
width: 100%;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
.grade-resultados {
|
|
1012
|
+
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
|
1013
|
+
}
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
@media (max-width: 768px) {
|
|
1017
|
+
.page-title-capsulas {
|
|
1018
|
+
font-size: 2rem;
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
.page-title-container {
|
|
1022
|
+
padding: 2rem 0;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
|
|
1026
|
+
.logo {
|
|
1027
|
+
margin-right: 0;
|
|
1028
|
+
margin-bottom: 0.5rem;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
.resultados-header {
|
|
1032
|
+
flex-direction: column;
|
|
1033
|
+
align-items: flex-start;
|
|
1034
|
+
gap: 1rem;
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
.grade-resultados {
|
|
1038
|
+
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
|
1039
|
+
}
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
@media (max-width: 640px) {
|
|
1043
|
+
.acessibilidade-container-page {
|
|
1044
|
+
padding: 0 1rem;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
.page-title-container {
|
|
1048
|
+
padding: 1.5rem 0;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
.page-title {
|
|
1052
|
+
font-size: 1.75rem;
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
.grade-resultados {
|
|
1056
|
+
grid-template-columns: 1fr;
|
|
1057
|
+
}
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
/* Breadcrumb styles */
|
|
1061
|
+
.breadcrumb {
|
|
1062
|
+
display: flex;
|
|
1063
|
+
align-items: center;
|
|
1064
|
+
flex-wrap: wrap;
|
|
1065
|
+
gap: 0.5rem;
|
|
1066
|
+
margin-bottom: 1rem;
|
|
1067
|
+
font-size: 0.875rem;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
.breadcrumb a {
|
|
1071
|
+
color: var(--text-light);
|
|
1072
|
+
text-decoration: none;
|
|
1073
|
+
transition: color 0.2s ease;
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
.breadcrumb a:hover {
|
|
1077
|
+
color: var(--primary-color);
|
|
1078
|
+
text-decoration: underline;
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
.breadcrumb-separator {
|
|
1082
|
+
color: var(--text-light);
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
.sr-only {
|
|
1086
|
+
position: absolute;
|
|
1087
|
+
width: 1px;
|
|
1088
|
+
height: 1px;
|
|
1089
|
+
padding: 0;
|
|
1090
|
+
margin: -1px;
|
|
1091
|
+
overflow: hidden;
|
|
1092
|
+
clip: rect(0, 0, 0, 0);
|
|
1093
|
+
white-space: nowrap;
|
|
1094
|
+
border-width: 0;
|
|
6
1095
|
}
|
|
1096
|
+
|
|
1097
|
+
|
|
1098
|
+
|
|
1099
|
+
|
|
1100
|
+
|
|
7
1101
|
|
|
8
1102
|
/* Estilos do Container Principal */
|
|
9
1103
|
.quiz-container {
|
|
10
1104
|
display: flex;
|
|
1105
|
+
flex-direction: column;
|
|
11
1106
|
min-height: 100vh;
|
|
12
|
-
|
|
1107
|
+
max-width: 1142px;
|
|
1108
|
+
margin: auto ;
|
|
13
1109
|
}
|
|
14
1110
|
|
|
15
1111
|
/* Lado Esquerdo - Informações */
|
|
16
1112
|
.quiz-info {
|
|
17
|
-
|
|
18
|
-
background-color: #02333A;
|
|
19
|
-
color: white;
|
|
1113
|
+
color: #02333A;
|
|
20
1114
|
padding: 3rem;
|
|
21
1115
|
display: flex;
|
|
22
1116
|
flex-direction: column;
|
|
23
1117
|
gap: 50px;
|
|
24
1118
|
}
|
|
1119
|
+
|
|
1120
|
+
.quiz-info-card{
|
|
1121
|
+
background-color: white;
|
|
1122
|
+
margin: auto;
|
|
1123
|
+
max-width: 800px;
|
|
1124
|
+
display: flex;
|
|
1125
|
+
align-items: center;
|
|
1126
|
+
flex-direction: column;
|
|
1127
|
+
}
|
|
25
1128
|
|
|
26
1129
|
/* Lado Direito - Perguntas */
|
|
27
1130
|
.quiz-questions {
|
|
28
|
-
width: 50%;
|
|
29
1131
|
background-color: #FFFFFF;
|
|
30
1132
|
padding: 3rem;
|
|
31
|
-
box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
|
|
32
1133
|
}
|
|
33
1134
|
|
|
34
1135
|
/* Link para Homepage */
|
|
35
1136
|
.home-link {
|
|
36
1137
|
display: flex;
|
|
37
1138
|
align-items: center;
|
|
38
|
-
color: #
|
|
1139
|
+
color: #007D7A;
|
|
39
1140
|
text-decoration: none;
|
|
40
1141
|
font-weight: 500;
|
|
41
1142
|
margin-bottom: 2rem;
|
|
@@ -46,7 +1147,7 @@ body {
|
|
|
46
1147
|
}
|
|
47
1148
|
|
|
48
1149
|
.home-link svg path {
|
|
49
|
-
stroke: #
|
|
1150
|
+
stroke: #007D7A;
|
|
50
1151
|
}
|
|
51
1152
|
|
|
52
1153
|
/* Indicador de Passos */
|
|
@@ -59,15 +1160,15 @@ body {
|
|
|
59
1160
|
|
|
60
1161
|
/* Título da Pergunta */
|
|
61
1162
|
.question-title {
|
|
62
|
-
color: #
|
|
63
|
-
font-size:
|
|
64
|
-
font-weight:
|
|
1163
|
+
color: #024248;
|
|
1164
|
+
font-size: 20px;
|
|
1165
|
+
font-weight: 600;
|
|
65
1166
|
margin-bottom: 0.5rem;
|
|
66
1167
|
line-height: 1.2;
|
|
67
1168
|
}
|
|
68
1169
|
|
|
69
1170
|
.question-subtitle {
|
|
70
|
-
color:
|
|
1171
|
+
color: #333840;
|
|
71
1172
|
font-size: 1.125rem;
|
|
72
1173
|
margin-bottom: 2rem;
|
|
73
1174
|
}
|
|
@@ -85,14 +1186,26 @@ body {
|
|
|
85
1186
|
/* Cards de Perguntas */
|
|
86
1187
|
.pergunta-card {
|
|
87
1188
|
height: 100%;
|
|
1189
|
+
padding: 30px;
|
|
88
1190
|
display: flex;
|
|
89
1191
|
flex-direction: column;
|
|
90
1192
|
justify-content: space-between;
|
|
1193
|
+
background-color: var(--card-bg);
|
|
1194
|
+
border-radius: var(--radius);
|
|
1195
|
+
box-shadow: var(--shadow);
|
|
1196
|
+
overflow: hidden;
|
|
1197
|
+
display: flex;
|
|
1198
|
+
flex-direction: column;
|
|
1199
|
+
height: 100%;
|
|
1200
|
+
transition: var(--transition);
|
|
1201
|
+
border: 1px solid rgba(0, 0, 0, 0.03);
|
|
1202
|
+
position: relative;
|
|
91
1203
|
}
|
|
92
1204
|
|
|
93
1205
|
/* Container de Opções */
|
|
94
1206
|
.options-container {
|
|
95
|
-
display:
|
|
1207
|
+
display: grid;
|
|
1208
|
+
grid-template-columns: 1fr 1fr;
|
|
96
1209
|
flex-direction: column;
|
|
97
1210
|
gap: 0.75rem;
|
|
98
1211
|
margin-bottom: 2rem;
|
|
@@ -270,16 +1383,14 @@ body {
|
|
|
270
1383
|
.capsula-card {
|
|
271
1384
|
background-color: white;
|
|
272
1385
|
border-radius: 10px;
|
|
273
|
-
padding: 1.5rem;
|
|
274
1386
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
275
1387
|
position: relative;
|
|
276
|
-
color: #333;
|
|
277
|
-
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
278
1388
|
}
|
|
279
1389
|
|
|
280
1390
|
.capsula-card:hover {
|
|
281
|
-
transform: translateY(-5px);
|
|
282
1391
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
|
|
1392
|
+
color: #006969;
|
|
1393
|
+
background-color: #EBEFF5;
|
|
283
1394
|
}
|
|
284
1395
|
|
|
285
1396
|
.capsula-card.obrigatorio {
|
|
@@ -377,14 +1488,6 @@ body {
|
|
|
377
1488
|
font-size: 1.125rem;
|
|
378
1489
|
}
|
|
379
1490
|
|
|
380
|
-
/* Menu GovBR */
|
|
381
|
-
.menu {
|
|
382
|
-
display: flex;
|
|
383
|
-
align-items: center;
|
|
384
|
-
padding: 0.75rem 2rem;
|
|
385
|
-
color: white;
|
|
386
|
-
}
|
|
387
|
-
|
|
388
1491
|
.menu a {
|
|
389
1492
|
color: white;
|
|
390
1493
|
text-decoration: none;
|
|
@@ -430,11 +1533,7 @@ body {
|
|
|
430
1533
|
.acoes-resultado {
|
|
431
1534
|
flex-direction: column;
|
|
432
1535
|
}
|
|
433
|
-
|
|
434
|
-
.menu {
|
|
435
|
-
flex-wrap: wrap;
|
|
436
|
-
gap: 0.5rem;
|
|
437
|
-
}
|
|
1536
|
+
|
|
438
1537
|
|
|
439
1538
|
.separator {
|
|
440
1539
|
display: none;
|
|
@@ -723,12 +1822,7 @@ body {
|
|
|
723
1822
|
|
|
724
1823
|
/* ============================================ */
|
|
725
1824
|
/* LAYOUT PRINCIPAL */
|
|
726
|
-
/* ============================================ */
|
|
727
|
-
|
|
728
|
-
.acessibilidade-container-page {
|
|
729
|
-
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
|
|
730
|
-
min-height: 100vh;
|
|
731
|
-
}
|
|
1825
|
+
/* ============================================ */
|
|
732
1826
|
|
|
733
1827
|
.acessibilidade-container-white {
|
|
734
1828
|
background: white;
|
|
@@ -2189,4 +3283,474 @@ nav a:hover, nav a:focus {
|
|
|
2189
3283
|
width: 32px;
|
|
2190
3284
|
height: 32px;
|
|
2191
3285
|
}
|
|
3286
|
+
}
|
|
3287
|
+
|
|
3288
|
+
|
|
3289
|
+
|
|
3290
|
+
|
|
3291
|
+
|
|
3292
|
+
|
|
3293
|
+
|
|
3294
|
+
/* ============================================
|
|
3295
|
+
LAYOUT GERAL - Estilo W3C/WCAG
|
|
3296
|
+
============================================ */
|
|
3297
|
+
|
|
3298
|
+
.wrapper-capsulas-page {
|
|
3299
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
3300
|
+
font-size: 16px;
|
|
3301
|
+
line-height: 1.6;
|
|
3302
|
+
color: #333;
|
|
3303
|
+
background-color: #fff;
|
|
3304
|
+
}
|
|
3305
|
+
|
|
3306
|
+
/* ============================================
|
|
3307
|
+
BREADCRUMB E NAVEGAÇÃO SUPERIOR
|
|
3308
|
+
============================================ */
|
|
3309
|
+
|
|
3310
|
+
.capsulas-header-bar {
|
|
3311
|
+
background-color: #f8f9fa;
|
|
3312
|
+
border-bottom: 1px solid #dee2e6;
|
|
3313
|
+
padding: 1rem 0;
|
|
3314
|
+
}
|
|
3315
|
+
|
|
3316
|
+
.capsulas-breadcrumb {
|
|
3317
|
+
display: flex;
|
|
3318
|
+
align-items: center;
|
|
3319
|
+
gap: 0.5rem;
|
|
3320
|
+
font-size: 0.9rem;
|
|
3321
|
+
}
|
|
3322
|
+
|
|
3323
|
+
.capsulas-back-btn {
|
|
3324
|
+
display: inline-flex;
|
|
3325
|
+
align-items: center;
|
|
3326
|
+
gap: 0.5rem;
|
|
3327
|
+
color: #006969;
|
|
3328
|
+
text-decoration: none;
|
|
3329
|
+
padding: 0.25rem 0.5rem;
|
|
3330
|
+
border-radius: 4px;
|
|
3331
|
+
transition: background-color 0.2s;
|
|
3332
|
+
}
|
|
3333
|
+
|
|
3334
|
+
.capsulas-back-btn:hover {
|
|
3335
|
+
background-color: #e9ecef;
|
|
3336
|
+
text-decoration: underline;
|
|
3337
|
+
}
|
|
3338
|
+
|
|
3339
|
+
.capsulas-back-btn i {
|
|
3340
|
+
font-size: 0.85rem;
|
|
3341
|
+
}
|
|
3342
|
+
|
|
3343
|
+
.capsulas-separator {
|
|
3344
|
+
color: #6c757d;
|
|
3345
|
+
}
|
|
3346
|
+
|
|
3347
|
+
.capsulas-current {
|
|
3348
|
+
color: #495057;
|
|
3349
|
+
font-weight: 700;
|
|
3350
|
+
}
|
|
3351
|
+
|
|
3352
|
+
/* ============================================
|
|
3353
|
+
LAYOUT PRINCIPAL: SIDEBAR + CONTEÚDO
|
|
3354
|
+
============================================ */
|
|
3355
|
+
|
|
3356
|
+
.capsulas-layout {
|
|
3357
|
+
display: grid;
|
|
3358
|
+
grid-template-columns: 250px 1fr;
|
|
3359
|
+
gap: 2rem;
|
|
3360
|
+
max-width: 1200px;
|
|
3361
|
+
margin: 0 auto;
|
|
3362
|
+
padding: 2rem 1rem;
|
|
3363
|
+
position: relative;
|
|
3364
|
+
}
|
|
3365
|
+
|
|
3366
|
+
@media (max-width: 992px) {
|
|
3367
|
+
.capsulas-layout {
|
|
3368
|
+
grid-template-columns: 200px 1fr;
|
|
3369
|
+
gap: 1.5rem;
|
|
3370
|
+
}
|
|
3371
|
+
}
|
|
3372
|
+
|
|
3373
|
+
@media (max-width: 768px) {
|
|
3374
|
+
.capsulas-layout {
|
|
3375
|
+
grid-template-columns: 1fr;
|
|
3376
|
+
}
|
|
3377
|
+
|
|
3378
|
+
.capsulas-sidebar {
|
|
3379
|
+
position: static;
|
|
3380
|
+
width: 100%;
|
|
3381
|
+
border-right: none;
|
|
3382
|
+
border-bottom: 1px solid #dee2e6;
|
|
3383
|
+
padding-bottom: 1rem;
|
|
3384
|
+
margin-bottom: 1rem;
|
|
3385
|
+
}
|
|
3386
|
+
}
|
|
3387
|
+
|
|
3388
|
+
/* ============================================
|
|
3389
|
+
SIDEBAR COM ÍNDICE FIXO
|
|
3390
|
+
============================================ */
|
|
3391
|
+
|
|
3392
|
+
.capsulas-sidebar {
|
|
3393
|
+
position: relative;
|
|
3394
|
+
top: 1rem;
|
|
3395
|
+
height: fit-content;
|
|
3396
|
+
border-right: 1px solid #dee2e6;
|
|
3397
|
+
padding-right: 1.5rem;
|
|
3398
|
+
}
|
|
3399
|
+
|
|
3400
|
+
.capsulas-sidebar-content {
|
|
3401
|
+
padding: 0;
|
|
3402
|
+
position: fixed;
|
|
3403
|
+
}
|
|
3404
|
+
|
|
3405
|
+
.capsulas-sidebar-title {
|
|
3406
|
+
font-size: 1rem;
|
|
3407
|
+
font-weight: 600;
|
|
3408
|
+
color: #495057;
|
|
3409
|
+
margin: 0 0 1rem 0;
|
|
3410
|
+
text-transform: uppercase;
|
|
3411
|
+
letter-spacing: 0.5px;
|
|
3412
|
+
}
|
|
3413
|
+
|
|
3414
|
+
.capsulas-index ul {
|
|
3415
|
+
list-style: none;
|
|
3416
|
+
padding: 0;
|
|
3417
|
+
margin: 0;
|
|
3418
|
+
display: flex;
|
|
3419
|
+
flex-direction: column;
|
|
3420
|
+
gap: 5px;
|
|
3421
|
+
}
|
|
3422
|
+
|
|
3423
|
+
.capsulas-index li {
|
|
3424
|
+
padding-left: 0;
|
|
3425
|
+
}
|
|
3426
|
+
|
|
3427
|
+
.capsulas-index-link {
|
|
3428
|
+
display: block;
|
|
3429
|
+
padding: 0.5rem 0.75rem;
|
|
3430
|
+
color: #007D7A;
|
|
3431
|
+
font-weight: 600;
|
|
3432
|
+
text-decoration: none;
|
|
3433
|
+
border-left: 3px solid transparent;
|
|
3434
|
+
font-size: 0.95rem;
|
|
3435
|
+
transition: all 0.2s;
|
|
3436
|
+
}
|
|
3437
|
+
|
|
3438
|
+
.capsulas-index-link:hover {
|
|
3439
|
+
background-color: #f8f9fa;
|
|
3440
|
+
border-left-color: #006969;
|
|
3441
|
+
padding-left: 1rem;
|
|
3442
|
+
}
|
|
3443
|
+
|
|
3444
|
+
.capsulas-index-link.active {
|
|
3445
|
+
background-color: #e7f1ff;
|
|
3446
|
+
border-left-color: #025257;
|
|
3447
|
+
font-weight: 600;
|
|
3448
|
+
color: #025257;
|
|
3449
|
+
}
|
|
3450
|
+
|
|
3451
|
+
/* ============================================
|
|
3452
|
+
CONTEÚDO PRINCIPAL
|
|
3453
|
+
============================================ */
|
|
3454
|
+
|
|
3455
|
+
.capsulas-main-content {
|
|
3456
|
+
max-width: 800px;
|
|
3457
|
+
}
|
|
3458
|
+
|
|
3459
|
+
/* Cabeçalho da página */
|
|
3460
|
+
.capsulas-page-header {
|
|
3461
|
+
margin-bottom: 2rem;
|
|
3462
|
+
padding-bottom: 1.5rem;
|
|
3463
|
+
border-bottom: 2px solid #dee2e6;
|
|
3464
|
+
}
|
|
3465
|
+
|
|
3466
|
+
.capsulas-priority-badge {
|
|
3467
|
+
display: inline-block;
|
|
3468
|
+
padding: 0.25rem 0.75rem;
|
|
3469
|
+
font-size: 0.85rem;
|
|
3470
|
+
font-weight: 600;
|
|
3471
|
+
text-transform: uppercase;
|
|
3472
|
+
background-color: #d1ecf1;
|
|
3473
|
+
color: #0c5460;
|
|
3474
|
+
border-radius: 4px;
|
|
3475
|
+
margin-bottom: 1rem;
|
|
3476
|
+
}
|
|
3477
|
+
|
|
3478
|
+
.capsulas-page-header h1 {
|
|
3479
|
+
font-size: 2rem;
|
|
3480
|
+
font-weight: 700;
|
|
3481
|
+
color: #212529;
|
|
3482
|
+
margin: 0.5rem 0;
|
|
3483
|
+
line-height: 1.2;
|
|
3484
|
+
}
|
|
3485
|
+
|
|
3486
|
+
.capsulas-summary {
|
|
3487
|
+
font-size: 1.1rem;
|
|
3488
|
+
color: #495057;
|
|
3489
|
+
margin: 1rem 0 0 0;
|
|
3490
|
+
line-height: 1.6;
|
|
3491
|
+
}
|
|
3492
|
+
|
|
3493
|
+
/* ============================================
|
|
3494
|
+
SEÇÕES DE CONTEÚDO
|
|
3495
|
+
============================================ */
|
|
3496
|
+
|
|
3497
|
+
.capsulas-section {
|
|
3498
|
+
margin-bottom: 3rem;
|
|
3499
|
+
padding-bottom: 2rem;
|
|
3500
|
+
border-bottom: 1px solid #e9ecef;
|
|
3501
|
+
}
|
|
3502
|
+
|
|
3503
|
+
.capsulas-section:last-child {
|
|
3504
|
+
border-bottom: none;
|
|
3505
|
+
}
|
|
3506
|
+
|
|
3507
|
+
.capsulas-section h2 {
|
|
3508
|
+
font-size: 1.75rem;
|
|
3509
|
+
font-weight: 600;
|
|
3510
|
+
color: #024248;
|
|
3511
|
+
margin: 0 0 1rem 0;
|
|
3512
|
+
padding-bottom: 0.5rem;
|
|
3513
|
+
}
|
|
3514
|
+
|
|
3515
|
+
.capsulas-section-content {
|
|
3516
|
+
font-size: 1rem;
|
|
3517
|
+
line-height: 1.7;
|
|
3518
|
+
color: #333;
|
|
3519
|
+
}
|
|
3520
|
+
|
|
3521
|
+
.header-bg{
|
|
3522
|
+
background-color: #F5F7FA;
|
|
3523
|
+
|
|
3524
|
+
}
|
|
3525
|
+
|
|
3526
|
+
.capsulas-section-content p {
|
|
3527
|
+
margin-bottom: 1rem;
|
|
3528
|
+
}
|
|
3529
|
+
|
|
3530
|
+
.capsulas-section-content ul,
|
|
3531
|
+
.capsulas-section-content ol {
|
|
3532
|
+
margin: 1rem 0;
|
|
3533
|
+
}
|
|
3534
|
+
|
|
3535
|
+
.capsulas-section-content li {
|
|
3536
|
+
margin-bottom: 0.5rem;
|
|
3537
|
+
}
|
|
3538
|
+
|
|
3539
|
+
.capsulas-section-content a {
|
|
3540
|
+
color: #0056b3;
|
|
3541
|
+
text-decoration: underline;
|
|
3542
|
+
}
|
|
3543
|
+
|
|
3544
|
+
.capsulas-section-content a:hover {
|
|
3545
|
+
color: #006969;
|
|
3546
|
+
}
|
|
3547
|
+
|
|
3548
|
+
.capsulas-section-content code {
|
|
3549
|
+
background-color: #f8f9fa;
|
|
3550
|
+
padding: 0.2rem 0.4rem;
|
|
3551
|
+
border-radius: 3px;
|
|
3552
|
+
font-family: "Courier New", monospace;
|
|
3553
|
+
font-size: 0.9em;
|
|
3554
|
+
color: #e83e8c;
|
|
3555
|
+
}
|
|
3556
|
+
|
|
3557
|
+
.capsulas-section-content pre {
|
|
3558
|
+
background-color: #f8f9fa;
|
|
3559
|
+
border: 1px solid #dee2e6;
|
|
3560
|
+
border-radius: 4px;
|
|
3561
|
+
padding: 1rem;
|
|
3562
|
+
overflow-x: auto;
|
|
3563
|
+
margin: 1rem 0;
|
|
3564
|
+
}
|
|
3565
|
+
|
|
3566
|
+
.capsulas-section-content pre code {
|
|
3567
|
+
background: none;
|
|
3568
|
+
padding: 0;
|
|
3569
|
+
color: #212529;
|
|
3570
|
+
}
|
|
3571
|
+
|
|
3572
|
+
/* ============================================
|
|
3573
|
+
DETAILS/ACCORDION (Nativo HTML)
|
|
3574
|
+
============================================ */
|
|
3575
|
+
|
|
3576
|
+
.capsulas-details {
|
|
3577
|
+
margin: 1.5rem 0;
|
|
3578
|
+
border: 1px solid #dee2e6;
|
|
3579
|
+
border-radius: 10px;
|
|
3580
|
+
background-color: #f8f9fa;
|
|
3581
|
+
}
|
|
3582
|
+
|
|
3583
|
+
.capsulas-details summary {
|
|
3584
|
+
padding: 1rem;
|
|
3585
|
+
font-weight: 600;
|
|
3586
|
+
cursor: pointer;
|
|
3587
|
+
user-select: none;
|
|
3588
|
+
list-style: none;
|
|
3589
|
+
color: #007D7A;
|
|
3590
|
+
transition: background-color 0.2s;
|
|
3591
|
+
}
|
|
3592
|
+
|
|
3593
|
+
.capsulas-details summary::-webkit-details-marker {
|
|
3594
|
+
display: none;
|
|
3595
|
+
}
|
|
3596
|
+
|
|
3597
|
+
.capsulas-details summary::before {
|
|
3598
|
+
content: "▶ ";
|
|
3599
|
+
display: inline-block;
|
|
3600
|
+
margin-right: 0.5rem;
|
|
3601
|
+
transition: transform 0.2s;
|
|
3602
|
+
}
|
|
3603
|
+
|
|
3604
|
+
.capsulas-details[open] summary::before {
|
|
3605
|
+
transform: rotate(90deg);
|
|
3606
|
+
}
|
|
3607
|
+
|
|
3608
|
+
.capsulas-details summary:hover {
|
|
3609
|
+
background-color: #e9ecef;
|
|
3610
|
+
}
|
|
3611
|
+
|
|
3612
|
+
.capsulas-details-content {
|
|
3613
|
+
padding: 1rem;
|
|
3614
|
+
background-color: #fff;
|
|
3615
|
+
border-top: 1px solid #dee2e6;
|
|
3616
|
+
}
|
|
3617
|
+
|
|
3618
|
+
/* ============================================
|
|
3619
|
+
LISTA DE CÁPSULAS RELACIONADAS
|
|
3620
|
+
============================================ */
|
|
3621
|
+
|
|
3622
|
+
.capsulas-related-list {
|
|
3623
|
+
list-style: none;
|
|
3624
|
+
padding: 0;
|
|
3625
|
+
margin: 0;
|
|
3626
|
+
}
|
|
3627
|
+
|
|
3628
|
+
.capsulas-related-list li {
|
|
3629
|
+
margin-bottom: 1.5rem;
|
|
3630
|
+
padding: 1rem;
|
|
3631
|
+
background-color: #f8f9fa;
|
|
3632
|
+
border-left: 4px solid #007D7A;
|
|
3633
|
+
border-radius: 4px;
|
|
3634
|
+
}
|
|
3635
|
+
|
|
3636
|
+
.capsulas-related-list a {
|
|
3637
|
+
font-size: 1.1rem;
|
|
3638
|
+
font-weight: 600;
|
|
3639
|
+
color: #007D7A;
|
|
3640
|
+
text-decoration: none;
|
|
3641
|
+
}
|
|
3642
|
+
|
|
3643
|
+
.capsulas-related-list a:hover {
|
|
3644
|
+
text-decoration: underline;
|
|
3645
|
+
}
|
|
3646
|
+
|
|
3647
|
+
.capsulas-related-list p {
|
|
3648
|
+
margin: 0.5rem 0 0 0;
|
|
3649
|
+
color: #495057;
|
|
3650
|
+
font-size: 0.95rem;
|
|
3651
|
+
}
|
|
3652
|
+
|
|
3653
|
+
/* ============================================
|
|
3654
|
+
BOTÃO VOLTAR AO TOPO
|
|
3655
|
+
============================================ */
|
|
3656
|
+
|
|
3657
|
+
.capsulas-back-to-top {
|
|
3658
|
+
position: fixed;
|
|
3659
|
+
bottom: 2rem;
|
|
3660
|
+
right: 2rem;
|
|
3661
|
+
width: 50px;
|
|
3662
|
+
height: 50px;
|
|
3663
|
+
background-color: #0056b3;
|
|
3664
|
+
color: #fff;
|
|
3665
|
+
border: none;
|
|
3666
|
+
border-radius: 50%;
|
|
3667
|
+
font-size: 1.2rem;
|
|
3668
|
+
cursor: pointer;
|
|
3669
|
+
opacity: 0;
|
|
3670
|
+
visibility: hidden;
|
|
3671
|
+
transition: all 0.3s ease;
|
|
3672
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
3673
|
+
z-index: 1000;
|
|
3674
|
+
}
|
|
3675
|
+
|
|
3676
|
+
.capsulas-back-to-top:hover {
|
|
3677
|
+
background-color: #004085;
|
|
3678
|
+
transform: translateY(-3px);
|
|
3679
|
+
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
|
|
3680
|
+
}
|
|
3681
|
+
|
|
3682
|
+
.capsulas-back-to-top.show {
|
|
3683
|
+
opacity: 1;
|
|
3684
|
+
visibility: visible;
|
|
3685
|
+
}
|
|
3686
|
+
|
|
3687
|
+
/* ============================================
|
|
3688
|
+
UTILITÁRIOS E ACESSIBILIDADE
|
|
3689
|
+
============================================ */
|
|
3690
|
+
|
|
3691
|
+
.capsulas-container {
|
|
3692
|
+
max-width: 1200px;
|
|
3693
|
+
margin: 0 auto;
|
|
3694
|
+
padding: 0 1rem;
|
|
3695
|
+
}
|
|
3696
|
+
|
|
3697
|
+
/* Skip link para leitores de tela */
|
|
3698
|
+
.sr-only {
|
|
3699
|
+
position: absolute;
|
|
3700
|
+
width: 1px;
|
|
3701
|
+
height: 1px;
|
|
3702
|
+
padding: 0;
|
|
3703
|
+
margin: -1px;
|
|
3704
|
+
overflow: hidden;
|
|
3705
|
+
clip: rect(0, 0, 0, 0);
|
|
3706
|
+
white-space: nowrap;
|
|
3707
|
+
border: 0;
|
|
3708
|
+
}
|
|
3709
|
+
|
|
3710
|
+
/* Focus visível para navegação por teclado */
|
|
3711
|
+
a:focus,
|
|
3712
|
+
button:focus,
|
|
3713
|
+
summary:focus,
|
|
3714
|
+
.capsulas-index-link:focus {
|
|
3715
|
+
outline: 2px solid #0056b3;
|
|
3716
|
+
outline-offset: 2px;
|
|
3717
|
+
}
|
|
3718
|
+
|
|
3719
|
+
/* ============================================
|
|
3720
|
+
RESPONSIVIDADE
|
|
3721
|
+
============================================ */
|
|
3722
|
+
|
|
3723
|
+
@media (max-width: 768px) {
|
|
3724
|
+
.capsulas-page-header h1 {
|
|
3725
|
+
font-size: 1.5rem;
|
|
3726
|
+
}
|
|
3727
|
+
|
|
3728
|
+
.capsulas-section h2 {
|
|
3729
|
+
font-size: 1.5rem;
|
|
3730
|
+
}
|
|
3731
|
+
|
|
3732
|
+
.capsulas-sidebar-content {
|
|
3733
|
+
padding: 0;
|
|
3734
|
+
position: relative;
|
|
3735
|
+
}
|
|
3736
|
+
|
|
3737
|
+
.capsulas-back-to-top {
|
|
3738
|
+
bottom: 1rem;
|
|
3739
|
+
right: 1rem;
|
|
3740
|
+
width: 45px;
|
|
3741
|
+
height: 45px;
|
|
3742
|
+
font-size: 1rem;
|
|
3743
|
+
}
|
|
3744
|
+
}
|
|
3745
|
+
|
|
3746
|
+
@media print {
|
|
3747
|
+
.capsulas-sidebar,
|
|
3748
|
+
.capsulas-back-to-top,
|
|
3749
|
+
.capsulas-header-bar {
|
|
3750
|
+
display: none;
|
|
3751
|
+
}
|
|
3752
|
+
|
|
3753
|
+
.capsulas-layout {
|
|
3754
|
+
grid-template-columns: 1fr;
|
|
3755
|
+
}
|
|
2192
3756
|
}
|