 fichero {
            display: block;
            max-width: 900px;
            margin: 0 auto;
            padding: 40px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 25px;
            box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 182, 193, 0.3);
        }

        fichero::before {
            content: "PRUEBA DE ESTILO ROSA";
            display: block;
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(45deg, #ff69b4, #ff1493, #da70d6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 3px solid #ffb6c1;
            position: relative;
        }

        fichero::after {
            content: "✨🌸✨🌸✨";
            display: block;
            text-align: center;
            margin-top: -15px;
            margin-bottom: 20px;
            font-size: 16px;
        }

        ficha {
            display: block;
            background: linear-gradient(135deg, #fff0f5 0%, #ffe4e6 100%);
            border: 2px solid #ffb6c1;
            border-radius: 20px;
            margin: 25px 0;
            padding: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        ficha::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(180deg); }
        }

        ficha:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
            border-color: #ff69b4;
            background: linear-gradient(135deg, #fff5f8 0%, #ffe8eb 100%);
        }

        ficha:nth-child(2) { border-color: #dda0dd; }
        ficha:nth-child(3) { border-color: #f0a0f0; }
        ficha:nth-child(4) { border-color: #ffb347; }

        .ficha-header {
            background: linear-gradient(90deg, #ff69b4, #ff1493);
            color: white;
            padding: 12px 20px;
            border-radius: 15px;
            margin: -25px -25px 20px -25px;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }

        ficha[id="1"] .ficha-header { background: linear-gradient(90deg, #ff69b4, #ff1493); }
        ficha[id="2"] .ficha-header { background: linear-gradient(90deg, #dda0dd, #da70d6); }
        ficha[id="3"] .ficha-header { background: linear-gradient(90deg, #ff69b4, #ffa07a); }

        nombre {
            display: inline-block;
            font-size: 24px;
            font-weight: 700;
            color: #d63384;
            margin-right: 10px;
            text-shadow: 1px 1px 2px rgba(214, 51, 132, 0.1);
        }

        nombre::before {
            content: "👑 ";
            font-size: 20px;
        }

        apellido {
            display: inline-block;
            font-size: 24px;
            font-weight: 700;
            color: #d63384;
            text-shadow: 1px 1px 2px rgba(214, 51, 132, 0.1);
        }

        direccion {
            display: block;
            margin-top: 15px;
            padding: 15px 20px;
            background: linear-gradient(135deg, #fff, #fef7f7);
            border-left: 5px solid #ff69b4;
            color: #8b5a6b;
            font-size: 16px;
            border-radius: 10px;
            font-weight: 500;
            box-shadow: 0 2px 8px rgba(255, 105, 180, 0.1);
        }

        direccion::before {
            content: "🏠 ";
            margin-right: 8px;
            font-size: 18px;
        }

        /* Información adicional para la tercera ficha */
        ficha[dui]::after {
            content: "💳 DUI: " attr(dui) " | 🏢 ISSS: " attr(isss) " | 💼 AFP: " attr(afp);
            display: block;
            margin-top: 15px;
            padding: 12px 18px;
            background: linear-gradient(135deg, #f8f0ff, #fff0f8);
            border-radius: 12px;
            font-size: 12px;
            color: #8b5a6b;
            font-weight: 500;
            border: 1px dashed #dda0dd;
            line-height: 1.4;
        }

        /* Decoraciones cute */
        ficha:nth-child(2)::before { content: "🌸"; }
        ficha:nth-child(3)::before { content: "🦄"; }
        ficha:nth-child(4)::before { content: "✨"; }

        /* Responsive */
        @media (max-width: 600px) {
            fichero {
                margin: 10px;
                padding: 25px;
            }
            
            fichero::before {
                font-size: 22px;
            }
            
            nombre, apellido {
                font-size: 20px;
            }
            
            direccion {
                font-size: 14px;
            }
            
            .ficha-header {
                font-size: 12px;
            }
        }

        /* Animación sutil para las fichas */
        ficha {
            animation: slideIn 0.6s ease-out forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        ficha:nth-child(2) { animation-delay: 0.2s; }
        ficha:nth-child(3) { animation-delay: 0.4s; }
        ficha:nth-child(4) { animation-delay: 0.6s; }

        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }