-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
436 lines (371 loc) · 8.54 KB
/
styles.css
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
/* Reset básico */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
color: #333;
background-color: #f4f4f4;
}
/* Header e Navegação */
header {
background-color: #000;
color: #fff;
padding: 20px;
position: fixed; /* Fixar o header no topo da página */
width: 100%; /* O header deve ocupar toda a largura da página */
top: 0;
left: 0;
z-index: 100; /* Para garantir que o header fique acima dos outros elementos */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adiciona uma leve sombra */
}
body {
font-family: 'Roboto', sans-serif;
color: #333;
background-color: #f4f4f4;
margin-top: 80px; /* Compensar a altura do header fixo */
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.logo {
display: flex;
align-items: center;
}
.logo img {
width: 50px;
height: auto;
margin-right: 10px;
}
.Logos {
text-decoration: none;
margin-top: 10px;
}
.logo span {
font-size: 28px;
font-weight: bold;
color: #fff;
}
.nav-links {
list-style: none;
display: flex;
align-items: center;
}
.nav-links li {
margin-left: 25px;
}
.nav-links a {
color: #fff;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.nav-links a:hover {
color: #ffcc00;
}
#contact-button {
background-color: #ffcc00;
padding: 12px 24px;
color: #000;
text-decoration: none;
font-weight: 600;
border-radius: 5px;
transition: background-color 0.3s ease, color 0.3s ease;
}
#contact-button:hover {
background-color: #000;
color: #ffcc00;
}
/* Ícone de menu (hambúrguer) - Apenas para dispositivos móveis */
.menu-icon {
display: none; /* Esconder em telas grandes */
}
/* Responsivo: Ajustes para telas menores */
@media (max-width: 768px) {
.menu-icon {
display: block; /* Mostrar o ícone de menu no mobile */
cursor: pointer;
color: #fff;
font-size: 28px;
}
.nav-links {
display: none; /* Esconder o menu de navegação por padrão no mobile */
background-color: #000;
width: 100%;
text-align: center;
padding: 20px 0;
}
.nav-links.show {
display: flex; /* Mostrar o menu de navegação quando o ícone for clicado */
flex-direction: column;
}
.nav-links li {
margin: 10px 0;
}
}
/* Seção Home */
.home-section {
background: url('imgs/Imagem.jpeg') no-repeat center center/cover; /* Imagem de fundo ajustada */
color: #fff;
display: flex;
align-items: center;
justify-content: center;
padding: 80px 20px;
height: 100vh;
position: relative;
text-align: center; /* Centralizar o texto */
}
.home-container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column; /* Layout vertical por padrão */
max-width: 1200px;
width: 100%;
margin: auto;
}
.home-text {
background: rgba(0, 0, 0, 0.6); /* Fundo escuro para contraste */
padding: 40px;
border-radius: 8px;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
max-width: 500px;
}
.home-text h1 {
font-size: 36px; /* Ajuste o tamanho da fonte */
margin-bottom: 20px;
font-weight: 700;
color: #fff;
}
.home-text p {
font-size: 18px; /* Ajuste o tamanho da fonte */
line-height: 1.6;
color: #fff;
}
/* Responsivo: Layout em coluna para dispositivos móveis */
@media (max-width: 768px) {
.home-container {
flex-direction: column; /* Layout vertical em telas pequenas */
text-align: center;
}
.home-text {
margin-bottom: 20px;
padding: 20px;
}
.home-section {
background-position: +80% center; /* Mover a imagem de fundo mais para a esquerda em dispositivos móveis */
}
}
/* Sessão Serviços */
.services-section {
padding: 80px 20px;
background-color: #fff;
color: #000;
text-align: center;
}
.services-list {
display: flex;
flex-wrap: wrap; /* Permite que os itens quebrem linha */
justify-content: space-between; /* Espaça os itens */
gap: 20px;
}
.service-item {
flex: 1 1 calc(25% - 20px); /* 25% de largura menos o gap */
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Sombra leve */
border-radius: 8px;
padding: 20px;
background-color: #f9f9f9;
}
.service-item img {
width: 100%;
height: auto;
border-radius: 8px;
}
.service-item h3 {
margin-top: 15px;
font-size: 24px;
color: #000;
}
.service-item p {
font-size: 16px;
color: #666;
margin-top: 10px;
}
/* Responsivo: Ajuste para 2 colunas em telas médias */
@media (max-width: 1024px) {
.service-item {
flex: 1 1 calc(50% - 20px); /* 2 colunas em telas médias */
}
}
/* Responsivo: Ajuste para 1 coluna em telas pequenas */
@media (max-width: 768px) {
.service-item {
flex: 1 1 100%; /* 1 coluna em telas pequenas */
}
}
/* Sessão Sobre */
.about-section {
background-color: #f4f4f4;
padding: 80px 20px;
text-align: center;
}
.about-section h2 {
margin-bottom: 40px;
font-size: 36px;
font-weight: 700;
}
.about-content {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.vision, .mission, .values {
flex: 1;
margin: 20px;
max-width: 300px;
padding: 20px;
background: #fff;
border-radius: 8px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
/* Rodapé */
footer {
background-color: #000;
color: #fff;
text-align: center;
padding: 30px 20px;
}
footer p {
margin-bottom: 10px;
}
.social-media {
margin-top: 10px;
}
.social-media a {
color: #fff;
font-size: 24px;
margin: 0 15px;
text-decoration: none;
transition: color 0.3s ease;
}
.social-media #ig:hover{
color: #833ab4; /* Efeito de hover para links das redes sociais */
}
.social-media #lk:hover{
color: #0e76a8; /* Efeito de hover para links das redes sociais */
}
/* Pop-up de Contato */
.popup {
display: none; /* Inicialmente escondido */
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
align-items: center;
justify-content: center;
z-index: 1000;
}
.popup-content {
background: #fff;
padding: 30px;
border-radius: 8px;
width: 90%;
max-width: 600px;
position: relative;
}
.popup-content h2 {
margin-bottom: 20px;
font-size: 28px;
font-weight: 600;
}
.popup-content label {
display: block;
margin: 10px 0 5px;
}
.popup-content input, .popup-content textarea, .popup-content select {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border-radius: 4px;
border: 1px solid #ddd;
}
.popup-content button {
background-color: #ffcc00;
color: #000;
padding: 12px 24px;
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: 600;
}
.popup-content button:hover {
background-color: #000;
color: #ffcc00;
}
.close-button {
position: absolute;
top: 15px;
right: 15px;
font-size: 24px;
cursor: pointer;
}
.close-button-work {
position: absolute;
top: 15px;
right: 15px;
font-size: 24px;
cursor: pointer;
}
/* Responsivo */
@media (max-width: 768px) {
.nav-links {
flex-direction: column;
align-items: flex-start;
}
.nav-links li {
margin: 10px 0;
}
.services-list {
flex-direction: column;
}
.service-item {
flex-basis: 100%;
}
.home-section {
padding: 60px 20px;
}
}
/* Ícone do WhatsApp */
.whatsapp-icon {
position: fixed;
bottom: 20px; /* Distância do fundo */
right: 20px; /* Distância da direita */
background-color: #25D366; /* Cor de fundo do WhatsApp */
color: #fff; /* Cor do ícone */
border-radius: 50%;
width: 60px; /* Largura do ícone */
height: 60px; /* Altura do ícone */
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
z-index: 1000; /* Garante que o ícone esteja sobre outros elementos */
text-decoration: none; /* Remove o sublinhado do link */
font-size: 24px; /* Tamanho do ícone */
transition: background-color 0.3s ease;
}
.whatsapp-icon:hover {
background-color: #128C7E; /* Cor de fundo ao passar o mouse */
}
.whatsapp-icon i {
font-size: 24px; /* Tamanho do ícone */
}