 /* ─── PAGE CONTENT ───────────────────────────── */
        .page-hero {
            background: #121212;
            color: white;
            text-align: center;
            padding: 5rem 2rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 40px,
                rgba(255,255,255,0.02) 40px,
                rgba(255,255,255,0.02) 41px
            );
        }

        .page-hero-label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: #9a8c7e;
            margin-bottom: 1rem;
        }

        .page-hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            margin: 0 0 1rem;
            line-height: 1.1;
        }

        .page-hero p {
            font-size: 1rem;
            color: #aaa;
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ─── CONTENIDO PRINCIPAL ─────────────────── */
        .page-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 4rem 2rem 6rem;
        }

        /* ─── CARDS MISION / VISION ──────────────── */
        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .mv-card {
            border: 1px solid #e8e8e8;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
        }

        .mv-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 4px;
            height: 100%;
            background: #121212;
        }

        .mv-card-icon {
            width: 48px;
            height: 48px;
            background: #121212;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .mv-card-icon svg {
            width: 24px;
            height: 24px;
            stroke: white;
            fill: none;
            stroke-width: 1.5;
        }

        .mv-card h2 {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: #9a8c7e;
            margin: 0 0 0.8rem;
        }

        .mv-card p {
            font-size: 0.95rem;
            line-height: 1.8;
            color: #444;
            margin: 0;
        }

        /* ─── VALORES ────────────────────────────── */
        .seccion-titulo {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: #9a8c7e;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .seccion-titulo::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e8e8e8;
        }

        .valores-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 4rem;
        }

        .valor-item {
            padding: 2rem 1.5rem;
            background: #fafafa;
            border-bottom: 3px solid #121212;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .valor-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }

        .valor-numero {
            font-size: 2.5rem;
            font-weight: 700;
            color: #e8e8e8;
            line-height: 1;
            margin-bottom: 0.8rem;
            letter-spacing: -0.04em;
        }

        .valor-item h3 {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin: 0 0 0.6rem;
            color: #121212;
        }

        .valor-item p {
            font-size: 0.88rem;
            color: #666;
            line-height: 1.7;
            margin: 0;
        }

        /* ─── BLOQUE DESTACADO ───────────────────── */
        .bloque-destacado {
            background: #121212;
            color: white;
            padding: 3.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .bloque-destacado::before {
            content: '"';
            position: absolute;
            top: -1rem;
            left: 2rem;
            font-size: 12rem;
            color: rgba(255,255,255,0.04);
            font-family: Georgia, serif;
            line-height: 1;
            pointer-events: none;
        }

        .bloque-destacado p {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            line-height: 1.7;
            color: #ddd;
            max-width: 640px;
            margin: 0 auto 1.5rem;
            font-style: italic;
        }

        .bloque-destacado span {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #9a8c7e;
        }

        /* ─── RESPONSIVE ──────────────────────────── */
        @media (max-width: 768px) {
            .page-hero { padding: 3.5rem 1.5rem 3rem; }
            .page-content { padding: 2.5rem 1.2rem 4rem; }
            .mv-grid { grid-template-columns: 1fr; gap: 1.2rem; }
            .valores-grid { grid-template-columns: 1fr 1fr; }
            .bloque-destacado { padding: 2.5rem 1.5rem; }
        }

        @media (max-width: 480px) {
            .valores-grid { grid-template-columns: 1fr; }
            .mv-card { padding: 1.8rem; }
            .bloque-destacado { padding: 2rem 1.2rem; }
        }