 
        /* Estilo base del hipervínculo beige */
        .beige-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 16px 40px;
            font-size: 18px;
            font-weight: 500;
            text-decoration: none;
            color: #f5f5f5;
            background: rgba(210, 180, 160, 0.2); /* Fondo beige transparente */
            border: 1px solid rgba(210, 180, 140, 0.4);
            border-radius: 10px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.4s ease;
            letter-spacing: 1.2px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            z-index: 1;
        }
        
        /* Efecto de borde sutil */
        .beige-link::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #d2b48c, #f5deb3, #d7ccc8, #e6d2b5);
            background-size: 300%;
            z-index: -1;
            border-radius: 12px;
            opacity: 0.6;
            animation: glowing 15s linear infinite;
        }
        
        /* Efecto al pasar el ratón */
        .beige-link:hover {
            background: rgba(210, 180, 160, 0.3);
            color: #fff;
            box-shadow: 0 0 25px rgba(210, 180, 140, 0.5);
            transform: translateY(-3px);
        }
        
        /* Efecto al hacer clic */
        .beige-link:active {
            transform: translateY(1px);
            box-shadow: 0 3px 15px rgba(210, 180, 140, 0.4);
        }
        
        /* Animación del borde */
        @keyframes glowing {
            0% { background-position: 0 0; }
            50% { background-position: 300% 0; }
            100% { background-position: 0 0; }
        }
        
        .icon {
            margin-right: 12px;
            font-size: 20px;
        }
        
        .divider {
            height: 1px;
            width: 80%;
            background: linear-gradient(to right, transparent, rgba(210, 180, 140, 0.5), transparent);
            margin: 40px auto;
        }
        
        .examples {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .variation {
            display: flex;
            align-items: center;
            padding: 12px 24px;
            font-size: 16px;
            background: rgba(210, 180, 160, 0.15);
            border: 1px solid rgba(210, 180, 140, 0.3);
            border-radius: 8px;
            color: #f5deb3;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .variation:hover {
            background: rgba(210, 180, 160, 0.25);
            box-shadow: 0 0 15px rgba(210, 180, 140, 0.3);
        }
        
        .variation i {
            margin-right: 8px;
        }
        
        .footer {
            margin-top: 50px;
            font-size: 14px;
            color: #b0b0b0;
            text-align: center;
            max-width: 600px;
        }
        
        .footer a {
            color: #d2b48c;
            text-decoration: none;
        }
        
        .footer a:hover {
            text-decoration: underline;
        }
        
        /* Efecto de partículas de fondo */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .particle {
            position: absolute;
            background-color: rgba(210, 180, 140, 0.3);
            border-radius: 50%;
            opacity: 0;
            animation: float 15s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }