-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
183 lines (155 loc) · 3.22 KB
/
Copy pathstyles.css
File metadata and controls
183 lines (155 loc) · 3.22 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
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: linear-gradient(180deg, #FBF5FB 0%, #F1E2F5 45%, #EAD3DF 100%);
color: #352836;
line-height: 1.6;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
.contenedor {
width: min(1100px, calc(100% - 32px));
margin: 0 auto;
}
.encabezado {
padding: 48px 0 24px;
background: linear-gradient(135deg, #9C5AA8 0%, #C46B8D 50%, #DF8D7D 100%);
color: #FFFFFF;
box-shadow: 0 12px 30px #682A4D2E;
}
.encabezado h1,
.seccion h2 {
margin: 0;
}
.etiqueta {
margin: 0 0 8px;
text-transform: uppercase;
letter-spacing: 0.18em;
font-size: 13px;
opacity: 0.9;
}
.descripcion {
max-width: 70ch;
margin: 12px 0 0;
}
.navegacion {
position: sticky;
top: 0;
z-index: 20;
background: #FFF8FCE6;
backdrop-filter: blur(10px);
border-bottom: 1px solid #7A456624;
}
.navegacion ul {
list-style: none;
margin: 0;
padding: 14px 0;
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.navegacion a {
display: inline-block;
padding: 10px 15px;
border-radius: 999px;
text-decoration: none;
color: #6F355F;
background: #FFFFFF;
border: 1px solid #7A456624;
transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.navegacion a:hover {
transform: translateY(-2px);
box-shadow: 0 8px 18px #6F355F29;
background: #F7EDF6;
}
.seccion {
margin: 24px 0;
padding: 24px;
background: #FFFFFFC7;
border: 1px solid #7A45661F;
border-radius: 22px;
box-shadow: 0 10px 28px #592A4114;
}
.seccion h2 {
color: #7A3F67;
margin-bottom: 16px;
}
.seccion h3,
.seccion h4 {
color: #8B4A6F;
}
.rejilla {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 16px;
align-items: stretch;
}
.tarjeta {
padding: 19px;
border-radius: 18px;
background: linear-gradient(180deg, #FFFFFF 0%, #FDF4F8 100%);
border: 1px solid #8C547629;
box-shadow: 0 10px 20px #5F2C4714;
}
.tarjeta h3 {
margin-top: 0;
}
.seccion-contacto {
background: linear-gradient(135deg, #9C5AA826, #DF8D7D33);
border: 1px solid #9C5AA833;
}
.formulario-contacto {
display: grid;
gap: 13px;
max-width: 520px;
padding: 19px;
border-radius: 18px;
background: #FFFFFFB8;
border: 1px solid #7A45661F;
}
.formulario-contacto label {
font-weight: bold;
color: #7A3F67;
}
.formulario-contacto input {
width: 100%;
padding: 14px 16px;
border-radius: 12px;
border: 1px solid #7A456638;
background: #FFFFFF;
font: inherit;
}
.formulario-contacto input:focus {
outline: 2px solid #9C5AA859;
border-color: #9C5AA8;
}
.formulario-contacto input[type="submit"] {
width: fit-content;
padding: 14px 22px;
border: 0;
cursor: pointer;
background: linear-gradient(135deg, #8B4A9A, #C46B8D);
color: #FFFFFF;
box-shadow: 0 10px 18px #8B4A9A40;
}
ul {
padding-left: 19px;
}
@media (max-width: 720px) {
.encabezado {
padding-top: 32px;
}
.seccion {
padding: 18px;
border-radius: 18px;
}
.navegacion ul {
justify-content: center;
}
}