-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
236 lines (203 loc) · 4.12 KB
/
styles.css
File metadata and controls
236 lines (203 loc) · 4.12 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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background-color: #f8f9fa;
color: #333;
line-height: 1.6;
}
header {
background-image: url('images/fundo.png');
background-size: cover;
background-position: center center;
text-align: center;
color: white;
padding: 80px 20px 300px;
position: relative;
}
.header-content {
background-color: rgba(0, 100, 0, 0.75);
padding: 40px;
border-radius: 20px;
max-width: 800px;
margin: auto;
}
header h1 {
font-size: 3rem;
margin-bottom: 10px;
animation: fadeInDown 1s ease-in-out;
}
header .subheading {
font-size: 1.3rem;
margin-bottom: 20px;
animation: fadeInUp 1.5s ease-in-out;
}
.saiba-mais {
font-size: 1rem;
padding: 12px 24px;
background-color: #de0202;
color: white;
text-decoration: none;
border-radius: 8px;
transition: 0.3s ease;
display: inline-block;
animation: fadeInUp 2s ease-in-out;
}
.saiba-mais:hover {
background-color: #138000;
}
.conexao {
padding: 80px 20px;
background-color: white;
text-align: center;
}
.conexao h2 {
font-size: 2.2rem;
color: #2d7a36;
margin-bottom: 20px;
}
.conexao p {
font-size: 1.2rem;
color: #555;
max-width: 900px;
margin: 0 auto;
}
.linha-do-tempo {
background-color: #f0f0f0;
padding: 80px 20px;
}
.linha-do-tempo h2 {
text-align: center;
color: #2d7a36;
font-size: 2rem;
margin-bottom: 50px;
}
.linha-do-tempo-item {
background: white;
margin: 30px auto;
max-width: 800px;
padding: 30px;
border-radius: 12px;
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.linha-do-tempo-item:hover {
transform: translateY(-8px);
}
.linha-do-tempo-conteudo {
text-align: center;
}
.linha-do-tempo-item i {
font-size: 2.5rem;
color: #2d7a36;
margin-bottom: 15px;
}
.linha-do-tempo-item h3 {
font-size: 1.5rem;
margin-bottom: 10px;
color: #333;
}
.linha-do-tempo-item p {
font-size: 1rem;
color: #666;
}
footer {
background-color: #2d2d2d;
color: white;
text-align: center;
padding: 20px 10px;
font-size: 0.9rem;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.tradicoes {
background-color: #fff;
padding: 80px 20px;
text-align: center;
overflow: hidden;
}
.tradicoes h2 {
font-size: 2.6rem;
color: #2d7a36;
margin-bottom: 50px;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
font-weight: 800;
letter-spacing: 1.2px;
opacity: 0;
transform: translateY(30px);
animation: fadeSlideUp 0.8s forwards ease-out;
}
.tradicao-card {
background: linear-gradient(135deg, #f9fdf9 0%, #e7f3e7 100%);
max-width: 700px;
margin: 30px auto;
padding: 30px 40px;
border-radius: 20px;
border-left: 8px solid #2d7a36;
box-shadow: 0 12px 20px rgba(45, 122, 54, 0.15);
cursor: pointer;
opacity: 100;
transform: translateY(40px);
transition: transform 0.4s ease, box-shadow 0.4s ease;
will-change: transform;
}
.tradicao-card:hover {
animation: bounce 0.5s ease forwards;
box-shadow: 0 24px 36px rgba(45, 122, 54, 0.3);
}
.tradicao-card i {
font-size: 3rem;
color: #4caf50;
margin-bottom: 20px;
animation: sway 4s ease-in-out infinite;
display: inline-block;
}
.tradicao-card h3 {
font-size: 1.8rem;
margin-bottom: 15px;
color: #1b3a18;
font-weight: 700;
}
.tradicao-card p {
font-size: 1.1rem;
color: #3a4d2f;
line-height: 1.7;
font-weight: 500;
}
@keyframes fadeSlideUp {
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes sway {
0%, 100% {
transform: rotate(0deg);
}
50% {
transform: rotate(4deg);
}
}
@keyframes bounce {
0%, 100% {
transform: translateY(0) scale(1);
}
50% {
transform: translateY(-20px) scale(1.03);
}
}