-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.css
More file actions
55 lines (49 loc) · 1.09 KB
/
Copy pathlayout.css
File metadata and controls
55 lines (49 loc) · 1.09 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
/* ===== SECCIONES GENERALES ===== */
.section {
padding: 100px 0;
}
.section-header {
text-align: center;
max-width: 600px;
margin: 0 auto 64px;
}
.section-header-left {
text-align: left;
margin: 0 0 0 0;
}
.section-tag {
display: inline-block;
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--accent-light);
font-weight: 600;
margin-bottom: 16px;
padding: 6px 14px;
background: var(--accent-soft);
border-radius: 100px;
border: 1px solid var(--accent-medium);
}
.section-title {
font-size: clamp(2rem, 4vw, 2.8rem);
font-weight: 800;
margin-bottom: 16px;
letter-spacing: -0.02em;
background: linear-gradient(135deg, #d4c4f7 0%, #b794f4 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.section-description {
color: var(--text-secondary);
font-size: 1.05rem;
line-height: 1.7;
}
@media (max-width: 768px) {
.section {
padding: 64px 0;
}
.section-header {
margin-bottom: 40px;
}
}