 /* Variables con los colores exactos de tu interfaz */
        :root {
            --bg-gradient: linear-gradient(135deg, #df5b13 0%, #3e2017 50%, #151a24 100%);
            --text-light: #ffffff;
            --text-muted: #b3b9c1;
            --accent-color: #ff7a32;
            --card-bg: rgba(255, 255, 255, 0.03);
            --card-border: rgba(255, 255, 255, 0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background: var(--bg-gradient);
            background-attachment: fixed;
            color: var(--text-light);
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Barra de navegación consistente con tu Landing */
        nav {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-weight: 800;
            font-size: 1.4rem;
            letter-spacing: 2px;
            color: var(--text-light);
            text-decoration: none;
        }

        .logo span {
            color: var(--accent-color);
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--text-light);
        }

        /* Contenedor del Manifiesto */
        .manifesto-container {
            flex: 1;
            width: 90%;
            max-width: 800px;
            margin: 60px auto;
            padding: 20px;
        }

        header {
            text-align: center;
            margin-bottom: 60px;
        }

        header h1 {
            font-size: 3rem;
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: 15px;
            background: linear-gradient(to right, #ffffff, #ffb088);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        header p {
            font-size: 1.2rem;
            color: var(--text-muted);
            font-style: italic;
        }

        /* Bloques de contenido / Declaraciones */
        .statement-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 35px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .statement-card:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 122, 50, 0.3);
        }

        .statement-card p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 1);
            text-align: justify;
        }

        .highlight {
            color: var(--accent-color);
            font-weight: 700;
        }

        /* Mensaje de bienvenida destacado */
        .welcome-block {
            text-align: center;
            margin: 60px 0;
            padding: 40px 20px;
            border-top: 1px solid var(--card-border);
            border-bottom: 1px solid var(--card-border);
        }

        .welcome-block h2 {
            font-size: 2rem;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .welcome-block p {
            font-size: 1.2rem;
            color: var(--accent-color);
            font-weight: 600;
            letter-spacing: 1px;
        }

        /* Pie de página legal y corporativo */
        footer {
            background: rgba(0, 0, 0, 0.3);
            padding: 40px 20px;
            font-size: 0.85rem;
            color: #7d8590;
            border-top: 1px solid var(--card-border);
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .copyright {
            color: var(--text-muted);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .legal-text {
            line-height: 1.6;
            text-align: justify;
        }

        /* Responsividad para móviles */
        @media (max-width: 768px) {
            header h1 { font-size: 2.2rem; }
            .statement-card { padding: 25px; }
            .statement-card p { font-size: 1.05rem; }
            nav { padding: 20px; }
        }