Sample Page

This is an example page. It’s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:

Hi there! I’m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin’ caught in the rain.)

…or something like this:

The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.

As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!

<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <style>
        :root {
            --carmesi: #79253a;
            --azul: #405d9e;
            --blanco: #ffffff;
            --gris-claro: #f8f9fa;
            --texto: #333333;
        }

        .dilexit-body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--texto);
            line-height: 1.6;
            margin: 0;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1541976844346-f18aeac57b06?q=80&w=1200');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 20px;
            text-align: center;
        }

        .hero h1 { font-size: 3.5rem; margin-bottom: 10px; }
        .hero p { font-size: 1.5rem; font-style: italic; }

        /* Misión y Visión */
        .section-padding { padding: 80px 10%; text-align: center; }
        
        .vision-box {
            background: var(--gris-claro);
            border-top: 5px solid var(--carmesi);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        /* Pilares Estratégicos */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .card {
            padding: 30px;
            border-radius: 15px;
            transition: 0.3s;
            border: 1px solid #eee;
        }

        .card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
        .card i { font-size: 3rem; margin-bottom: 20px; }
        .card.family { color: var(--carmesi); }
        .card.work { color: var(--azul); }
        .card.culture { color: var(--carmesi); }

        /* Botón de Acción */
        .cta-btn {
            background: var(--carmesi);
            color: white;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            display: inline-block;
            margin-top: 30px;
        }

        .cta-btn:hover { background: var(--azul); }

        h2 { color: var(--carmesi); font-size: 2.5rem; }
    </style>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body class="dilexit-body">

    <section class="hero">
        <h1>Fundación Dilexit</h1>
        <p>"El amor es infinito"</p>
        <div style="font-size: 1.2rem; margin-top: 20px;">Éxito es la confianza.</div>
    </section>

    <section class="section-padding">
        <div class="vision-box">
            <h2>Visión 2026</h2>
            <p style="font-size: 1.3rem;">Lograr un impacto real en <strong>300 familias autosostenibles</strong> mediante alianzas estratégicas y patrocinios de CORE.</p>
        </div>

        <div class="grid-3">
            <div class="card family">
                <i class="fas fa-users"></i>
                <h3>Eje Familia</h3>
                <p>Salud integral y mental. Programas de formación en valores y acompañamiento psicológico para adultos mayores y jóvenes.</p>
            </div>
            <div class="card work">
                <i class="fas fa-tools"></i>
                <h3>Eje Trabajo</h3>
                <p>Capacitación en belleza, cocina, costura e inglés. Alianza para galpones de pollos con "Ciudad Campesino".</p>
            </div>
            <div class="card culture">
                <i class="fas fa-futbol"></i>
                <h3>Eje Cultura y Deporte</h3>
                <p>Escuela de fútbol para 90 niños y creación del Teatrino como oasis cultural para la comunidad.</p>
            </div>
        </div>

        <a href="#" class="cta-btn">¡Únete a nuestra Escuela de Solidaridad!</a>
    </section>

</body>
</html>