Files
wiki-data/home.html
2025-12-02 15:06:07 +00:00

122 lines
4.3 KiB
HTML

<!--
title: Home
description: Inicio
published: true
date: 2025-12-02T15:06:06.184Z
tags:
editor: code
dateCreated: 2025-12-01T16:00:56.996Z
-->
<div style="font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; color: #444; padding: 40px 20px;">
<!-- ENCABEZADO -->
<div style="text-align: center; margin-bottom: 60px;">
<!-- Título con gradiente -->
<h1 style="font-size: 3.5rem; font-weight: 800; margin: 0; letter-spacing: -1px; line-height: 1.2;">
<span style="background: -webkit-linear-gradient(45deg, #1976d2, #42a5f5); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">Hola.</span>
Te damos la bienvenida.
</h1>
<div style="width: 80px; height: 6px; background: #e3f2fd; margin: 20px auto; border-radius: 10px;"></div>
<p style="font-size: 1.3rem; color: #777; max-width: 600px; margin: 0 auto; font-weight: 300;">
Estás en el centro de conocimiento de <strong>El Día</strong>. <br>
Todo lo que necesitás saber, en un solo lugar.
</p>
</div>
<!-- CONTENEDOR DE TARJETAS -->
<div style="text-align: center; padding: 40px 20px; font-family: sans-serif;">
<h1 style="font-size: 2.8rem; color: #333; margin-bottom: 10px;">Hola, Te damos la bienvenida.</h1>
<p style="font-size: 1.2rem; color: #777; margin-bottom: 60px;">Estás en la Wiki interna de El Día.</p>
<!-- 3 COLUMNAS DE CARACTERÍSTICAS (SIN ENLACES) -->
<div style="display: flex; flex-wrap: wrap; justify-content: center; gap: 30px;">
<!-- COLUMNA 1 -->
<div style="flex: 1; min-width: 250px; max-width: 300px; padding: 20px;">
<div style="font-size: 50px; margin-bottom: 20px;">🔍</div>
<h3 style="color: #1976d2; margin-bottom: 10px;">Buscá</h3>
<p style="color: #666; line-height: 1.5;">
Encontrá rápidamente manuales, IPs, configuraciones y guías usando el buscador superior.
</p>
</div>
<!-- COLUMNA 2 -->
<div style="flex: 1; min-width: 250px; max-width: 300px; padding: 20px; border-left: 1px solid #eee; border-right: 1px solid #eee;">
<div style="font-size: 50px; margin-bottom: 20px;">📖</div>
<h3 style="color: #1976d2; margin-bottom: 10px;">Aprendé</h3>
<p style="color: #666; line-height: 1.5;">
Accedé a documentación detallada sobre Sistemas, Redacción y Técnica para resolver dudas.
</p>
</div>
<!-- COLUMNA 3 -->
<div style="flex: 1; min-width: 250px; max-width: 300px; padding: 20px;">
<div style="font-size: 50px; margin-bottom: 20px;">🚀</div>
<h3 style="color: #1976d2; margin-bottom: 10px;">Mejorá</h3>
<p style="color: #666; line-height: 1.5;">
Optimizamos nuestros flujos de trabajo manteniendo la información accesible y estandarizada.
</p>
</div>
</div>
</div>
<!-- Ajuste para móviles (quita los bordes en pantallas chicas) -->
<style>
@media (max-width: 800px) {
div[style*="border-left"] { border: none !important; }
}
</style>
</div>
</div>
<!-- ESTILOS CSS AVANZADOS -->
<style>
/* Diseño de las tarjetas */
.info-card {
flex: 1;
min-width: 280px;
max-width: 320px;
background: white;
padding: 40px 30px;
border-radius: 20px;
text-align: center;
/* Sombra suave y elegante */
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
border: 1px solid rgba(0,0,0,0.02);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Efecto al pasar el mouse */
.info-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(25, 118, 210, 0.15);
}
/* Círculo detrás de los iconos */
.icon-circle {
font-size: 40px;
width: 80px;
height: 80px;
line-height: 80px;
background: #e3f2fd; /* Azul muy clarito */
border-radius: 50%;
margin: 0 auto 20px auto;
display: flex;
align-items: center;
justify-content: center;
user-select: none;
}
/* Ajuste para móviles */
@media (max-width: 600px) {
.info-card { margin-bottom: 20px; max-width: 100%; }
}
</style>