2026-03-22 22:36:00 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="es">
|
|
|
|
|
<head>
|
2026-03-25 10:32:30 +00:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>Código 0 — Protocolos TES</title>
|
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Barlow+Condensed:wght@400;600;700;800;900&display=swap" rel="stylesheet">
|
|
|
|
|
<style>
|
|
|
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
|
|
|
|
|
|
|
|
:root {
|
|
|
|
|
--orange: #FF4500;
|
|
|
|
|
--orange-dim: #CC3700;
|
|
|
|
|
--orange-pale: #FF6633;
|
|
|
|
|
--black: #0A0A0A;
|
|
|
|
|
--surface: #111111;
|
|
|
|
|
--surface2: #1A1A1A;
|
|
|
|
|
--border: #2A2A2A;
|
|
|
|
|
--border-hot: #FF4500;
|
|
|
|
|
--text: #F0EDE8;
|
|
|
|
|
--text-dim: #888880;
|
|
|
|
|
--mono: 'Space Mono', monospace;
|
|
|
|
|
--display: 'Barlow Condensed', sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html { scroll-behavior: smooth; }
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
background: var(--black);
|
|
|
|
|
color: var(--text);
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* SCAN LINES OVERLAY */
|
|
|
|
|
body::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: fixed;
|
|
|
|
|
inset: 0;
|
|
|
|
|
background: repeating-linear-gradient(
|
|
|
|
|
0deg,
|
|
|
|
|
transparent,
|
|
|
|
|
transparent 2px,
|
|
|
|
|
rgba(0,0,0,0.08) 2px,
|
|
|
|
|
rgba(0,0,0,0.08) 4px
|
|
|
|
|
);
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
z-index: 999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* NAV */
|
|
|
|
|
nav {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0; left: 0; right: 0;
|
|
|
|
|
z-index: 100;
|
|
|
|
|
background: rgba(10,10,10,0.95);
|
|
|
|
|
border-bottom: 1px solid var(--border);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 0 2rem;
|
|
|
|
|
height: 52px;
|
|
|
|
|
backdrop-filter: blur(8px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-logo {
|
|
|
|
|
font-family: var(--display);
|
|
|
|
|
font-weight: 900;
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
letter-spacing: -0.5px;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
.nav-logo span { color: var(--orange); }
|
|
|
|
|
|
|
|
|
|
.nav-links {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 2rem;
|
|
|
|
|
list-style: none;
|
|
|
|
|
}
|
|
|
|
|
.nav-links a {
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
color: var(--text-dim);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.1em;
|
|
|
|
|
transition: color 0.15s;
|
|
|
|
|
}
|
|
|
|
|
.nav-links a:hover { color: var(--orange); }
|
|
|
|
|
|
|
|
|
|
.nav-cta {
|
|
|
|
|
background: var(--orange);
|
|
|
|
|
color: var(--black) !important;
|
|
|
|
|
padding: 6px 16px;
|
|
|
|
|
font-weight: 700 !important;
|
|
|
|
|
}
|
|
|
|
|
.nav-cta:hover { background: var(--orange-pale) !important; color: var(--black) !important; }
|
|
|
|
|
|
|
|
|
|
/* HERO */
|
|
|
|
|
.hero {
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding: 6rem 2rem 4rem;
|
|
|
|
|
max-width: 1100px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hero-badge {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
color: var(--orange);
|
|
|
|
|
border: 1px solid var(--orange);
|
|
|
|
|
padding: 4px 12px;
|
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
letter-spacing: 0.15em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
width: fit-content;
|
|
|
|
|
}
|
|
|
|
|
.hero-badge::before {
|
|
|
|
|
content: '';
|
|
|
|
|
width: 6px; height: 6px;
|
|
|
|
|
background: var(--orange);
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
animation: pulse 1.5s ease-in-out infinite;
|
|
|
|
|
}
|
|
|
|
|
@keyframes pulse {
|
|
|
|
|
0%, 100% { opacity: 1; transform: scale(1); }
|
|
|
|
|
50% { opacity: 0.4; transform: scale(0.7); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hero h1 {
|
|
|
|
|
font-family: var(--display);
|
|
|
|
|
font-size: clamp(64px, 12vw, 140px);
|
|
|
|
|
font-weight: 900;
|
|
|
|
|
line-height: 0.9;
|
|
|
|
|
letter-spacing: -2px;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
.hero h1 .accent { color: var(--orange); }
|
|
|
|
|
|
|
|
|
|
.hero-sub {
|
|
|
|
|
font-family: var(--display);
|
|
|
|
|
font-size: clamp(20px, 3vw, 32px);
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: var(--text-dim);
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.05em;
|
|
|
|
|
margin-bottom: 2.5rem;
|
|
|
|
|
max-width: 700px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hero-desc {
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: var(--text-dim);
|
|
|
|
|
max-width: 560px;
|
|
|
|
|
line-height: 1.8;
|
|
|
|
|
margin-bottom: 3rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hero-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 4rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-primary {
|
|
|
|
|
background: var(--orange);
|
|
|
|
|
color: var(--black);
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.1em;
|
|
|
|
|
padding: 14px 28px;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
border: 2px solid var(--orange);
|
|
|
|
|
transition: all 0.15s;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
.btn-primary:hover {
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: var(--orange);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-secondary {
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: var(--text-dim);
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.1em;
|
|
|
|
|
padding: 14px 28px;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
|
transition: all 0.15s;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
.btn-secondary:hover {
|
|
|
|
|
border-color: var(--text-dim);
|
|
|
|
|
color: var(--text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* QUICK INSTALL */
|
|
|
|
|
.install-block {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
background: var(--surface);
|
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
|
border-left: 3px solid var(--orange);
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
width: fit-content;
|
|
|
|
|
}
|
|
|
|
|
.install-label {
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
color: var(--orange);
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.15em;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
.install-cmd {
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
}
|
|
|
|
|
.install-cmd .cmd-dim { color: var(--text-dim); }
|
|
|
|
|
|
|
|
|
|
/* TICKER */
|
|
|
|
|
.ticker-wrap {
|
|
|
|
|
width: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
background: var(--orange);
|
|
|
|
|
padding: 10px 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
.ticker {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0;
|
|
|
|
|
animation: ticker 30s linear infinite;
|
|
|
|
|
width: max-content;
|
|
|
|
|
}
|
|
|
|
|
.ticker-item {
|
|
|
|
|
font-family: var(--display);
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: var(--black);
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.15em;
|
|
|
|
|
padding: 0 3rem;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
.ticker-item::after {
|
|
|
|
|
content: '//';
|
|
|
|
|
margin-left: 3rem;
|
|
|
|
|
opacity: 0.4;
|
|
|
|
|
}
|
|
|
|
|
@keyframes ticker {
|
|
|
|
|
from { transform: translateX(0); }
|
|
|
|
|
to { transform: translateX(-50%); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* FEATURES */
|
|
|
|
|
.section {
|
|
|
|
|
max-width: 1100px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 6rem 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section-label {
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
color: var(--orange);
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.2em;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
.section-label::before {
|
|
|
|
|
content: '';
|
|
|
|
|
display: block;
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 1px;
|
|
|
|
|
background: var(--orange);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section-title {
|
|
|
|
|
font-family: var(--display);
|
|
|
|
|
font-size: clamp(36px, 5vw, 56px);
|
|
|
|
|
font-weight: 900;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: -1px;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
line-height: 1;
|
|
|
|
|
margin-bottom: 3rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.features-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
|
|
|
|
gap: 1px;
|
|
|
|
|
background: var(--border);
|
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
|
margin-top: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feature-card {
|
|
|
|
|
background: var(--surface);
|
|
|
|
|
padding: 2rem;
|
|
|
|
|
position: relative;
|
|
|
|
|
transition: background 0.15s;
|
|
|
|
|
}
|
|
|
|
|
.feature-card:hover { background: var(--surface2); }
|
|
|
|
|
.feature-card:hover .feature-icon { color: var(--orange); }
|
|
|
|
|
|
|
|
|
|
.feature-icon {
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
display: block;
|
|
|
|
|
transition: color 0.15s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feature-title {
|
|
|
|
|
font-family: var(--display);
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
letter-spacing: 0.05em;
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feature-desc {
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: var(--text-dim);
|
|
|
|
|
line-height: 1.7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* PROTOCOLS PREVIEW */
|
|
|
|
|
.protocols-section {
|
|
|
|
|
background: var(--surface);
|
|
|
|
|
border-top: 1px solid var(--border);
|
|
|
|
|
border-bottom: 1px solid var(--border);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.protocols-inner {
|
|
|
|
|
max-width: 1100px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 5rem 2rem;
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
gap: 4rem;
|
|
|
|
|
align-items: start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.protocol-list {
|
|
|
|
|
list-style: none;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 1px;
|
|
|
|
|
background: var(--border);
|
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.protocol-item {
|
|
|
|
|
background: var(--surface2);
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: background 0.1s;
|
|
|
|
|
}
|
|
|
|
|
.protocol-item:hover { background: #222; }
|
|
|
|
|
.protocol-item:hover .protocol-tag { color: var(--orange); border-color: var(--orange); }
|
|
|
|
|
|
|
|
|
|
.protocol-name {
|
|
|
|
|
font-family: var(--display);
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.05em;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.protocol-cat {
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
color: var(--text-dim);
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.protocol-tag {
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
color: var(--text-dim);
|
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
|
padding: 2px 8px;
|
|
|
|
|
letter-spacing: 0.1em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
transition: all 0.1s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* CODE BLOCK */
|
|
|
|
|
.code-preview {
|
|
|
|
|
background: #0D0D0D;
|
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
|
border-top: 2px solid var(--orange);
|
|
|
|
|
padding: 0;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.code-header {
|
|
|
|
|
background: var(--surface2);
|
|
|
|
|
padding: 8px 16px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
border-bottom: 1px solid var(--border);
|
|
|
|
|
}
|
|
|
|
|
.code-dots { display: flex; gap: 6px; }
|
|
|
|
|
.code-dot {
|
|
|
|
|
width: 10px; height: 10px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
.code-dot.r { background: #FF5F57; }
|
|
|
|
|
.code-dot.y { background: #FFBD2E; }
|
|
|
|
|
.code-dot.g { background: #28C840; }
|
|
|
|
|
.code-filename { font-size: 11px; color: var(--text-dim); }
|
|
|
|
|
|
|
|
|
|
.code-body {
|
|
|
|
|
padding: 1.5rem;
|
|
|
|
|
line-height: 1.8;
|
|
|
|
|
}
|
|
|
|
|
.code-key { color: #FF7B72; }
|
|
|
|
|
.code-val { color: #A5D6FF; }
|
|
|
|
|
.code-str { color: #79C0FF; }
|
|
|
|
|
.code-num { color: #F8C8A0; }
|
|
|
|
|
.code-comment { color: #555; font-style: italic; }
|
|
|
|
|
.code-orange { color: var(--orange); }
|
|
|
|
|
|
|
|
|
|
/* STATS */
|
|
|
|
|
.stats-bar {
|
|
|
|
|
max-width: 1100px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 4rem 2rem;
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(4, 1fr);
|
|
|
|
|
gap: 1px;
|
|
|
|
|
background: var(--border);
|
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.stat-item {
|
|
|
|
|
background: var(--black);
|
|
|
|
|
padding: 2rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.stat-number {
|
|
|
|
|
font-family: var(--display);
|
|
|
|
|
font-size: 52px;
|
|
|
|
|
font-weight: 900;
|
|
|
|
|
color: var(--orange);
|
|
|
|
|
line-height: 1;
|
|
|
|
|
letter-spacing: -2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.stat-label {
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
color: var(--text-dim);
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.15em;
|
|
|
|
|
margin-top: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* SLOGAN */
|
|
|
|
|
.slogan-section {
|
|
|
|
|
max-width: 1100px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 8rem 2rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slogan {
|
|
|
|
|
font-family: var(--display);
|
|
|
|
|
font-size: clamp(32px, 6vw, 72px);
|
|
|
|
|
font-weight: 900;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: -1px;
|
|
|
|
|
line-height: 1.1;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
}
|
|
|
|
|
.slogan .accent { color: var(--orange); }
|
|
|
|
|
|
|
|
|
|
/* FOOTER */
|
|
|
|
|
footer {
|
|
|
|
|
border-top: 1px solid var(--border);
|
|
|
|
|
padding: 2rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
max-width: 1100px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
.footer-logo {
|
|
|
|
|
font-family: var(--display);
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
font-weight: 900;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
}
|
|
|
|
|
.footer-logo span { color: var(--orange); }
|
|
|
|
|
.footer-links {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 1.5rem;
|
|
|
|
|
list-style: none;
|
|
|
|
|
}
|
|
|
|
|
.footer-links a {
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
color: var(--text-dim);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.1em;
|
|
|
|
|
}
|
|
|
|
|
.footer-links a:hover { color: var(--text); }
|
|
|
|
|
.footer-credit {
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
color: var(--text-dim);
|
|
|
|
|
}
|
|
|
|
|
.footer-credit span { color: var(--orange); }
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
nav { padding: 0 1rem; }
|
|
|
|
|
.nav-links { display: none; }
|
|
|
|
|
.hero { padding: 5rem 1rem 3rem; }
|
|
|
|
|
.protocols-inner { grid-template-columns: 1fr; gap: 2rem; }
|
|
|
|
|
.stats-bar { grid-template-columns: repeat(2, 1fr); }
|
|
|
|
|
footer { flex-direction: column; gap: 1.5rem; text-align: center; }
|
|
|
|
|
.footer-links { justify-content: center; }
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2026-03-22 22:36:00 +00:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
|
2026-03-25 10:32:30 +00:00
|
|
|
<!-- NAV -->
|
|
|
|
|
<nav>
|
|
|
|
|
<a href="#" class="nav-logo">Código<span>0</span></a>
|
|
|
|
|
<ul class="nav-links">
|
|
|
|
|
<li><a href="#protocolos">Protocolos</a></li>
|
|
|
|
|
<li><a href="#features">Características</a></li>
|
|
|
|
|
<li><a href="https://github.com/planetazuzu/codigo0">GitHub</a></li>
|
|
|
|
|
<li><a href="http://207.180.226.141:9112" class="nav-cta">Abrir App →</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
<!-- HERO -->
|
|
|
|
|
<section class="hero">
|
|
|
|
|
<div class="hero-badge">v0.1 · En desarrollo activo</div>
|
|
|
|
|
|
|
|
|
|
<h1>
|
|
|
|
|
<span class="accent">Código</span><br>
|
|
|
|
|
Cero.
|
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
|
|
<p class="hero-sub">Protocolos TES. Sin papel. Sin esperas. Sin excusas.</p>
|
|
|
|
|
|
|
|
|
|
<p class="hero-desc">
|
|
|
|
|
Guía digital de protocolos para Técnicos de Emergencias Sanitarias.
|
|
|
|
|
Gratuita, offline-first, construida por profesionales del SAMU.
|
|
|
|
|
Consulta lo que necesitas en los segundos que importan.
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<div class="hero-actions">
|
|
|
|
|
<a href="http://207.180.226.141:9112" class="btn-primary">Abrir app →</a>
|
|
|
|
|
<a href="https://github.com/planetazuzu/codigo0" class="btn-secondary">Ver en GitHub</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="install-block">
|
|
|
|
|
<span class="install-label">Quick start</span>
|
|
|
|
|
<span class="install-cmd">
|
|
|
|
|
<span class="cmd-dim">$</span> git clone github.com/planetazuzu/codigo0 && npm i && npm run dev
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<!-- TICKER -->
|
|
|
|
|
<div class="ticker-wrap">
|
|
|
|
|
<div class="ticker">
|
|
|
|
|
<span class="ticker-item">SVB Adulto</span>
|
|
|
|
|
<span class="ticker-item">SCACEST</span>
|
|
|
|
|
<span class="ticker-item">TCE Grave</span>
|
|
|
|
|
<span class="ticker-item">Shock Anafiláctico</span>
|
|
|
|
|
<span class="ticker-item">Politraumatismo</span>
|
|
|
|
|
<span class="ticker-item">ACVA</span>
|
|
|
|
|
<span class="ticker-item">Crisis Convulsiva</span>
|
|
|
|
|
<span class="ticker-item">Intoxicación</span>
|
|
|
|
|
<span class="ticker-item">Disnea Aguda</span>
|
|
|
|
|
<span class="ticker-item">Parto Inminente</span>
|
|
|
|
|
<span class="ticker-item">SVB Pediátrico</span>
|
|
|
|
|
<span class="ticker-item">Quemaduras</span>
|
|
|
|
|
<!-- repeat for seamless loop -->
|
|
|
|
|
<span class="ticker-item">SVB Adulto</span>
|
|
|
|
|
<span class="ticker-item">SCACEST</span>
|
|
|
|
|
<span class="ticker-item">TCE Grave</span>
|
|
|
|
|
<span class="ticker-item">Shock Anafiláctico</span>
|
|
|
|
|
<span class="ticker-item">Politraumatismo</span>
|
|
|
|
|
<span class="ticker-item">ACVA</span>
|
|
|
|
|
<span class="ticker-item">Crisis Convulsiva</span>
|
|
|
|
|
<span class="ticker-item">Intoxicación</span>
|
|
|
|
|
<span class="ticker-item">Disnea Aguda</span>
|
|
|
|
|
<span class="ticker-item">Parto Inminente</span>
|
|
|
|
|
<span class="ticker-item">SVB Pediátrico</span>
|
|
|
|
|
<span class="ticker-item">Quemaduras</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- STATS -->
|
|
|
|
|
<div style="max-width:1100px;margin:4rem auto;padding:0 2rem;">
|
|
|
|
|
<div class="stats-bar">
|
|
|
|
|
<div class="stat-item">
|
|
|
|
|
<div class="stat-number">+40</div>
|
|
|
|
|
<div class="stat-label">Protocolos activos</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="stat-item">
|
|
|
|
|
<div class="stat-number">0€</div>
|
|
|
|
|
<div class="stat-label">Coste para el TES</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="stat-item">
|
|
|
|
|
<div class="stat-number">100%</div>
|
|
|
|
|
<div class="stat-label">Offline capable</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="stat-item">
|
|
|
|
|
<div class="stat-number">25+</div>
|
|
|
|
|
<div class="stat-label">Años en campo</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- FEATURES -->
|
|
|
|
|
<section class="section" id="features">
|
|
|
|
|
<div class="section-label">Características</div>
|
|
|
|
|
<h2 class="section-title">Por qué Código 0</h2>
|
|
|
|
|
|
|
|
|
|
<div class="features-grid">
|
|
|
|
|
<div class="feature-card">
|
|
|
|
|
<span class="feature-icon">⚡</span>
|
|
|
|
|
<div class="feature-title">Consulta en segundos</div>
|
|
|
|
|
<p class="feature-desc">Protocolos indexados y buscables. No PDFs de 200 páginas. No PDFs que tardan en abrir.</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="feature-card">
|
|
|
|
|
<span class="feature-icon">🔌</span>
|
|
|
|
|
<div class="feature-title">Offline-first</div>
|
|
|
|
|
<p class="feature-desc">Funciona sin conexión una vez cargado. En campo, en el monte, en la UVI móvil. Sin excusas.</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="feature-card">
|
|
|
|
|
<span class="feature-icon">📋</span>
|
|
|
|
|
<div class="feature-title">YAML-driven</div>
|
|
|
|
|
<p class="feature-desc">Cada protocolo es un archivo editable. Cualquier TES puede proponer cambios con un Pull Request.</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="feature-card">
|
|
|
|
|
<span class="feature-icon">🆓</span>
|
|
|
|
|
<div class="feature-title">Siempre gratis</div>
|
|
|
|
|
<p class="feature-desc">Sin registro, sin freemium, sin anuncios, sin tracking. Construido por la comunidad TES, para la comunidad TES.</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="feature-card">
|
|
|
|
|
<span class="feature-icon">🔄</span>
|
|
|
|
|
<div class="feature-title">Auto-actualizable</div>
|
|
|
|
|
<p class="feature-desc">Sincroniza protocolos en segundo plano cuando hay red. Siempre tienes la versión más reciente.</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="feature-card">
|
|
|
|
|
<span class="feature-icon">🎨</span>
|
|
|
|
|
<div class="feature-title">Alta densidad, cero ruido</div>
|
|
|
|
|
<p class="feature-desc">Diseño brutalist: máximo contraste, información densa, sin decoración que distrae cuando más importa.</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<!-- PROTOCOLS + CODE PREVIEW -->
|
|
|
|
|
<section class="protocols-section" id="protocolos">
|
|
|
|
|
<div class="protocols-inner">
|
|
|
|
|
<div>
|
|
|
|
|
<div class="section-label">Protocolos</div>
|
|
|
|
|
<h2 class="section-title" style="font-size:36px;">Los que usas cada día</h2>
|
|
|
|
|
<ul class="protocol-list">
|
|
|
|
|
<li class="protocol-item">
|
|
|
|
|
<div>
|
|
|
|
|
<div class="protocol-name">SVB Adulto</div>
|
|
|
|
|
<div class="protocol-cat">Soporte Vital Básico</div>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="protocol-tag">ERC 2021</span>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="protocol-item">
|
|
|
|
|
<div>
|
|
|
|
|
<div class="protocol-name">SCACEST</div>
|
|
|
|
|
<div class="protocol-cat">Cardiología</div>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="protocol-tag">SAMU</span>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="protocol-item">
|
|
|
|
|
<div>
|
|
|
|
|
<div class="protocol-name">TCE Grave</div>
|
|
|
|
|
<div class="protocol-cat">Trauma</div>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="protocol-tag">PHTLS</span>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="protocol-item">
|
|
|
|
|
<div>
|
|
|
|
|
<div class="protocol-name">Shock Anafiláctico</div>
|
|
|
|
|
<div class="protocol-cat">Urgencias</div>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="protocol-tag">SAMU</span>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="protocol-item">
|
|
|
|
|
<div>
|
|
|
|
|
<div class="protocol-name">ACVA / Ictus</div>
|
|
|
|
|
<div class="protocol-cat">Neurología</div>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="protocol-tag">Código Ictus</span>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="protocol-item">
|
|
|
|
|
<div>
|
|
|
|
|
<div class="protocol-name">SVB Pediátrico</div>
|
|
|
|
|
<div class="protocol-cat">Pediatría</div>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="protocol-tag">ERC 2021</span>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="protocol-item">
|
|
|
|
|
<div>
|
|
|
|
|
<div class="protocol-name">Politraumatismo</div>
|
|
|
|
|
<div class="protocol-cat">Trauma</div>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="protocol-tag">PHTLS</span>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="protocol-item" style="padding:12px 16px;background:var(--surface);">
|
|
|
|
|
<div style="font-family:var(--mono);font-size:11px;color:var(--orange);">+ 33 protocolos más →</div>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<div class="section-label" style="margin-bottom:1rem;">Formato de protocolo</div>
|
|
|
|
|
<div class="code-preview">
|
|
|
|
|
<div class="code-header">
|
|
|
|
|
<div class="code-dots">
|
|
|
|
|
<div class="code-dot r"></div>
|
|
|
|
|
<div class="code-dot y"></div>
|
|
|
|
|
<div class="code-dot g"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="code-filename">svb-adulto.yaml</span>
|
|
|
|
|
<span></span>
|
2026-03-22 22:36:00 +00:00
|
|
|
</div>
|
2026-03-25 10:32:30 +00:00
|
|
|
<div class="code-body">
|
|
|
|
|
<span class="code-comment"># docs/protocolos/svb-adulto.yaml</span><br>
|
|
|
|
|
<span class="code-key">titulo</span>: <span class="code-str">SVB Adulto</span><br>
|
|
|
|
|
<span class="code-key">version</span>: <span class="code-str">"2.0"</span><br>
|
|
|
|
|
<span class="code-key">categoria</span>: <span class="code-str">soporte_vital</span><br>
|
|
|
|
|
<span class="code-key">referencia</span>: <span class="code-str">ERC 2021</span><br>
|
|
|
|
|
<br>
|
|
|
|
|
<span class="code-key">pasos</span>:<br>
|
|
|
|
|
- <span class="code-key">id</span>: <span class="code-num">1</span><br>
|
|
|
|
|
<span class="code-key">accion</span>: <span class="code-str">Seguridad del entorno</span><br>
|
|
|
|
|
<span class="code-key">duracion</span>: <span class="code-orange">null</span><br>
|
|
|
|
|
<br>
|
|
|
|
|
- <span class="code-key">id</span>: <span class="code-num">2</span><br>
|
|
|
|
|
<span class="code-key">accion</span>: <span class="code-str">Valorar consciencia</span><br>
|
|
|
|
|
<span class="code-key">duracion</span>: <span class="code-str">10s</span><br>
|
|
|
|
|
<br>
|
|
|
|
|
- <span class="code-key">id</span>: <span class="code-num">3</span><br>
|
|
|
|
|
<span class="code-key">accion</span>: <span class="code-str">Pedir ayuda — 112</span><br>
|
|
|
|
|
<span class="code-key">alerta</span>: <span class="code-orange">true</span><br>
|
|
|
|
|
<br>
|
|
|
|
|
- <span class="code-key">id</span>: <span class="code-num">4</span><br>
|
|
|
|
|
<span class="code-key">accion</span>: <span class="code-str">Apertura vía aérea</span><br>
|
|
|
|
|
<span class="code-key">tecnica</span>: <span class="code-str">frente-mentón</span><br>
|
|
|
|
|
<br>
|
|
|
|
|
<span class="code-comment"># ... 8 pasos más</span>
|
2026-03-22 22:36:00 +00:00
|
|
|
</div>
|
2026-03-25 10:32:30 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<!-- SLOGAN -->
|
|
|
|
|
<section class="slogan-section">
|
|
|
|
|
<p class="slogan">
|
|
|
|
|
Código libre.<br>
|
|
|
|
|
Protocolo <span class="accent">claro.</span><br>
|
|
|
|
|
Actúa ahora.<br>
|
|
|
|
|
<span class="accent">Salva vidas.</span>
|
|
|
|
|
</p>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<!-- FOOTER -->
|
|
|
|
|
<footer>
|
|
|
|
|
<div class="footer-logo">Código<span>0</span></div>
|
|
|
|
|
<ul class="footer-links">
|
|
|
|
|
<li><a href="https://codigo0.es">Web</a></li>
|
|
|
|
|
<li><a href="http://207.180.226.141:9112">App</a></li>
|
|
|
|
|
<li><a href="https://github.com/planetazuzu/codigo0">GitHub</a></li>
|
|
|
|
|
<li><a href="#">Docs</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
<div class="footer-credit">MIT · Hecho por <span>@planetazuzu</span></div>
|
|
|
|
|
</footer>
|
2026-03-22 22:36:00 +00:00
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|