/* ─── PAGE HERO ──────────────────────────────── */
        .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;
        }

        /* ─── LAYOUT ──────────────────────────────── */
        .page-layout {
            display: grid;
            grid-template-columns: 220px 1fr;
            max-width: 1000px;
            margin: 0 auto;
            padding: 4rem 2rem 6rem;
            gap: 3rem;
            align-items: start;
        }

        /* ─── ÍNDICE LATERAL ──────────────────────── */
        .politicas-index {
            position: sticky;
            top: 100px;
        }

        .politicas-index p {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #9a8c7e;
            margin: 0 0 1rem;
        }

        .politicas-index a {
            display: block;
            font-size: 0.85rem;
            color: #666;
            text-decoration: none;
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0f0f0;
            transition: color 0.2s, padding-left 0.2s;
        }

        .politicas-index a:hover {
            color: #121212;
            padding-left: 6px;
        }

        /* ─── SECCIONES DE POLÍTICA ───────────────── */
        .politicas-contenido { min-width: 0; }

        .politica-seccion {
            margin-bottom: 3rem;
            scroll-margin-top: 100px;
        }

        .politica-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #121212;
        }

        .politica-header-icon {
            width: 40px;
            height: 40px;
            background: #121212;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .politica-header-icon svg {
            width: 20px;
            height: 20px;
            stroke: white;
            fill: none;
            stroke-width: 1.5;
        }

        .politica-header h2 {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin: 0;
            text-transform: uppercase;
        }

        .politica-body p {
            font-size: 0.92rem;
            color: #444;
            line-height: 1.8;
            margin: 0 0 1rem;
        }

        .politica-body ul {
            list-style: none;
            padding: 0;
            margin: 0 0 1rem;
        }

        .politica-body ul li {
            font-size: 0.92rem;
            color: #444;
            line-height: 1.7;
            padding: 0.5rem 0 0.5rem 1.2rem;
            border-bottom: 1px solid #f5f5f5;
            position: relative;
        }

        .politica-body ul li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: #9a8c7e;
            font-weight: 700;
        }

        /* Bloque de alerta/nota */
        .nota-importante {
            background: #fafafa;
            border-left: 4px solid #121212;
            padding: 1rem 1.2rem;
            margin: 1rem 0;
            font-size: 0.88rem;
            color: #555;
            line-height: 1.7;
        }

        .nota-importante strong {
            color: #121212;
            display: block;
            margin-bottom: 0.3rem;
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* ─── ÚLTIMA ACTUALIZACIÓN ────────────────── */
        .actualizacion-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #f5f5f5;
            padding: 0.5rem 1rem;
            font-size: 0.78rem;
            color: #666;
            margin-bottom: 3rem;
            letter-spacing: 0.05em;
        }

        .actualizacion-badge span {
            font-weight: 700;
            color: #121212;
        }

        /* ─── RESPONSIVE ──────────────────────────── */
        @media (max-width: 768px) {
            .page-hero { padding: 3.5rem 1.5rem 3rem; }

            .page-layout {
                grid-template-columns: 1fr;
                padding: 2rem 1.2rem 4rem;
                gap: 0;
            }

            .politicas-index {
                position: static;
                display: flex;
                flex-wrap: wrap;
                gap: 0.5rem;
                margin-bottom: 2rem;
            }

            .politicas-index p { width: 100%; margin-bottom: 0.5rem; }

            .politicas-index a {
                padding: 0.4rem 0.8rem;
                border: 1px solid #e8e8e8;
                border-bottom: 1px solid #e8e8e8;
                font-size: 0.78rem;
                background: #fafafa;
            }

            .politicas-index a:hover { padding-left: 0.8rem; }
        }

        @media (max-width: 480px) {
            .politica-header h2 { font-size: 0.95rem; }
            .politica-body p,
            .politica-body ul li { font-size: 0.88rem; }
        }