Skip to content

Commit 211e537

Browse files
committed
feat: New Pages
1 parent 8e6d419 commit 211e537

29 files changed

Lines changed: 3455 additions & 13 deletions

assets/css/financiacion.css

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/* Styles specific to the financiacion landing page */
2+
3+
.prob-gradient-text {
4+
background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #06b6d4 100%);
5+
-webkit-background-clip: text;
6+
-webkit-text-fill-color: transparent;
7+
background-clip: text;
8+
}
9+
10+
.animate-fade-in {
11+
animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
12+
opacity: 0;
13+
transform: translateY(20px);
14+
}
15+
16+
@keyframes fadeInUp {
17+
to { opacity: 1; transform: translateY(0); }
18+
}
19+
20+
.donut-chart {
21+
width: 200px;
22+
height: 200px;
23+
border-radius: 50%;
24+
background: conic-gradient(
25+
#2563eb 0% 74%,
26+
#0d9488 74% 93%,
27+
#f59e0b 93% 99%,
28+
#64748b 99% 100%
29+
);
30+
position: relative;
31+
display: flex;
32+
align-items: center;
33+
justify-content: center;
34+
}
35+
.donut-chart::after {
36+
content: "";
37+
position: absolute;
38+
width: 140px;
39+
height: 140px;
40+
border-radius: 50%;
41+
background: white;
42+
}
43+
44+
.logo-placeholder { filter: grayscale(100%); opacity: 0.7; transition: all 0.3s; }
45+
.logo-placeholder:hover { filter: grayscale(0%); opacity: 1; }
46+
47+
/* Small utilities specific to this page */
48+
.financiacion-table thead th { font-weight: 700; }
49+
.financiacion-cta { display:inline-block }
50+
51+
/* Keep the file concise – global utilities are in Tailwind */

assets/css/grupos.css

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/* Styles for grupos / cehiuma pages */
2+
3+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
4+
5+
body { font-family: 'Inter', sans-serif; }
6+
7+
.prob-gradient-text { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #06b6d4 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
8+
9+
.animate-fade-in { animation: fadeInUp 0.8s cubic-bezier(0.16,1,0.3,1) forwards; opacity: 0; transform: translateY(20px); }
10+
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
11+
.delay-100 { animation-delay: 0.1s; }
12+
.delay-200 { animation-delay: 0.2s; }
13+
.delay-300 { animation-delay: 0.3s; }
14+
15+
.profile-card { transition: all 0.3s ease; }
16+
.profile-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
17+
18+
/* Utility for badges */
19+
.badge { display: inline-block; padding: 0.25rem 0.5rem; border-radius: 9999px; font-weight: 700; font-size: 0.75rem; }
20+
21+
/* Responsive grid tweaks (could also be tailwind) */
22+
.roles-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
23+
24+
/* Keep additional specifics here as needed */

0 commit comments

Comments
 (0)