feat: new brutalist clinical landing page design
Some checks are pending
Deploy Código 0 / deploy (push) Waiting to run
Some checks are pending
Deploy Código 0 / deploy (push) Waiting to run
This commit is contained in:
parent
c96b695c3d
commit
0ab9d17284
|
|
@ -3,211 +3,823 @@
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Código 0 - Guía de Emergencias TES</title>
|
||||
<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>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
*, *::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 {
|
||||
font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
|
||||
background: var(--black);
|
||||
color: var(--text);
|
||||
font-family: var(--mono);
|
||||
font-size: 14px;
|
||||
line-height: 1.6;
|
||||
color: #333;
|
||||
background-color: #f4f4f4;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
container {
|
||||
width: 90%;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
overflow: 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;
|
||||
}
|
||||
header {
|
||||
background: #0056b3;
|
||||
color: #fff;
|
||||
padding-top: 30px;
|
||||
min-height: 70px;
|
||||
border-bottom: #e8491d 3px solid;
|
||||
|
||||
/* 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);
|
||||
}
|
||||
header a {
|
||||
color: #fff;
|
||||
|
||||
.nav-logo {
|
||||
font-family: var(--display);
|
||||
font-weight: 900;
|
||||
font-size: 22px;
|
||||
letter-spacing: -0.5px;
|
||||
color: var(--text);
|
||||
text-decoration: none;
|
||||
text-transform: uppercase;
|
||||
font-size: 16px;
|
||||
}
|
||||
header ul {
|
||||
padding: 0;
|
||||
.nav-logo span { color: var(--orange); }
|
||||
|
||||
.nav-links {
|
||||
display: flex;
|
||||
gap: 2rem;
|
||||
list-style: none;
|
||||
}
|
||||
header li {
|
||||
display: inline;
|
||||
padding: 0 20px 0 20px;
|
||||
.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;
|
||||
}
|
||||
header #branding {
|
||||
float: left;
|
||||
.nav-links a:hover { color: var(--orange); }
|
||||
|
||||
.nav-cta {
|
||||
background: var(--orange);
|
||||
color: var(--black) !important;
|
||||
padding: 6px 16px;
|
||||
font-weight: 700 !important;
|
||||
}
|
||||
header #branding h1 {
|
||||
.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;
|
||||
}
|
||||
header nav {
|
||||
float: right;
|
||||
margin-top: 10px;
|
||||
.ticker {
|
||||
display: flex;
|
||||
gap: 0;
|
||||
animation: ticker 30s linear infinite;
|
||||
width: max-content;
|
||||
}
|
||||
header .highlight, header .current a {
|
||||
color: #e8491d;
|
||||
font-weight: bold;
|
||||
.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;
|
||||
}
|
||||
header a:hover {
|
||||
color: #ffffff;
|
||||
font-weight: bold;
|
||||
.ticker-item::after {
|
||||
content: '//';
|
||||
margin-left: 3rem;
|
||||
opacity: 0.4;
|
||||
}
|
||||
#showcase {
|
||||
min-height: 400px;
|
||||
background: #0056b3;
|
||||
text-align: center;
|
||||
color: #ffffff;
|
||||
@keyframes ticker {
|
||||
from { transform: translateX(0); }
|
||||
to { transform: translateX(-50%); }
|
||||
}
|
||||
#showcase h1 {
|
||||
margin-top: 100px;
|
||||
font-size: 55px;
|
||||
margin-bottom: 10px;
|
||||
|
||||
/* FEATURES */
|
||||
.section {
|
||||
max-width: 1100px;
|
||||
margin: 0 auto;
|
||||
padding: 6rem 2rem;
|
||||
}
|
||||
#showcase p {
|
||||
font-size: 20px;
|
||||
|
||||
.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;
|
||||
}
|
||||
#newsletter {
|
||||
padding: 15px;
|
||||
background: #35424a;
|
||||
color: #ffffff;
|
||||
}
|
||||
#newsletter h1 {
|
||||
float: left;
|
||||
}
|
||||
#newsletter form {
|
||||
float: right;
|
||||
margin-top: 15px;
|
||||
}
|
||||
#newsletter input[type="email"] {
|
||||
padding: 4px;
|
||||
height: 25px;
|
||||
width: 250px;
|
||||
}
|
||||
#boxes {
|
||||
margin-top: 20px;
|
||||
}
|
||||
#boxes .box {
|
||||
float: left;
|
||||
text-align: center;
|
||||
width: 30%;
|
||||
padding: 10px;
|
||||
}
|
||||
#boxes .box img {
|
||||
width: 90px;
|
||||
}
|
||||
footer {
|
||||
padding: 20px;
|
||||
margin-top: 20px;
|
||||
color: #ffffff;
|
||||
background-color: #e8491d;
|
||||
text-align: center;
|
||||
}
|
||||
.cta-button {
|
||||
display: inline-block;
|
||||
background: #e8491d;
|
||||
color: #ffffff;
|
||||
padding: 15px 30px;
|
||||
margin-top: 20px;
|
||||
text-decoration: none;
|
||||
border-radius: 5px;
|
||||
font-weight: bold;
|
||||
transition: background 0.3s ease;
|
||||
}
|
||||
.cta-button:hover {
|
||||
background: #d4421a;
|
||||
}
|
||||
@media(max-width: 768px) {
|
||||
header #branding,
|
||||
header nav,
|
||||
header nav li,
|
||||
#newsletter h1,
|
||||
#newsletter form,
|
||||
#boxes .box {
|
||||
float: none;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
header {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
#showcase h1 {
|
||||
margin-top: 40px;
|
||||
}
|
||||
#newsletter button, .cta-button {
|
||||
.section-label::before {
|
||||
content: '';
|
||||
display: block;
|
||||
width: 100%;
|
||||
width: 24px;
|
||||
height: 1px;
|
||||
background: var(--orange);
|
||||
}
|
||||
#newsletter form {
|
||||
float: none;
|
||||
margin-top: 20px;
|
||||
|
||||
.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>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="container">
|
||||
<div id="branding">
|
||||
<h1><span class="highlight">Código</span> 0</h1>
|
||||
</div>
|
||||
|
||||
<!-- NAV -->
|
||||
<nav>
|
||||
<ul>
|
||||
<li class="current"><a href="index.html">Inicio</a></li>
|
||||
<li><a href="https://github.com/planetazuzu/codigo0-nuevo">GitHub</a></li>
|
||||
<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>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section id="showcase">
|
||||
<div class="container">
|
||||
<h1>Guía de Protocolos de Emergencia para TES</h1>
|
||||
<p>Acceso rápido a protocolos críticos, guías de refuerzo y herramientas clínicas para Técnicos de Emergencias Sanitarias</p>
|
||||
<a href="http://207.180.226.141:9112" class="cta-button">Visitar la Aplicación</a>
|
||||
<!-- 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>
|
||||
|
||||
<section id="newsletter">
|
||||
<div class="container">
|
||||
<h1>Suscríbete para recibir actualizaciones</h1>
|
||||
<form>
|
||||
<input type="email" placeholder="Ingresa tu email...">
|
||||
<button type="submit" class="cta-button">Suscribirse</button>
|
||||
</form>
|
||||
<!-- 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>
|
||||
</section>
|
||||
|
||||
<section id="boxes">
|
||||
<div class="container">
|
||||
<div class="box">
|
||||
<img src="https://via.placeholder.com/90" alt="">
|
||||
<h3>Protocolos de Emergencia</h3>
|
||||
<p>Acceso inmediato a RCP, Ictus, Shock, Vía Aérea y más.</p>
|
||||
<!-- 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="box">
|
||||
<img src="https://via.placeholder.com/90" alt="">
|
||||
<h3>Guías de Refuerzo</h3>
|
||||
<p>Contenido formativo para comprensión profunda de protocolos.</p>
|
||||
<div class="stat-item">
|
||||
<div class="stat-number">0€</div>
|
||||
<div class="stat-label">Coste para el TES</div>
|
||||
</div>
|
||||
<div class="box">
|
||||
<img src="https://via.placeholder.com/90" alt="">
|
||||
<h3>Herramientas Clínicas</h3>
|
||||
<p>Checklists, calculadoras y pathways para soporte en tiempo real.</p>
|
||||
<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>
|
||||
</div>
|
||||
<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>
|
||||
</div>
|
||||
</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>
|
||||
<p>Código 0 - Guía de Emergencias TES © 2026</p>
|
||||
<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>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in a new issue