codigo0/promo-site/index.html

213 lines
5.9 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="es">
<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>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f4f4f4;
}
container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
overflow: hidden;
}
header {
background: #0056b3;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #e8491d 3px solid;
}
header a {
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul {
padding: 0;
list-style: none;
}
header li {
display: inline;
padding: 0 20px 0 20px;
}
header #branding {
float: left;
}
header #branding h1 {
margin: 0;
}
header nav {
float: right;
margin-top: 10px;
}
header .highlight, header .current a {
color: #e8491d;
font-weight: bold;
}
header a:hover {
color: #ffffff;
font-weight: bold;
}
#showcase {
min-height: 400px;
background: url('../assets/showcase.jpg') no-repeat 0 -400px;
text-align: center;
color: #ffffff;
}
#showcase h1 {
margin-top: 100px;
font-size: 55px;
margin-bottom: 10px;
}
#showcase p {
font-size: 20px;
}
#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 {
display: block;
width: 100%;
}
#newsletter form {
float: none;
margin-top: 20px;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1><span class="highlight">Código</span> 0</h1>
</div>
<nav>
<ul>
<li class="current"><a href="index.html">Inicio</a></li>
<li><a href="https://github.com/planetazuzu/codigo0-nuevo">GitHub</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://localhost:5173" class="cta-button">Visitar la Aplicación</a>
</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>
</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>
</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>
<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>
</div>
</section>
<footer>
<p>Código 0 - Guía de Emergencias TES &copy; 2026</p>
</footer>
</body>
</html>