-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgroup.css
More file actions
252 lines (222 loc) · 8.66 KB
/
group.css
File metadata and controls
252 lines (222 loc) · 8.66 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
/* =========================
Jaisson Group — Landing
Paleta: Preto + Dourado
Tipografia: Inter
========================= */
:root{
--gold: #D4AF37; /* ouro */
--gold-2: #F2CF63; /* brilho */
--ink: #0b0b0e; /* quase preto */
--ink-2: #9aa0aa; /* cinza suave */
--bg: #0f1115; /* fundo geral */
--card: #12151c; /* cards */
--border: rgba(255,255,255,.08);
--radius: 18px;
--shadow: 0 20px 60px rgba(0,0,0,.35);
}
/* ====== FIX: tirar underline colorido dentro do card link ====== */
a.unit-card,
a.unit-card:link,
a.unit-card:visited,
a.unit-card:hover,
a.unit-card:focus {
text-decoration: none !important;
color: inherit;
}
/* (extra segurança, remove de qualquer filho) */
a.unit-card * { text-decoration: none !important; }
/* ====== Logos um pouco maiores (sem mexer no layout) ====== */
.unit-logo img{
width: 92%;
height: 92%;
object-fit: contain;
}
/* Se ainda quiser maior, troque 92% por 96%.
Se preferir ampliar o “quadradinho” também:
.unit-logo { width: 96px; border-radius: 16px; }
*/
*{box-sizing:border-box}
html,body{height:100%}
body{
margin:0;
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
background: radial-gradient(1000px 500px at -10% -10%, rgba(212,175,55,.10), transparent 60%),
radial-gradient(1000px 500px at 110% -10%, rgba(242,207,99,.08), transparent 60%),
var(--bg);
color:#e8eaee;
line-height:1.6;
}
/* Containers */
.container{ width:min(1120px, 92vw); margin-inline:auto }
/* Header */
.site-header{
position: sticky; top:0; z-index:1000;
background: rgba(18,21,28,.85);
border-bottom: 1px solid var(--border);
backdrop-filter: blur(6px);
}
.header-inner{
display:flex; align-items:center; justify-content:space-between; padding:14px 0;
}
.brand img{ display:block; height:38px; object-fit:contain }
.nav-toggle{ display:none }
.hamburger{ display:none; cursor:pointer; padding:6px 8px; border-radius:10px }
.hamburger span{ display:block; width:26px; height:2px; background:#e8eaee; margin:6px 0; transition:.25s ease }
.main-nav ul{ display:flex; gap:8px; list-style:none; margin:0; padding:0; align-items:center }
.main-nav li.sep{ width:18px }
.main-nav a{
text-decoration:none; font-weight:700; color:#d9dee7;
padding:10px 12px; border-radius:12px; transition:.2s ease; border:1px solid transparent;
}
.main-nav a:hover{ color:#fff; border-color: var(--border); background: #151925 }
.github-link{ display:inline-flex; align-items:center; gap:6px }
/* Hero */
.hero{ position:relative; isolation:isolate; padding:96px 0 80px; overflow:hidden }
.hero-bg{
position:absolute; inset:0; z-index:-2;
background:
linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.25) 50%, rgba(15,17,21,1) 85%),
var(--ph) center/cover no-repeat;
filter: saturate(1.02);
}
.hero-content{ max-width:820px }
.pill{
display:inline-block; background: linear-gradient(90deg, var(--gold), var(--gold-2));
color:#161616; font-weight:900; padding:6px 12px; border-radius:999px; letter-spacing:.2px;
box-shadow: 0 8px 24px rgba(212,175,55,.25);
}
.hero h1{
margin:14px 0 8px; font-size: clamp(34px, 6vw, 72px);
line-height:1.02; color:#fff; letter-spacing:-.5px;
}
.hero p{ margin:0 0 12px; color:#c5cad3; max-width:62ch }
.hero-ctas{ display:flex; gap:12px; margin-top:18px }
.btn{
display:inline-flex; align-items:center; justify-content:center; gap:8px;
text-decoration:none; border-radius:12px; padding:12px 16px; font-weight:800;
border:2px solid transparent; transition: transform .05s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active{ transform: translateY(1px) }
.btn-fill{
background: linear-gradient(90deg, var(--gold), var(--gold-2));
color:#171717;
}
.btn-fill:hover{ filter: brightness(1.05) }
.btn-outline{
border-color: var(--gold); color:#fff;
}
.btn-outline:hover{ background: #1b1f2a }
/* Units */
.units{ padding: 48px 0 64px }
.section-head h2{ margin:0 0 6px; font-size: clamp(24px, 4vw, 36px); color:#fff }
.section-head p{ margin:0 0 18px; color:#b7bdc8 }
.units-grid{
display:grid; gap:18px;
grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px){ .units-grid{ grid-template-columns: 1fr } }
.unit-card{
position:relative; display:flex; flex-direction:column; overflow:hidden;
background: var(--card); border:1px solid var(--border); border-radius: var(--radius);
box-shadow: var(--shadow);
transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.unit-card.clickable:hover{ transform: translateY(-4px); border-color: rgba(212,175,55,.45); box-shadow: 0 24px 70px rgba(212,175,55,.12) }
.unit-card.disabled{ opacity:.75 }
.unit-media{
width:100%; aspect-ratio: 16/8; background: linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.45)), var(--bg) center/cover no-repeat;
}
.unit-body{ padding:16px 18px 20px }
.unit-body h3{ margin:8px 0 4px; font-size:22px; color:#fff }
.unit-body p{ margin:0 0 10px; color:#c0c6d1 }
.unit-logo{
width:84px; aspect-ratio: 1/1; border-radius:14px; background:#0e1117; border:1px solid var(--border);
display:grid; place-items:center; overflow:hidden; box-shadow: inset 0 0 0 2px rgba(255,255,255,.02);
}
.unit-logo img{ width:76%; height:76%; object-fit:contain; display:block }
.chip{
display:inline-block; font-weight:900; font-size:12px; letter-spacing:.3px;
padding:6px 10px; border-radius:999px; border:1px solid var(--border);
background:#0f131c; color:#dfe4ee;
}
.chip.go{ border-color: rgba(212,175,55,.55); color:#111; background: linear-gradient(90deg, var(--gold), var(--gold-2)) }
.chip.soon{ color:#c9ced8; border-style:dashed }
/* About */
.about{ padding: 56px 0 72px }
.about-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap:24px; align-items:center }
@media (max-width: 980px){ .about-grid{ grid-template-columns: 1fr } }
.about-text h2{ margin:0 0 8px; font-size: clamp(22px, 3.6vw, 32px); color:#fff }
.about-text p{ margin:0 0 8px; color:#c0c6d1 }
.bullets{ margin: 6px 0 0 18px }
.bullets li{ margin: 6px 0 }
.about-media .img-ph{
display:block; width:90%; aspect-ratio: 16/10; border-radius:20px; box-shadow: var(--shadow);
background: linear-gradient(to bottom, rgba(0,0,0,.001), rgba(0,0,0,.08)), var(--ph) center/cover no-repeat;
}
/* Footer */
.site-footer{
border-top: 1px solid var(--border); background: #11151d; margin-top: 8px;
}
.footer-grid{
display:grid; grid-template-columns: 1.1fr 1fr 1fr; gap:16px; padding:22px 0; align-items:center;
}
.f-col .f-copy{ color:#a8b0bd; margin:8px 0 0 }
.f-small{ color:#8f97a4; margin:0 }
.f-nav{ display:flex; gap:12px; flex-wrap:wrap; justify-content:center }
.f-nav a{ color:#cbd2df; text-decoration:none; padding:8px 10px; border-radius:10px; border:1px solid transparent }
.f-nav a:hover{ border-color: var(--border); background:#121722 }
/* Mobile nav */
@media (max-width: 820px){
.main-nav{
position: fixed; top:64px; right:0; left:0; background:#12151c; border-top:1px solid var(--border);
transform: translateY(-8px); opacity:0; pointer-events:none; transition:.2s ease;
}
.main-nav ul{ flex-direction:column; padding:10px; gap:6px }
.hamburger{ display:block }
.nav-toggle:checked ~ .hamburger span:nth-child(1){ transform: translateY(8px) rotate(45deg) }
.nav-toggle:checked ~ .hamburger span:nth-child(2){ opacity:0 }
.nav-toggle:checked ~ .hamburger span:nth-child(3){ transform: translateY(-8px) rotate(-45deg) }
.nav-toggle:checked ~ .main-nav{ transform:none; opacity:1; pointer-events:auto }
}
/* ===== Nossos Valores (galeria 2x5) ===== */
.values { padding: 24px 0 64px; }
.values .section-head p { margin-bottom: 16px; color:#b7bdc8; }
.values-grid{
display:grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
}
@media (max-width: 700px){
.values-grid{ grid-template-columns: 1fr; }
}
.value-card{
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow);
}
.value-card img{
display:block;
width:100%;
aspect-ratio: 16/10; /* mantém padrão */
object-fit: cover;
filter: saturate(1.05);
}
.value-card figcaption{
padding: 10px 12px 12px;
font-size: 14px;
color:#d9dee7;
border-top: 1px solid var(--border);
}
/* Logo maior sem mudar a altura do header */
.brand { display:inline-block; line-height:0 }
.brand img{
height: 38px; /* mantém a altura “oficial” do layout */
transform: scale(1.45); /* ↑ ajuste aqui se quiser mais/menos */
transform-origin: left center;/* cresce para a direita, sem “empurrar” nada */
}
/* opcional: um pouco menor no mobile, se quiser */
@media (max-width: 820px){
.brand img{ transform: scale(1.25); }
}