Files
wiki-data/home.html

120 lines
3.8 KiB
HTML
Raw Permalink Normal View History

2025-12-02 14:50:57 +00:00
<!--
title: Home
description: Inicio
published: true
2025-12-02 15:09:12 +00:00
date: 2025-12-02T15:09:11.430Z
2025-12-02 14:50:57 +00:00
tags:
editor: code
dateCreated: 2025-12-01T16:00:56.996Z
-->
2025-12-02 15:09:12 +00:00
<div style="font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; color: #444; padding: 20px; max-width: 1100px; margin: 0 auto;">
2025-12-02 14:52:11 +00:00
2025-12-02 15:09:12 +00:00
<!-- ENCABEZADO COMPACTO -->
<div style="text-align: center; margin-bottom: 35px;">
2025-12-02 15:04:32 +00:00
<!-- Título con gradiente -->
2025-12-02 15:09:12 +00:00
<h1 style="font-size: 3rem; font-weight: 800; margin: 0; letter-spacing: -1px; line-height: 1.1;">
2025-12-02 15:06:07 +00:00
<span style="background: -webkit-linear-gradient(45deg, #1976d2, #42a5f5); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">Hola.</span>
2025-12-02 15:04:32 +00:00
Te damos la bienvenida.
</h1>
2025-12-02 15:09:12 +00:00
<!-- Línea decorativa más fina y pegada -->
<div style="width: 60px; height: 5px; background: #e3f2fd; margin: 15px auto; border-radius: 10px;"></div>
2025-12-02 15:04:32 +00:00
2025-12-02 15:09:12 +00:00
<p style="font-size: 1.15rem; color: #777; max-width: 600px; margin: 0 auto; font-weight: 300; line-height: 1.4;">
Estás en el centro de conocimiento de <strong>El Día</strong>.
2025-12-02 15:04:32 +00:00
Todo lo que necesitás saber, en un solo lugar.
</p>
</div>
2025-12-02 14:56:27 +00:00
2025-12-02 15:04:32 +00:00
<!-- CONTENEDOR DE TARJETAS -->
2025-12-02 15:09:12 +00:00
<div style="display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;">
2025-12-02 14:51:01 +00:00
2025-12-02 15:09:12 +00:00
<!-- TARJETA 1 -->
<div class="info-card">
<div class="icon-circle">🔍</div>
<h3 class="card-title">Buscá</h3>
<p class="card-text">
2025-12-02 15:06:07 +00:00
Encontrá rápidamente manuales, IPs, configuraciones y guías usando el buscador superior.
2025-12-02 14:56:27 +00:00
</p>
2025-12-02 14:56:02 +00:00
</div>
2025-12-02 14:56:27 +00:00
2025-12-02 15:09:12 +00:00
<!-- TARJETA 2 -->
<div class="info-card">
<div class="icon-circle">📖</div>
<h3 class="card-title">Aprendé</h3>
<p class="card-text">
2025-12-02 15:06:07 +00:00
Accedé a documentación detallada sobre Sistemas, Redacción y Técnica para resolver dudas.
2025-12-02 14:56:27 +00:00
</p>
2025-12-02 14:56:02 +00:00
</div>
2025-12-02 14:56:27 +00:00
2025-12-02 15:09:12 +00:00
<!-- TARJETA 3 -->
<div class="info-card">
<div class="icon-circle">🚀</div>
<h3 class="card-title">Mejorá</h3>
<p class="card-text">
2025-12-02 15:06:07 +00:00
Optimizamos nuestros flujos de trabajo manteniendo la información accesible y estandarizada.
2025-12-02 14:56:27 +00:00
</p>
2025-12-02 14:52:11 +00:00
</div>
2025-12-02 14:56:27 +00:00
2025-12-02 14:51:01 +00:00
</div>
2025-12-02 14:50:57 +00:00
2025-12-02 14:56:27 +00:00
</div>
2025-12-02 15:09:12 +00:00
<!-- ESTILOS CSS (Optimizados para menos espacio) -->
2025-12-02 14:56:27 +00:00
<style>
2025-12-02 15:04:32 +00:00
/* Diseño de las tarjetas */
.info-card {
flex: 1;
2025-12-02 15:09:12 +00:00
min-width: 260px;
2025-12-02 15:04:32 +00:00
max-width: 320px;
background: white;
2025-12-02 15:09:12 +00:00
padding: 25px 20px; /* Padding reducido para compactar */
border-radius: 16px;
2025-12-02 15:04:32 +00:00
text-align: center;
2025-12-02 15:09:12 +00:00
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
border: 1px solid rgba(0,0,0,0.03);
transition: transform 0.2s ease, box-shadow 0.2s ease;
2025-12-02 15:04:32 +00:00
}
/* Efecto al pasar el mouse */
.info-card:hover {
2025-12-02 15:09:12 +00:00
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(25, 118, 210, 0.12);
2025-12-02 15:04:32 +00:00
}
/* Círculo detrás de los iconos */
.icon-circle {
2025-12-02 15:09:12 +00:00
font-size: 32px; /* Icono ajustado */
width: 60px; /* Círculo más chico */
height: 60px;
line-height: 60px;
background: #e3f2fd;
2025-12-02 15:04:32 +00:00
border-radius: 50%;
2025-12-02 15:09:12 +00:00
margin: 0 auto 15px auto; /* Menos margen abajo */
2025-12-02 15:04:32 +00:00
display: flex;
align-items: center;
justify-content: center;
user-select: none;
}
2025-12-02 15:09:12 +00:00
.card-title {
color: #222;
font-size: 1.25rem;
margin: 0 0 10px 0;
font-weight: 700;
}
.card-text {
color: #666;
line-height: 1.5;
margin: 0;
font-size: 0.95rem;
}
2025-12-02 15:04:32 +00:00
/* Ajuste para móviles */
@media (max-width: 600px) {
2025-12-02 15:09:12 +00:00
.info-card { margin-bottom: 15px; max-width: 100%; }
h1 { font-size: 2.5rem !important; }
2025-12-02 14:56:27 +00:00
}
</style>