-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsaiba.css
More file actions
146 lines (122 loc) · 2.15 KB
/
Copy pathsaiba.css
File metadata and controls
146 lines (122 loc) · 2.15 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
/* Estilos Globais */
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
}
header {
background-color: #2a6b2f;
color: white;
text-align: center;
padding: 20px 20px;
}
header h1 {
font-size: 2.5em;
margin: 0;
}
/* Estilo das Seções */
.section {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 50px;
margin: 0 auto;
max-width: 1200px;
}
.section.bg-light {
background-color: #ffffff;
}
.content {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 100%;
}
.text {
flex: 1;
padding: 20px;
}
.text h2 {
color: #2a6b2f;
font-size: 2em;
margin-bottom: 20px;
}
.text p {
font-size: 1.2em;
line-height: 1.6;
}
.image {
flex: 1;
padding: 20px;
text-align: center;
}
.image img {
max-width: 90%;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
/* Estilo da Equipe */
.equipe-membros {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin: 30px auto;
max-width: 1000px;
}
.membro {
text-align: center;
width: 200px;
margin: 20px;
}
.membro img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.membro h3 {
font-size: 1.4em;
margin: 10px 0;
}
/* Estilizar o Rodapé */
footer{
background: #161616;
padding: 20px 23px;
color: #fff;
text-align: center;
}
footer span{
color: #00804b;
font-weight: 600;
}
footer span:hover{
text-decoration: underline;
}
/* Responsividade */
@media (max-width: 768px) {
.section {
flex-direction: column;
padding: 30px;
}
.content {
flex-direction: column;
}
.equipe-membros {
justify-content: center;
}
.membro {
width: 100%;
}
.membro img {
width: 120px;
height: 120px;
}
}
.equipe-img {
transition: transform 0.3s ease, opacity 0.3s ease; /* Transição suave */
}