forked from yasmngoncalves/Projeto-EcoAventureiros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
254 lines (214 loc) · 4.83 KB
/
style.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
/* Reset básico */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
margin: 0;
}
/* Fundo do site - Background - Corpo */
body {
background-color: #F0F8E2;
color: #333;
font-family: 'Open Sans', sans-serif;
display: flex;
flex-direction: column;
}
/* Navbar*/
.navbar {
background: #29B6F6;
}
.navbar-brand, .nav-link {
color: #fff !important;
font-weight: bold;
text-transform: uppercase;
}
/* Estilo para os itens do menu */
.navbar-nav .nav-link {
color: white;
margin: 0 10px;
transition: background-color 0.3s;
}
/* Item ativo com fundo azul */
.navbar-nav .nav-link.active {
background-color: #FFC107;
color: white;
border-radius: 25px;
padding: 10px 20px;
}
.navbar-nav .nav-link:not(.active):hover {
background-color: #FFC107;
border-radius: 25px;
padding: 10px 20px;
}
.navbar-toggler {
border-color: rgba(255, 255, 255, 0.5);
}
.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.area-pesquisa {
border: none;
border-radius: 25px;
}
.btn-lupa {
border-radius: 25px;
}
/* Estilo do botão toggler para fundo amarelo */
.custom-toggler {
background-color: #FFD700;
border: none;
}
/* Estilo para o ícone do toggler com listras brancas */
.custom-toggler .navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath stroke='white' stroke-width='1.5' d='M2 4h12M2 8h12M2 12h12'/%3E%3C/svg%3E");
}
/* Define o tamanho fixo do carrossel apenas para telas maiores */
@media (min-width: 992px) {
.carousel-container {
max-width: 1250px;
height: 400px;
margin: 30px auto;
border-radius: 35px;
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2)
}
.carousel-container .carousel-item img {
height: 400px;
object-fit: cover;
border-radius: 35px;
}
}
main {
flex: 1;
}
/* Estilo para os títulos*/
h2 {
color: #2E7D32;
font-family: 'Open Sans', sans-serif;
font-size: 2rem;
font-weight: bold;
margin-top: 2rem;
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 1px;
padding-bottom: 0.5rem;
}
/* Estilo para os cards */
.card {
border-radius: 15px;
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Arredondar as bordas das imagens dos cards */
.card-img-top {
border-radius: 15px;
}
/* Efeito hover para os cards */
.card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
/* Estilo para o título dos cards */
.card-title {
font-family: 'Arial', sans-serif;
color: #2E7D32;
font-size: 1.25rem;
font-weight: bold;
text-align: center;
}
/* Estilo para o texto dos cards */
.card-text {
font-family: 'Arial', sans-serif;
color: #555;
font-size: 1rem;
text-align: center;
}
/* Estilo para o botão do card */
.card .btn {
display: block;
width: 50%;
margin: 0 auto;
color: white;
background-color: #FFC107;
border: none;
transition: background-color 0.3s ease;
text-transform: uppercase;
font-weight: bold;
padding: 10px 20px;
border-radius: 25px;
}
/* Efeito hover para o botão */
.card .btn:hover {
background-color: #dba503;
}
/*Área de texto do Sobre*/
.text-container {
max-width: 800px;
margin: 0 auto;
}
.text-container p {
margin-bottom: 1.5rem;
}
/* Estilo do footer */
footer {
width: 100%;
background: #43A047;
color: white;
padding-top: 50px;
text-align: center;
}
footer h5 {
font-weight: bold;
}
/* Estilos para os links do footer */
.footer-nav-link {
color: #fff;
text-decoration: none;
font-weight: normal;
}
.footer-nav {
list-style-type: none;
padding-left: 0;
}
/* Responsividade do Footer */
@media (max-width: 767px) {
.footer-nav {
text-align: center;
}
.footer-nav-link {
display: block;
margin-bottom: 10px;
}
}
/*Estilo Galeria*/
.gallery {
margin: 30px auto;
}
.gallery img {
transition: transform 0.3s ease-in-out;
}
.gallery img:hover {
transform: scale(1.1);
cursor: pointer;
}
/* Estilo para ícones circulares */
.icon-circle {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
text-decoration: none;
font-size: 1.2rem;
}
/* Efeito de hover */
.icon-circle:hover {
opacity: 0.8;
transition: opacity 0.3s ease;
}
.social-icons a {
text-decoration: none;
}