306 lines
10 KiB
HTML
306 lines
10 KiB
HTML
<!doctype html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>KSALDIS-DT — Curso de Entrenador Nacional de Vóley</title>
|
|
<meta name="description" content="Material de estudio offline del Curso de Entrenador Nacional de Vóley — 2 módulos, 11 secciones, 42 videos" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
body {
|
|
font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
|
|
background: #0a0e1a;
|
|
color: #e0e4ef;
|
|
min-height: 100vh;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* ── HERO ── */
|
|
.hero {
|
|
position: relative;
|
|
min-height: 80vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
padding: 3rem 2rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background:
|
|
radial-gradient(ellipse 80% 50% at 50% 0%, rgba(41, 128, 185, 0.25) 0%, transparent 60%),
|
|
radial-gradient(ellipse 60% 40% at 80% 100%, rgba(142, 68, 173, 0.15) 0%, transparent 50%),
|
|
radial-gradient(ellipse 50% 30% at 10% 60%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
}
|
|
|
|
.hero::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 600px;
|
|
height: 600px;
|
|
transform: translate(-50%, -50%);
|
|
background: radial-gradient(circle, rgba(41, 128, 185, 0.08) 0%, transparent 70%);
|
|
animation: pulse-glow 4s ease-in-out infinite;
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
}
|
|
|
|
@keyframes pulse-glow {
|
|
0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
|
|
50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
|
|
}
|
|
|
|
.hero-content {
|
|
position: relative;
|
|
z-index: 1;
|
|
max-width: 700px;
|
|
}
|
|
|
|
.hero-icon {
|
|
font-size: 5rem;
|
|
margin-bottom: 1.5rem;
|
|
filter: drop-shadow(0 0 30px rgba(41, 128, 185, 0.4));
|
|
animation: float 3s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes float {
|
|
0%, 100% { transform: translateY(0); }
|
|
50% { transform: translateY(-12px); }
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 2.8rem;
|
|
font-weight: 800;
|
|
letter-spacing: -1px;
|
|
background: linear-gradient(135deg, #ffffff 0%, #a8c8e8 50%, #7fb3d8 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
margin-bottom: 0.8rem;
|
|
line-height: 1.15;
|
|
}
|
|
|
|
.hero .subtitle {
|
|
font-size: 1.15rem;
|
|
font-weight: 300;
|
|
color: rgba(255, 255, 255, 0.6);
|
|
margin-bottom: 2rem;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
/* ── STATS ── */
|
|
.stats-row {
|
|
display: flex;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 2.5rem;
|
|
}
|
|
|
|
.stat-badge {
|
|
background: rgba(255, 255, 255, 0.06);
|
|
backdrop-filter: blur(12px);
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
padding: 0.6rem 1.4rem;
|
|
border-radius: 100px;
|
|
font-size: 0.88rem;
|
|
font-weight: 500;
|
|
color: rgba(255, 255, 255, 0.75);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.stat-badge:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-color: rgba(41, 128, 185, 0.3);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.stat-badge .num {
|
|
font-weight: 700;
|
|
color: #5dade2;
|
|
}
|
|
|
|
/* ── CARDS ── */
|
|
.cards-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
gap: 1.2rem;
|
|
max-width: 960px;
|
|
width: 100%;
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
.card {
|
|
position: relative;
|
|
background: rgba(255, 255, 255, 0.04);
|
|
backdrop-filter: blur(10px);
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
border-radius: 16px;
|
|
padding: 2rem 1.5rem;
|
|
text-decoration: none;
|
|
color: #e0e4ef;
|
|
transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
gap: 0.8rem;
|
|
}
|
|
|
|
.card::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
border-radius: 16px;
|
|
padding: 1px;
|
|
background: linear-gradient(135deg, rgba(41, 128, 185, 0.3), transparent 50%);
|
|
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
|
|
-webkit-mask-composite: xor;
|
|
mask-composite: exclude;
|
|
opacity: 0;
|
|
transition: opacity 0.35s;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-6px);
|
|
background: rgba(255, 255, 255, 0.08);
|
|
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(41, 128, 185, 0.1);
|
|
}
|
|
|
|
.card:hover::before { opacity: 1; }
|
|
|
|
.card.primary {
|
|
background: linear-gradient(135deg, rgba(231, 76, 60, 0.15), rgba(192, 57, 43, 0.08));
|
|
border-color: rgba(231, 76, 60, 0.2);
|
|
}
|
|
|
|
.card.primary::before {
|
|
background: linear-gradient(135deg, rgba(231, 76, 60, 0.5), transparent 50%);
|
|
}
|
|
|
|
.card.primary:hover {
|
|
background: linear-gradient(135deg, rgba(231, 76, 60, 0.25), rgba(192, 57, 43, 0.15));
|
|
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(231, 76, 60, 0.15);
|
|
}
|
|
|
|
.card-icon {
|
|
font-size: 2.2rem;
|
|
margin-bottom: 0.2rem;
|
|
}
|
|
|
|
.card-title {
|
|
font-size: 1.05rem;
|
|
font-weight: 600;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.card-desc {
|
|
font-size: 0.82rem;
|
|
color: rgba(255, 255, 255, 0.4);
|
|
font-weight: 400;
|
|
}
|
|
|
|
/* ── FOOTER ── */
|
|
.footer {
|
|
text-align: center;
|
|
padding: 3rem 2rem;
|
|
color: rgba(255, 255, 255, 0.25);
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.footer a {
|
|
color: rgba(255, 255, 255, 0.35);
|
|
text-decoration: none;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.footer a:hover {
|
|
color: rgba(255, 255, 255, 0.6);
|
|
border-bottom-color: rgba(41, 128, 185, 0.4);
|
|
}
|
|
|
|
.footer .separator {
|
|
margin: 0 0.5rem;
|
|
opacity: 0.3;
|
|
}
|
|
|
|
/* ── RESPONSIVE ── */
|
|
@media (max-width: 640px) {
|
|
.hero { min-height: 60vh; padding: 2rem 1rem; }
|
|
.hero h1 { font-size: 1.8rem; }
|
|
.hero .subtitle { font-size: 0.95rem; }
|
|
.hero-icon { font-size: 3.5rem; }
|
|
.cards-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
|
|
.card { padding: 1.4rem 1rem; }
|
|
.stat-badge { font-size: 0.8rem; padding: 0.5rem 1rem; }
|
|
}
|
|
|
|
@media (max-width: 380px) {
|
|
.cards-grid { grid-template-columns: 1fr; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<section class="hero" id="hero">
|
|
<div class="hero-content">
|
|
<div class="hero-icon">🏐</div>
|
|
<h1>Curso de Entrenador Nacional de Vóley</h1>
|
|
<p class="subtitle">Material de Estudio — Versión Offline</p>
|
|
|
|
<div class="stats-row">
|
|
<div class="stat-badge">📚 <span class="num">2</span> módulos</div>
|
|
<div class="stat-badge">📂 <span class="num">11</span> secciones</div>
|
|
<div class="stat-badge">🎥 <span class="num">42</span> videos</div>
|
|
</div>
|
|
|
|
<div class="cards-grid">
|
|
<a href="LIBRO_DE_ESTUDIO.html" class="card primary" id="link-libro">
|
|
<div class="card-icon">📖</div>
|
|
<div class="card-title">Libro de Estudio</div>
|
|
<div class="card-desc">Contenido completo navegable</div>
|
|
</a>
|
|
<a href="secciones/" class="card" id="link-secciones">
|
|
<div class="card-icon">📂</div>
|
|
<div class="card-title">Secciones</div>
|
|
<div class="card-desc">Explorar por módulo</div>
|
|
</a>
|
|
<a href="videos/" class="card" id="link-videos">
|
|
<div class="card-icon">🎥</div>
|
|
<div class="card-title">Videos</div>
|
|
<div class="card-desc">Referencias Vimeo</div>
|
|
</a>
|
|
<a href="screenshots/" class="card" id="link-screenshots">
|
|
<div class="card-icon">🖼️</div>
|
|
<div class="card-title">Capturas</div>
|
|
<div class="card-desc">Screenshots del campus</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<footer class="footer">
|
|
<p>KSALDIS-DT <span class="separator">·</span> Contenido extraído del campus Online Education Center</p>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|