-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
290 lines (245 loc) · 5.02 KB
/
style.css
File metadata and controls
290 lines (245 loc) · 5.02 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
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
/* Estilos Gerais */
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #d4cbc4;
color: #a78d82;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Cabeçalho */
header {
background-color:#48182f ;
padding: 20px 0;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}
header .container {
display: flex;
justify-content: space-between;
align-items: center;
}
header h1 {
margin: 0;
font-size: 2em;
color: #555;
}
header nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
header nav ul li {
margin-left: 25px;
}
header nav ul li a {
text-decoration: none;
color: #555;
font-weight: bold;
transition: color 0.3s ease;
}
header nav ul li a:hover {
color: #a0b86c; /* Cor de destaque (rosa quente) */
}
/* Botões */
.btn {
display: inline-block;
background-color: #bfcda3; /* Cor de destaque */
color: #fff;
padding: 12px 25px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
border: none;
cursor: pointer;
font-size: 1em;
}
.btn:hover {
background-color: #93a966; /* Tom mais escuro no hover */
}
/* Seção Hero */
.hero {
background: url('https://via.placeholder.com/1500x500?text=Nova+Colecao+Moda') no-repeat center center/cover;
color: #fff;
text-align: center;
padding: 100px 20px;
text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.hero h2 {
font-size: 3.5em;
margin-bottom: 15px;
}
.hero p {
font-size: 1.5em;
margin-bottom: 30px;
}
/* Seção Produtos */
.produtos {
padding: 50px 0;
background-color: #fff;
text-align: center;
}
.produtos h2 {
font-size: 2.5em;
margin-bottom: 40px;
color: #555;
}
.galeria-produtos {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
justify-content: center;
}
.produto-item {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 8px;
padding: 20px;
text-align: center;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.produto-item:hover {
transform: translateY(-5px);
}
.produto-item img {
max-width: 100%;
height: 300px; /* Altura fixa para as imagens */
object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
border-radius: 4px;
margin-bottom: 15px;
}
.produto-item h3 {
font-size: 1.5em;
margin-bottom: 10px;
color: #666;
}
.produto-item p {
font-size: 0.9em;
color: #777;
margin-bottom: 15px;
}
.produto-item .preco {
font-size: 1.3em;
font-weight: bold;
color: #bfcda3; /* Cor de destaque */
display: block;
margin-bottom: 15px;
}
.btn-add-carrinho {
background-color: #8fae68; /* Verde para adicionar ao carrinho */
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.btn-add-carrinho:hover {
background-color: #45a049;
}
/* Seção Novidades (Newsletter) */
.novidades {
background-color: #f0f0f0;
padding: 50px 0;
text-align: center;
}
.novidades h2 {
font-size: 2.2em;
margin-bottom: 20px;
color: #555;
}
.novidades p {
font-size: 1.1em;
margin-bottom: 30px;
color: #666;
}
.newsletter-form {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
max-width: 500px;
margin: 0 auto;
}
.newsletter-form input[type="email"] {
flex-grow: 1;
padding: 12px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1em;
}
.newsletter-form .btn {
padding: 12px 25px;
}
/* Rodapé */
footer {
background-color: #333;
color: #fff;
padding: 30px 0;
text-align: center;
}
footer .container {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap; /* Para responsividade em telas menores */
}
footer p {
margin: 0;
font-size: 0.9em;
}
.redes-sociais a {
color: #fff;
font-size: 1.5em;
margin-left: 15px;
transition: color 0.3s ease;
}
.redes-sociais a:hover {
color: #bfcda3; /* Cor de destaque */
}
/* Responsividade Básica */
@media (max-width: 768px) {
header .container {
flex-direction: column;
text-align: center;
}
header nav ul {
margin-top: 15px;
flex-direction: column;
}
header nav ul li {
margin: 5px 0;
}
.hero h2 {
font-size: 2.5em;
}
.hero p {
font-size: 1.2em;
}
.galeria-produtos {
grid-template-columns: 1fr; /* Uma coluna em telas pequenas */
}
.newsletter-form {
flex-direction: column;
}
.newsletter-form input[type="email"] {
width: 100%;
margin-bottom: 10px;
}
footer .container {
flex-direction: column;
gap: 15px;
}
.redes-sociais {
margin-top: 15px;
}
}