-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
220 lines (186 loc) · 3.77 KB
/
Copy pathstyle.css
File metadata and controls
220 lines (186 loc) · 3.77 KB
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
/* Importação das fontes */
@import url('https://fonts.googleapis.com/css2?family=League+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700&display=swap');
/* Fundo preto e texto branco para toda a página */
body {
background-color: #000;
color: #ffffff;
font-family: 'Raleway', Arial, sans-serif; /* Dumond substituída por Raleway */
margin: 0;
scroll-behavior: smooth;
font-weight: 700;
}
/* Cabeçalho com logo e ícones */
.topo {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #000;
padding: 20px 40px;
}
.logo img {
max-height: 140px;
}
.menu .icons {
list-style: none;
display: flex;
gap: 20px;
margin: 0;
padding: 0;
}
.menu .icons li a {
color: #ffffff;
font-size: 1.5rem;
transition: 0.3s;
}
.menu .icons li a:hover {
color: #FFBD59;
}
/* Seções gerais */
section {
padding: 60px 40px;
}
/* Títulos com League Gothic e centralizados */
h1, h2, h3, h4, h5, h6, .titulo-depoimento {
font-family: 'League Gothic', Arial, sans-serif;
font-weight: normal;
text-align: center;
font-size: 3.5rem;
color: #FFBD59;
}
/* Depoimentos */
#depoimentos {
padding: 60px 20px;
background-color: #0a0a0a;
text-align: center;
overflow: hidden;
}
.titulo-depoimento {
margin-bottom: 40px;
letter-spacing: 1px;
}
/* Carrossel que mostra 1 vídeo por vez */
.carrossel-depoimentos {
position: relative;
max-width: 320px;
height: 570px;
margin: 0 auto;
}
.video-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: none;
transition: opacity 0.5s ease;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 0 20px rgba(255, 189, 89, 0.3);
}
.video-container.active {
display: block;
}
.video-container iframe {
width: 100%;
height: 100%;
border: none;
}
/* Formulário de contato */
#contato {
text-align: left;
}
.contact-form {
max-width: 500px;
margin-bottom: 30px;
}
.contact-form label {
display: block;
margin-top: 10px;
}
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 10px;
margin-top: 5px;
border-radius: 5px;
border: 1px solid #ccc;
background-color: #222;
color: white;
font-family: 'Raleway', Arial, sans-serif;
}
.contact-form button {
margin-top: 15px;
padding: 10px 20px;
background: white;
color: black;
border: none;
border-radius: 5px;
cursor: pointer;
}
.contact-form button:hover {
background: #FFBD59;
}
/* Botões de redes sociais (menu e rodapé) */
.icons {
list-style: none;
justify-content: center;
display: flex;
gap: 20px;
margin: 20px 0;
padding: 0;
}
.icons li a {
color: white;
font-size: 3.0rem;
transition: 0.3s;
}
.icons li a:hover {
color: #FFBD59;
}
/* Rodapé */
footer {
background: #111;
color: white;
text-align: center;
padding: 20px;
font-family: 'Raleway', Arial, sans-serif;
}
/* RESPONSIVO */
/* Telas até 480px (celulares) */
@media screen and (max-width: 480px) {
#depoimentos {
padding: 40px 10px;
}
.titulo-depoimento {
font-size: 2.5rem;
margin-bottom: 30px;
}
.carrossel-depoimentos {
max-width: 100%;
height: 90vh;
}
.video-container {
border-radius: 0;
box-shadow: none;
}
.video-container iframe {
height: 90vh;
}
section {
padding: 40px 15px;
}
.contact-form {
max-width: 100%;
}
}
/* Telas maiores - Desktop e tablets */
@media screen and (min-width: 768px) {
.carrossel-depoimentos {
max-width: 320px;
height: 570px;
}
.titulo-depoimento {
font-size: 3.5rem;
}
}